代码搜索:ReadFile
找到约 1,285 项符合「ReadFile」的源代码
代码结果 1,285
www.eeworm.com/read/411228/2190934
py pmw_buttonbox.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('ButtonBox')
Pmw.initialise()
def buttonPress(btn):
print 'The "%s" button was pressed' % btn
d
www.eeworm.com/read/411228/2190939
py pmw_scrolledcanvas.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('ScrolledCanvas')
Pmw.initialise()
sc = Pmw.ScrolledCanvas(root, borderframe=1, labelpos=N,
www.eeworm.com/read/411228/2190942
py pmw_scrolledfield.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('ScrolledField')
Pmw.initialise()
lines = (
"Mount Everest. Forbidding, aloof, terrifying. This ye
www.eeworm.com/read/411228/2190943
py pmw_selectiondialog.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('SelectionDialog')
Pmw.initialise()
dialog = None
def execute(result):
sels = dialog.getcursele
www.eeworm.com/read/411228/2190953
py pmw_messagebar.py
from Tkinter import *
import Pmw
root = Tk()
root.option_readfile('optionDB')
root.title('MessageBar')
Pmw.initialise()
messagebar = box = None
def selectionCommand():
sels = box.getcu
www.eeworm.com/read/383153/2622057
cpp geometrytechnique.cpp
#include
#include
#include
#include
#include
#include
#include
#include
#in
www.eeworm.com/read/359563/2975081
c file.c
#include
int ReadFile(int nFile, void * pData, int * pSize)
{
int nLeft, nRead;
char *pcData = pData;
ASSERT(pData != NULL && pSize != NULL);
nLeft = *pSize;
while (nLeft > 0)
{
if
www.eeworm.com/read/294561/8218420
cpp commport.cpp
int ReadFile(CHAR *filename)
{
int ret=1;
CString msg;
char temps[0x10];
FILE *FileIn=fopen(filename,"rb");
if (FileIn==NULL) {
msg.Format("Can not open file
www.eeworm.com/read/289895/8519289
java keycipher.java
package src;
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class KeyCipher {
private static byte[] key;
public static byte[] readFile(String filename) throws
www.eeworm.com/read/384016/8905627
bas ioapi.bas
Attribute VB_Name = "Module1"
Declare Function ReadFile Lib "kernel32" _
(ByVal Handle&, _
BufferPtr As Integer, _
ByVal ByteCount&, _
BytesReturnedPtr&, _
ByVal OverlappedPtr& _
) As Long
D