107 Posted Topics
Re: This may not be what you are looking for but this should point you in the right direction: [code] Dim Connect As String = "Provider=SQLOLEDB.1;Password=xxxx;Persist Security Info=True;User ID=xxx;Initial Catalog=Your database name;Data Source=Your server Name" Dim SQLCMD As String = "Your SQL Command" Dim myConnection As New OleDbConnection(Connect) Dim myCommand As … | |
Re: Are you getting an errors at all? If you have an error it will not update the forms code until the error is fixed so that may be the issue. If not, then I am not sure what the issue may be. | |
Re: You may want to check this website out. It gives you great explanation and multiple ways to do things in VB.NET with Access. [url]http://support.microsoft.com/kb/317113[/url] | |
Re: First, may I ask why you would want to do this? Wouldn't it just be easier to put the button on the form you were using? Anyways, I will try to help. You could try something like this. On Form2 add the Following Sub: [code] Public Sub Command2_Click() 'Your Code … | |
Re: Are you just trying to open the saved file or are you trying to open it and be able to edit the file? | |
Re: Can you please be more clear? I am not sure what you are asking. Also, are you storing this info in an SQL Query? | |
Re: What do you mean by hide? Are you trying to hide the first window on the application when the second window appears without closing the application fully? |
The End.