<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1012910" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1012910</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1075286</link>
    <description> &lt;p&gt;hmm... I overlooked that, sorry.&lt;/p&gt;
&lt;p&gt;All I can find in these books (2 VB books) is this:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;Private Sub cmdShowOpen_Click()&lt;br /&gt;&lt;br /&gt;&amp;#039;&amp;nbsp; Show the open dialog bos&lt;br /&gt;CommonDialog1.ShowOpen&lt;br /&gt;&lt;br /&gt;&amp;#039;&amp;nbsp; Show the filename selected&lt;br /&gt;txtReturn.Text = &amp;quot;FileName = &amp;quot; &amp;amp; CommonDialog1.FileName&lt;br /&gt;&lt;br /&gt;End Sub&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;You said your doing something with Access, are you using VBA then?  I&#039;m not to sure if there is a difference.  I&#039;ve never written anything for Access.  So I&#039;m just speaking from the standpoint of a Visual Basic 6 programmer.&lt;/p&gt;
&lt;p&gt;Here is some more stuff...&lt;br /&gt;
I took this from &lt;a href=&quot;http://msdn.microsoft.com/library/wcedoc/vbce/usectrls_12.htm&quot; class=&quot;bb-url&quot;&gt;this page&lt;/a&gt;, which I found from these &lt;a href=&quot;http://search.microsoft.com/us/dev/default.asp?qu=common+dialog+box&amp;amp;so=RECCNT&amp;amp;qu=common+dialog+box+open&amp;amp;boolean=ALL&amp;amp;chkM=on&amp;amp;chkM_0=on&amp;amp;chkM_1=on&amp;amp;chkM_2=on&amp;amp;chkM_3=on&amp;amp;chkM_4=on&amp;amp;chkM_5=on&amp;amp;chkM_6=on&amp;amp;chkM_7=on&amp;amp;chkM_8=on&amp;amp;chkM_9=on&amp;amp;chkM_10=on&amp;amp;chkM_11=on&amp;amp;chkM_12=on&amp;amp;chkM_13=on&amp;amp;chkM_14=on&amp;amp;chkM_15=on&amp;amp;chkM_16=on&amp;amp;chkM_17=on&amp;amp;chkM_18=on&amp;amp;chkM_19=on&amp;amp;chkS=on&amp;amp;chkS_0=on&amp;amp;chkS_1=on&amp;amp;chkS_2=on&amp;amp;chkS_3=on&amp;amp;chkS_4=on&amp;amp;chkS_5=on&amp;amp;chkS_6=on&amp;amp;chkS_7=on&amp;amp;chkS_8=on&amp;amp;chkS_9=on&amp;amp;chkS_10=on&amp;amp;chkS_11=on&amp;amp;chkS_12=on&amp;amp;chkS_13=on&amp;amp;chkS_14=on&amp;amp;chkS_15=on&amp;amp;chkA=on&amp;amp;chkA_0=on&amp;amp;chkA_1=on&amp;amp;chkA_2=on&amp;amp;chkA_3=on&amp;amp;chkA_4=on&amp;amp;chkA_5=on&amp;amp;chkA_6=on&amp;amp;chkP=on&amp;amp;chkP_0=on&amp;amp;chkP_1=on&amp;amp;chkP_2=on&amp;amp;chkP_3=on&amp;amp;chkP_4=on&amp;amp;chkP_5=on&amp;amp;chkP_6=on&amp;amp;chkP_7=on&amp;amp;chkP_8=on&amp;amp;chkP_9=on&amp;amp;chkP_10=on&amp;amp;chkP_11=on&amp;amp;chkP_12=on&amp;amp;chkP_13=on&amp;amp;chkP_14=on&amp;amp;chkP_15=on&amp;amp;chkP_16=on&amp;amp;chkK=on&amp;amp;p=1&amp;amp;nq=NEW&quot; class=&quot;bb-url&quot;&gt;search results&lt;/a&gt; for &quot;common dialog box open&quot; at &lt;a href=&quot;http://msdn.microsoft.com&quot; class=&quot;bb-url&quot;&gt;msdn.microsoft.com&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;Public Function GetFileToOpen()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim fileflags As FileOpenConstants&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim filefilter As String&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Set the text in the dialog title bar&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.DialogTitle = &amp;quot;Open&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Set the default file name and filter&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.InitDir = &amp;quot;\&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.FileName = &amp;quot;&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; filefilter = &amp;quot;Visual Basic Files (*.vb)|*.vb|All Files (*.*)|*.*&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.Filter = filefilter&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.FilterIndex = 0&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Verify that the file exists&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileflags = cdlOFNFileMustExist&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.Flags = fileflags&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Show the Open common dialog box&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CommonDialog1.ShowOpen&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Return the path and file name selected or&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;Return an empty string if the user cancels the dialog&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GetFileToOpen = CommonDialog1.FileName&lt;br /&gt;End Function&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;more helpfull links from MSDN:&lt;br /&gt;
&lt;a href=&quot;http://msdn.microsoft.com/library/devprods/vs6/vbasic/cmdlg98/vbctlcommondialogcontrolopensaveasdialog.htm&quot; class=&quot;bb-url&quot;&gt;CommonDialog Control (Open, Save As Dialogs)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;that&#039;s all I can find now... need to get some sleep &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
Good Luuck,&lt;/p&gt;
 </description>
     <pubDate>Thu, 07 Dec 2000 07:54:17 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1075286 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1075232</link>
    <description> &lt;p&gt;as i mentioned, the dialog box worked. but now: how do i get the path of the selected file?&lt;br /&gt;
the file name i get:&lt;br /&gt;
object.filetitle&lt;br /&gt;
but how can i get that path? ???&lt;br /&gt;
in the docs there is nothing mentioned, but i&#039;m sure it&#039;s somehow possible... thank you!&lt;/p&gt;
 </description>
     <pubDate>Wed, 06 Dec 2000 10:35:25 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1075232 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>thank you!</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1075075</link>
    <description> &lt;p&gt;yes, that worked!&lt;br /&gt;
well, to be honest, it was quite a lot of work too: i had to install ms access 2000, developer version, and then it worked... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
thank you max!&lt;/p&gt;
&lt;p&gt;ali&lt;/p&gt;
 </description>
     <pubDate>Mon, 04 Dec 2000 16:44:24 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1075075 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1074914</link>
    <description> &lt;p&gt;well, it says in this here book (some VB book off my bedroom floor &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;)...&lt;/p&gt;
&lt;p&gt;[I&#039;m assuming your using Microsoft Visual Basic 6 (the program) to write this.]&lt;/p&gt;
&lt;p&gt;On the left, in your &#039;toolbox&#039; you&#039;ll need to find the &#039;Common Dialog Box&#039; control.  If it&#039;s not there, just right click the &#039;toolbox&#039; and select &#039;components...&#039;.  Scroll down in the textbox untill you find &#039;Microsoft Common Dialog Control 6.0&#039;.  Check the box to the left and click &#039;OK&#039;.  Now the control should be in your &#039;toolbox&#039;.&lt;/p&gt;
&lt;p&gt;Moving on... Place the Common Dialog Box control anywhere on your form.  Now name your control (let&#039;s say cdbDialog). Now wherever you need to use that &#039;give me a file&#039; thingy, simply use:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;#039;the following code is right out of the book&lt;br /&gt;cdbDialog.DialogTitle = &amp;quot;File Open&amp;quot;&lt;br /&gt;cdbDialog.Filter = &amp;quot;*.txt&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;show only text files&lt;br /&gt;cdbDialog.FileName = &amp;quot;*.txt&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;default filename&lt;br /&gt;cdbDialog.ShowOpen&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#039;trigger the dialog box&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Need more help, feel free to ask.  Also you might want to check out these &lt;a href=&quot;http://search.microsoft.com/us/dev/default.asp?qu=common+dialog+box&amp;amp;boolean=ALL&amp;amp;nq=NEW&amp;amp;so=RECCNT&amp;amp;p=1&amp;amp;chkM=on&amp;amp;radM=2&amp;amp;chkS=on&amp;amp;radS=2&amp;amp;chkA=on&amp;amp;radA=2&amp;amp;chkP=on&amp;amp;radP=2&amp;amp;chkK=on&quot; class=&quot;bb-url&quot;&gt;search results&lt;/a&gt; (for &#039;common dialog box&#039;) at &lt;a href=&quot;msdn.microsoft.com&quot; class=&quot;bb-url&quot;&gt;MSDN&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Good Luck,&lt;/p&gt;
 </description>
     <pubDate>Sat, 02 Dec 2000 03:26:29 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1074914 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1074865</link>
    <description> &lt;p&gt;yes, in visual basic. we have some really great cracks in vb in here, but well, they knew it can be done but didn&#039;t know how... &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;br /&gt;
thank you for your help, i really appreciate that! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 01 Dec 2000 07:14:24 +0000</pubDate>
 <dc:creator>merlin</dc:creator>
 <guid isPermaLink="false">comment 1074865 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/browse#comment-1074854</link>
    <description> &lt;p&gt;you mean like in visual basic?&lt;br /&gt;
I don&#039;t know that off the top of my head, but I think I can get it for you pretty easy...&lt;/p&gt;
&lt;p&gt;or in html?&lt;/p&gt;
&lt;p&gt;other language?&lt;/p&gt;
 </description>
     <pubDate>Fri, 01 Dec 2000 04:55:33 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1074854 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
