' 功能:为VB程序创建一个consolewindow。Private Declare Function AllocConsole Lib "kernel32" () As Long'功能:销毁为VB程序创建的consolewindow。Private Declare Function FreeCo...
分类:
其他好文 时间:
2015-09-06 12:31:21
阅读次数:
158
publicDeclareSubSleepLib"kernel32"(ByValdwMillisecondsAsLong)私有API函数作用是延时,当程序某段代码循环运行的时候,为了更好的看到程序运行的效果使用该函数语法:Sleep长整型数值实现一个窗口左右抖动的效果PrivateSubCmdWindwos2_Click()DimiAsIntegerDoWhilei<=6Me..
微软图表控件MsChart使用方法及各种插件下载地址 (2012-08-10 17:32:33)转载▼标签:图表控件下载地址kernel32微软it分类: C# 昨天在网上看到了微软发布了.NET 3.5框架下的图表控件,第一时间抓下来看了一下,发觉功能很强劲,基本上能想到的图表都可以使用它绘制.....
分类:
其他好文 时间:
2015-08-28 19:07:54
阅读次数:
186
private static string sPath = @Directory.GetCurrentDirectory() + "\\config.ini"; [DllImport("kernel32")] private static extern long Wri...
分类:
其他好文 时间:
2015-08-25 18:21:33
阅读次数:
132
kernel32!UnhandledExceptionFilter通过判断当前进程是否附加了调试器,如果附加,就把异常交给调试器,如果没有,就把异常交给进程的UnhandledExceptionFilter处理。kernel32!UnhandledExceptionFilte在vista之后的操作系...
分类:
其他好文 时间:
2015-08-17 11:49:24
阅读次数:
165
在测试 jni时, 使用 cl命令, 如cl -I xx\jdk1.7.0_17\include -I xx\jdk1.7.0_17\include\win32 -LD HelloNative.c -FeHelloNative.dll会报如题错误.暂时的解决方案是, 使用vs自带的命令(不用wind...
分类:
其他好文 时间:
2015-07-27 01:44:54
阅读次数:
144
服务器环境信息【C#代码获取】public class ServicesMessage
{ [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)]
internal static extern void GetSystemDirectory(StringBuilder SysDir...
一 调用格式C#在调用windowsAPI函数接口的时候有一套专门的调用流程首先我们在调用API函数的时候必须引用命名空间InteropServicesusing System.Runtime.InteropServices;例如我们想调用windows的kernel32.dll动态库中的接口函数中...
用会变写个冒泡,做个记录,主要是学习循环的使用
.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user32.lib
include kernel32.inc
includelib kernel32.lib
.data
bytes db 'hello,...
分类:
编程语言 时间:
2015-06-22 16:22:46
阅读次数:
145