首页 软件开发 代码片段 ( Page 642 )

代码片段 8064

#APS/Basic
VBA粘贴Excel Chart图表到当前PowerPoint幻灯片中(早期绑定)

Sub ChartToPresentation() ' Uses Early Binding to the PowerPoint Object Model ' Set a VBE …

2014-12-07 922

#Objective-C
实用方法-Debug和Release执行不同代码

typedef void (^SwitchingEnvirBlock)(); void switchingEnvir(SwitchingEnvirBlock useDevice,S…

2014-12-07 984

#Shell
编译lua5.1工程的批处理程序

@rem Script to build Lua with MSVC. @rem Copyright (C) 2010-2011 <chaishushan{AT}gmail.…

2014-12-07 814

#HTML
用DIV轻松实现自适应Table

<html> <body> <div style="display:table;border:1px red solid;width:100%;"&g…

2014-12-07 349

#HTML
TABLE 的css的样式表

<head> <title></title> <link rel="stylesheet" href="table.css" type="…

2014-12-07 137

#Ruby
Windows-1251 转换成 UTF8

function win_to_utf8 ($string) { $in_arr = array ( chr(208), chr(192), chr(193), chr(194),…

2014-12-06 875

#HTML
CSS实现的多种边界效果

#borders { position:relative; z-index:1; padding:30px; border:5px solid #f00; background:#…

2014-12-06 280

#Python
TOMCAT意外停止后自启动服务器监测

#-*-coding:utf-8-*- #python3.3.5 import urllib.request,os,time,configparser #=============…

2014-12-06 635

#Python
Python 操作 Excel

import sys import xlsxwriter import prep import os import leave import log reload(sys) sys…

2014-12-06 1,001

#Python
选择打开选择文件 神龙 QQ29295842

#!/usr/local/bin/python #-*- coding: UTF-8 -*- #选择打开选择文件 神龙 QQ29295842 import tkMessageBox…

2014-12-06 113

#Python
获取代理ip

#coding:utf-8 from bs4 import BeautifulSoup import requests import random def getproxyip()…

2014-12-06 594