|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Supporting Save in my Form...
Peace all...
Anyone can help me in how can I support "saving" in my form ? For example... Lets say my form has a textbox named "text1" I want to write some text in "text1" and then press a button or a drop down menu element called "save as..." to save my form so that when I reopen it I'll find the text which I wrote last time saved in "text1.text" I tried CommonDialog1.ShowSave , but when I press save nothing happens... Any Ideas experts ...?! Peace ! |
|
#2
|
|||
|
|||
|
CommonDialog1.ShowSave YOU HAVE
TRY THIS CommonDialog1.saveAs.ShowSave |
|
#3
|
|||
|
|||
Private Sub cmdSave_Click()Dim ff As Integer ff = FreeFile CommonDialog1.ShowSave savefile="hai" Open CommonDialog1.FileName For Output As ff put #ff, 1,savefile Close ff End Sub ![]() |
|
#4
|
|||
|
|||
|
do we have any of these facilities in ASP also? please comment how to call a save as option for a web file
|
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Supporting Save in my Form... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|