代码搜索:Invoke
找到约 4,823 项符合「Invoke」的源代码
代码结果 4,823
www.eeworm.com/read/183081/9179444
txt readme.txt
Fast Fourier Transform (FFT) - ASM 3dNow! Code
---------------------------------------------
by Pradeepan (arulpragasam@yahoo.com)
-------------------------------------
This code is a transla
www.eeworm.com/read/175308/9552516
ex-22-07
// Example 22-07: Late binding of COM objects
private void btnAdd_Click(
object sender, System.EventArgs e)
{
Invoke("Add");
}
private void btnSubtract_Click(
object sender, System
www.eeworm.com/read/175170/9556823
asm mrufiles.asm
title MRUFiles
.586
.model flat, STDCALL
option casemap: none ; Case sensitive
include L:\AsmEdit\include\Windows.inc
i
www.eeworm.com/read/371106/9567735
cpp dclient.cpp
//
// DClient.cpp - Dispatch client implementation
//
// This client connects to the IX dual interface
// through the dispinterface.
//
#include
#include "Util.h"
static inli
www.eeworm.com/read/371106/9567903
cpp dclient.cpp
//
// DClient.cpp - Dispatch client implementation
//
// This client connects to the IX dual interface
// through the dispinterface.
//
#include
#include "Util.h"
static inli
www.eeworm.com/read/174595/9580830
cpp automationpermissions.cpp
#include
//////////////////////////////////////////////////////////////
// Class Declaraction for Automation.
// This class is entirely defined inline.
// This class is used to call
www.eeworm.com/read/168841/9896523
asm gui.asm
RGB macro red,green,blue
xor eax,eax
mov ah,blue
shl eax,8
mov ah,green
mov al,red
endm
.const
WM_FINISH equ WM_USER+100h
WM_SHELLNOTIFY equ
www.eeworm.com/read/358784/10179570
asm scroll.asm
TITLE Scrolling the Console Window (Scroll.asm)
; This program writes 50 lines of text to the console buffer,
; resizes, and scrolls the console window back to line 0.
; Demonstrat
www.eeworm.com/read/358784/10179583
asm winapp.asm
TITLE Windows Application (WinApp.asm)
; This program displays a resizable application window and
; several popup message boxes.
; Thanks to Tom Joyce for creating a prototype
www.eeworm.com/read/358784/10179626
asm params.asm
TITLE Procedure Parameter Examples (Params.asm)
; Demonstration of the PROC, PROTO, and INVOKE directives.
; Last update: 07/21/01
INCLUDE Irvine32.inc
Sub1 PROTO someData:WORD
Sub