1樓:匿名使用者
resdatafile "ms1", "custom", "ms1set.txt"
private sub resdatafile(id, restype, filename as string)
dim resfile() as byte, filenum as integer
on error goto err2
resfile = loadresdata(id, restype)
filenum = freefile
open filename for binary access write as #filenum
put #filenum, , resfile
close #filenum
exit sub
err2: msgbox err.description & ":" & err.number, vbinformation, "錯誤"
end sub
2樓:匿名使用者
30+30-30*30#30=30
vb:怎樣生成檔案到指定位置
3樓:
private sub command1_click()open "c:\test.txt" for output as #1
print #1, "你想要儲存的文字" '當然了,此處也可以是一個字串變數,則將此字串的內容寫入文字test.txt 中
close
end sub
vb中怎麼將一個檔案複製到指定資料夾
4樓:
用vb自帶的最好
filecopy "c:\a.txt","c:\b.txt"
將c:\a.txt拷貝到c:\b.txt
如何將j**a中生成的檔案放到指定資料夾
vb中怎麼把自己選定目錄下的檔案儲存到指定目錄
5樓:網海1書生
private sub command1_click()dim sf as string, df as stringcommondialog1.showopensf = commondialog1.filenameif sf <> "" then
df = "e:\tmp\" & commondialog1.filetitle '儲存到e:\tmp資料夾,自己改
if dir(df) <> "" thenif msgbox("目標檔案已存在,是否覆蓋?", vbyesno) <> vbyes then exit sub
end if
filecopy sf, df
msgbox sf & vbcrlf & "已儲存為" & vbcrlf & df
end if
end sub
vb中如何生成不同的隨機數,VB如何生成隨機數
為了生成某個範圍內的隨機整數,可使用以下公式 int upperbound lowerbound 1 rnd lowerbound 這裡,upperbound 是隨機數範圍的上限,而 lowerbound 則是隨機數範圍的下限。注意若想得到重複的隨機數序列,在使用具有數值引數的randomize 之...
如何把PDF檔案中的其中頁面更換,或者插入新的頁面
1 首先將pdf檔案開啟後,首先刪除pdf檔案中的其中頁,點選介面上方的文件按鈕,然後再選擇其中的刪除頁面,最後點選刪除頁面中的刪除頁面。2 點選了刪除頁面按鈕之後,會彈出刪除頁面設定選單,在刪除頁面設定選單中,可以通過勾選頁面,然後在輸入框中輸入頁碼來選擇頁面進行刪除。3 知道了如何刪除pdf文件...
怎樣把u盤裡的檔案拷貝到電腦上,如何把u盤裡的東西拷到電腦桌面
你好,1,開啟計算機,找到要拷到電腦上的檔案,右鍵,複製。2,開啟計算機,找到要存放檔案的u盤,如d盤,雙擊d盤開啟,空白處右鍵,貼上。樓主還是找本微機基礎好好看看吧。插上u盤,雙擊我的電腦,雙擊u盤,找到檔案滑鼠左鍵單擊 多個檔案可按著ctrl用滑鼠點 然後按右鍵 滑鼠和停在一個選中的圖示上 點複...