1樓:南半芹
你問的是怎麼呼叫dll的窗體吧。
2樓:網友
varsfilename: string;
vfini: tinifile;
begin/ 寫配置檔案。
if <>then
begin 取程式的目錄}
sfilename :=extractfiledir(;
if copy(sfilename, length(sfilename) -1, 1) =then
sfilename :=sfilename + '
elsesfilename :=sfilename + ';
vfini :=;
標識頭', 指定變數名字', ;保持 到 config 文字}finally
end;end;
end;隨便找個按鈕新增下事件,自己測試下。
delphi 按鈕 儲存檔案
3樓:網友
沒有反應那是因為你沒有讓它有反應,但其實它已經在當前目錄儲存了乙個的檔案。
你可以加個儲存檔案的對話方塊。
procedure : tobject);
beginif not then exit;
end;
4樓:網友
'' 不是完整的檔案路徑。
你改成 'c:\'試試,肯定可以。
請問如何將delphi介面中的資料儲存到文字檔案中
5樓:來自靜思園有志氣的海象
你可以用實現,當然,如果想更簡單一點,那可以直接用sql語句實現:'
select * into [text;fmt=delimited;hdr=yes;database=c:\]from [' + tablename + ']
;我前一家公司做過類似的東西,如果你還沒解決,我可以找以前同事把**找出來。
delphi 單個按鈕如何實現修改與儲存的功能,就是按一下按鈕修改資料,再按一下為儲存資料
6樓:網友
在form裡建乙個counter,使用者每按一次按鈕就加1 (counter :=counter+1;),在按鍵的事件裡,每當counter=1時執行修改,counter =2時執行儲存。比如:
procedure : object);
begincounter :=counter+1;
if counter = 1 then begin/ 修改資料。
end else begin
儲存資料。end;end;
7樓:網友
通過button的caption屬性變換來實現。
procedure : object);
beginif('儲存')
修改';做儲存的工作。
endelse if('修改')
儲存';做修改的工作。
beginend;
end;
8樓:網友
二樓的思路很不錯。
在delphi中怎樣儲存當前的活動文件
9樓:網友
你activemdichild是窗體,窗體怎麼能儲存?你要儲存洞褲絕的是窗體裡的richedit,listbox或者memo等納姿裡面的內容吧?
在窗體關閉事件中純肢新增如下**:
action :=cafree;
DELPHI簡單問題,delphi的一個簡單問題
你是想改name還是caption?tabsheet1.name aaaa tabsheet1.caption tab a 直接切換到該頁,比如tabsheet2,左邊不是有caption標題和name名字嗎?不主張用 改名字,如一樓說的 tabsheet1.name aaaa 一樓的賦值寫少了個符...
請問在Delphi中如何將extended型強制轉換為i
如 不做舍入,用trunc procedure tform1.button1click sender tobject var a extended b integer begin a strtofloat edit1.text end b trunc a edit2.text inttostr b ...
急!delphi中,如何把中的精確匯入到access的
仔細檢查一下你的sql語句和access資料庫,這種情況很可能是沒對應上而已。也許就是多了個或者少了個逗號。不行就不要這樣插入,先讀入txt檔案,再使用update 語句 那試試讀一行,然後分割字串,再逐個插入資料庫吧!如何將這樣的txt檔案內容匯入到access資料庫中?你可以嘗試先用excel開...