代码搜索:MsgBox
找到约 3,543 项符合「MsgBox」的源代码
代码结果 3,543
www.eeworm.com/read/121574/14750706
bas fileiovb.bas
Attribute VB_Name = "fileiovb"
'
' Project: fileio
'
' Description:
' This is another simple app that uses the Win32 APIs CreateFile and
' WriteFile to create a file on a remote computer.
www.eeworm.com/read/121258/14763382
htm renumber_resources.shtml.htm
DevStudio Macros - Sequentially Renumber Resourc
www.eeworm.com/read/121235/14765641
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public db As New ADODB.Connection
Public Cmd As New ADODB.Command
Public myName As String
Public sid As Integer
'Public myKeys As String
Public myG
www.eeworm.com/read/119177/14837717
frm frmuser.frm
VERSION 5.00
Begin VB.Form frmUser
BorderStyle = 1 'Fixed Single
Caption = "用户维护"
ClientHeight = 5565
ClientLeft = 45
ClientTop = 330
Cli
www.eeworm.com/read/119169/14837935
cpp dinput.cpp
#include "gl.h"
#include "gengine.h"
#include "..\common.h"
#define KEYBUFFER_TAIL 0xffffffff
extern LPDIRECTDRAW lpDD;
LPDIRECTINPUT lpDI = NULL;
LPDIRECTINPUTDEVICE lpDI
www.eeworm.com/read/119169/14837943
cpp gengine.cpp
#include "..\common.h"
#include "gl.h"
#include "gengine.h"
//#define _OFFDDRAW //关闭DirectDraw
Hero *warrior;
int InitGraphicEngine( DWORD w, DWORD h, DWORD colordepth )
{
CheckCPU();
#if
www.eeworm.com/read/117057/14941743
frm 最小二乘法多次曲线拟合_d.frm
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "打开"
ClientHeight = 3540
ClientLeft = 2760
ClientTop = 3750
Cli
www.eeworm.com/read/216160/15025139
ats function_out.ats
Section Main
var @a as AtsString
@a = "Atsript"
aa(@a, "abc" )
msgbox @a
End Section
function aa( out @x as AtsString , @y as AtsString )
@x = @x +@y
end function
www.eeworm.com/read/216160/15025143
ats function.ats
Section Main
msgbox xx( 1 ,3)
End Section
function xx(@a as AtsInt ,@b as AtsInt )
return @a + @b
end function