Results 1 to 4 of 4

Thread: Saving

  1. #1

    Thread Starter
    Lively Member imperial07's Avatar
    Join Date
    Mar 2001
    Location
    Illinois
    Posts
    75
    Ok, I know how to do a Save As, but is there a way just to do a regular save, without the dialog box coming up? Even if I have to do a Save As the first time that is OK.

  2. #2
    Frenzied Member JasonLpz's Avatar
    Join Date
    Mar 2001
    Location
    Brooklyn, NY
    Posts
    1,335
    just use the save code not the commondialog code

    ex:


    Code:
    If CommonDialog1.FileName = "" Then
    Else
    FileName = CommonDialog1.FileName
    	 F = FreeFile
    	 Open FileName For Output As  _
    	#F
    	 
    	 'Strings to Save. Aka Text
    	 
    	 Print #F, Text1.Text
    	 
    	 Close #F
    End If
    
    'Code improved by vBulletin Tool (Save as...)
    - JayWare
    Live to love. Not to Hate

    Im to busy to have a site. But I got one and still working on it.

    http://dre3k.net/

  3. #3
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390
    what are you trying to Save?


    is this just Text? a Webpage? etc?
    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

  4. #4

    Thread Starter
    Lively Member imperial07's Avatar
    Join Date
    Mar 2001
    Location
    Illinois
    Posts
    75
    an access database

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width