码迷,mamicode.com
首页 > Windows程序 > 周排行
使用eBay API基本步骤介绍
Posted on 2010-12-14 23:36 moss_tan_jun 阅读(6218) 评论(0) 编辑 收藏 使用eBay API基本步骤介绍要开始使用eBay API,需要如下基本步骤: 1. 注册开发帐号: https://developer.ebay.com/join/Defaul ...
分类:Windows程序   时间:2016-03-29 10:00:40    阅读次数:307
windows中:git 使用RBTools工具 review
适用于windows: 1.下载安装RBTools,自带python2.7: 下载地址:https://downloads.reviewboard.org/releases/RBTools/0.7 选择exe文件 安装完以后路径:C:\Program Files (x86)\RBTools 2.配置 ...
分类:Windows程序   时间:2016-03-29 12:26:41    阅读次数:1063
c# BindingSource 类
1.引言 BindingSource组件是数据源和控件间的一座桥,同时提供了大量的API和Event供我们使用。使用这些API我们可以将Code与各种具体类型数据源进行解耦;使用这些Event我们可以洞察数据的变化。 2.简单绑定 DataTable myTable = myTableAdapter... ...
分类:Windows程序   时间:2016-03-29 19:21:57    阅读次数:1204
C#3.0扩展方法学习篇
什么是类的扩展方法 扩展方法使您能够向现有类型“添加”方法,而无需创建新的派生类型、重新编译或以其他方式修改原始类型。 MSDN Extension methods enable you to "add" methods to existing types without creating a ne ...
分类:Windows程序   时间:2016-03-30 06:53:42    阅读次数:370
c# dotfuscator 混淆后无法使用
在实体类中忘记给字段加上 get ;set ;导致编译后程序无法使用。 下面这个(A代码)是可以正常混淆的。 public class PhoneUsedStatus { public int code { get; set; } public bool takeExist { get; set;  ...
分类:Windows程序   时间:2016-03-30 09:45:35    阅读次数:323
Html5之应用-1 Geolocation(Geolocation、百度地图API)
一、GeolocationGeolocationAPI介绍-GeolocationAPI用于将用户当前地理位置信息共享给信任的站点-GeolocationAPI位于navigator对象中,只有3个方法-getCurrentPosition()-watchPosition()-clearWatch()getCurrentPosition-navigator.geolocation.getCurrentPosition(success_ca..
分类:Windows程序   时间:2016-03-30 18:05:31    阅读次数:341
Html5之高级-13 Web存储API (两个存储系统、sessionStorage、localStorage)
一、两个存储系统两个存储系统-万维网最初的设想,是作为展示信息的一种方式。信息处理是后来才出现的,但是Web的实质并没有变---信息在服务器上处理,然后显示给用户。因为系统没有利用计算机资源,所以复杂操作都是在服务器上完成的-对于任何程序来说,能够实现数据存储是必..
分类:Windows程序   时间:2016-03-31 00:28:22    阅读次数:235
Web API:将FlexChart导出为图片
Web API帮助你将FlexChart导出成任何你需要的图片格式。 ...
分类:Windows程序   时间:2016-03-31 12:34:00    阅读次数:333
EasyDarwin不能保存HLS列表的解决方案
官网: easydarwin.org 问题: Hls不能保存列表,解决方案已给出: http://www.pfeng.org/archives/857 但是不太好用。作者给出了原理。自己写了一个 解决方案: 核心代码: 调用: bin\debug\ExecApp -HlsSave -Host "ht ...
分类:Windows程序   时间:2016-03-31 12:42:58    阅读次数:779
window上vagrant打造虚拟化平台
1.1准备工作:下载安装VirtualBox:https://www.virtualbox.org/ 下载安装Vagrant:http://www.vagrantup.com/ 下载安装gitbash:https://git-scm.com/download/ 下载需要使用的box: 官方提供的范例:http://files.vagrantup.com/precise32.box 还可以在http://www.vagrantbox...
分类:Windows程序   时间:2016-03-31 17:05:14    阅读次数:548
Mac系统下使用VirtualBox虚拟机安装win7--第一步 安装vbox虚拟机
Mac系统下使用VirtualBox虚拟机安装win7操作步骤: 第一步 安装vbox虚拟机 1.先下载vbox,下载地址:: https://www.virtualbox.org/wiki/Downloads ,在页面中点击“VirtualBox 5.0.16 for OS X hosts amd ...
分类:Windows程序   时间:2016-04-01 00:46:21    阅读次数:310
增加VirtualBox虚拟机的磁盘空间大小(Host:Win7 VirtualBox5.0.16 VM:Win10)
1 前言 网上关于增加VirtualBox虚拟机的磁盘空间大小的文章非常非常多,这里我之所以再写一篇,是因为在参照这些文章做的时候,由于VirtualBox的版本更新以及其他一些环境问题,碰到到一些问题。 在花了一些时间解决这些问题之后,写出来供大家参考。 2 参照以前的文章可能会碰到的问题 使用的 ...
分类:Windows程序   时间:2016-04-01 12:58:56    阅读次数:208
webpack window 处理图片和其他静态文件
安装url-loadernpm install url-loader --save-dev配置config文件 { test: /\.(png|jpg)$/, loader: 'url?limit=40000' }注意后面那个limit的参数,当你图片大小小于这个限制的时候,会自动启用base64编 ...
分类:Windows程序   时间:2016-04-01 14:33:12    阅读次数:322
C# 匿名函数
...
分类:Windows程序   时间:2016-04-02 12:01:58    阅读次数:473
C# 打开以对话框,获取文件夹路径 、文件的路径、文件名
// 获取文件夹绝对路径 显示在 txtbox 控件里 System.Windows.Forms.FolderBrowserDialog folder = new System.Windows.Forms.FolderBrowserDialog(); if (folder.ShowDialog() ...
分类:Windows程序   时间:2016-04-02 13:36:38    阅读次数:271
C# 窗体
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 ...
分类:Windows程序   时间:2016-04-02 22:53:21    阅读次数:272
Windows下Vundle安装
鼠标手老是发作,没办法。想学习vim尽量减少编码时使用鼠标的频率。安装好gVim开始安装Vundle插件,总结下安装过程和各种遇到的坑: github上VundleVim倒是有说明 Windows Setup 的步骤,但可能太久没有更新了遇到好几个坑: 1. msysgit 这个项目的github上 ...
分类:Windows程序   时间:2016-04-03 13:13:04    阅读次数:223
各种颜色RGB值【附c#中获取颜色的argb值】
各种颜色RGB值■RGB(255,192,203)■★●◆pink(粉红)■RGB(220,20,60)■★●◆crimson(腥红)■RGB(255,240,245)■★●◆lavenderblush(苍白的紫罗兰红)■RGB(219,112,147)■★●◆palevioletred(脸红的淡紫红)■RGB(255,105,180)■★●◆hotpink(热情的粉红)■RGB(19..
分类:Windows程序   时间:2016-04-03 20:29:23    阅读次数:1419
windows API 实现截图
參考:http://bbs.csdn.net/topics/330154355 #include "stdio.h" #include "windows.h" /********************************************************************* ...
分类:Windows程序   时间:2016-04-04 19:32:57    阅读次数:167
WebAPI前置知识:HTTP与RestfulAPI
对HTTP协议的基本了解是能理解并使用RestFul风格API的基础,在了解了这些基础之后,使用各种RestFul的开发框架才能得心应手。我一开始使用WebApi的时候就因为对这些知识缺乏了解,觉得用起来各种不顺手,直到熟悉了这些HTTP的知识后,使用WebApi开发起来才觉得得心应手,我的理解里, ...
分类:Windows程序   时间:2016-04-05 00:15:05    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!