Answer Questions
armo2006 Update SQLdataBase w/ VB 2005 Beta2
When using VB.Net 2003 updating a database is fairly straightforward. You drag the table onto the form, a sqlConnection & sqlDataAdaptor are automatically generated. You then configure these objects and then generate and configure a data set. All that's left is to write the code for the update. In VB 2005 it doesn't like it if you try to drag a table. I have tried using the Add Data Source ,configuring, and coding an update statement. I can ...Show All
vgjorgov Graphics Manipulations
I am a vb.net 2003 user. I just checked out http://maps.google.com and am very interested in implementing similar graphic manipulation capabilities. They have a map that I can scroll a window into the larger image with the mouse. Precently, I use horizontal and vertical scroll bars and would be interested in knowing how to scroll a large image within a picturebox more efficiently. thanks, This is what I am doing now and I use ...Show All
Spooner error message when installing VB 6.0
I get the following error after closing out the install screen (because it just freezes and never moves forward): The Visual Basic 6.0 Model failed to set up. Try re=running the Installation Wizard. For more info, blah blah blah, ww.miscrsoft.com/msdn/ Suggestions I am using XP Pro. This is the OS we use both in school and at my office where VB 6.0 is up and running. Sounds to me like your trying to ...Show All
MotoMan How to Regex quoted expression
Hi I'm trying to get the attribute value from HTLM Tags. i've retived all metatags on a arraylist and now i'm trying to separate the attribute value from the string, can some one help this is the current code: Dim MetaCol As New ArrayList Dim RX As New Regex("<meta.[^<]+>", RegexOptions.IgnoreCase) Dim MC As MatchCollection = RX.Matches(Me.HTML) For Each M As Match In M ...Show All
>rik< Accessing Windows Registry in Visual Basic 2005
'=================================================================== '=================================================================== Private Sub RegCreateSubKey( ByVal SubKey As String, ByVal KeyName As String) '------------------------------------------------ ...Show All
Kunal priyadarshi Most elegant way to check if a network connection is available
Hi, I'm looking for the most elegant way to check if a connection is available to an ftp site. For example, I would lie to check the status of the connection before running a routine. Regards HerbiNZ If you asking to check that the you have a network connection prior to trying to do a file upload to an FTP Using VB.Net 2005 you can use the My Classes. The general construct would b ...Show All
gavinm Updating a Access Database from Visual Basic
Hi. I'm havng trouble with updating my Access database from Visual Basic. There are no problems when populating datasets from the database, but as I try to update it after some changes, nothing happens.. Anyone got an idea Hege Have already tried that too, but it doesen't help. Now I've got the following code (The OleDbConnection3 is already defined.. ) Ol ...Show All
Darkbob Having trouble getting a correct value of textbox3
Hi Im using VIsualbasic2005 Express (its .net of course ) Dim intText1 As Double Dim intText2 As Integer Dim intText3 As Double intText1 = Val(Frm3.TextBox1. Text) 'Here is says Conversion from string "" to type 'Long' is not valid. intText2 = Val(Frm3.TextBox2. Text) intText3 = CDbl(Val(Frm3.TextBox2. Text) * Val(Frm3.TextBox1. Text)) Frm3.TextBox3.Text = intText3 Textbox3 is still 0 When textbox ...Show All
Marcin Hoppe VB 2005, calling a query?
I just started using VB 2005, i want to execute a query i have created when a command button is pressed, any ideas anyone I'm trying to modify an access table using a query, and i've figured all that out only to be left in a dead end with the queries . i can execute the query from the main form (anyform.vb) right someone help please !! Thanks everyone, any help you can provide is greatly appreciated Go through ...Show All
JIpock Where to find BASIC help after downloading and installing Express with small option
I thought I remembered being asked if I wanted to download a monster help file and since I wasn't sure about Express, I said no. Now I have used it for a while and want to avoid the online help - where do I find it Other learning resources can be found here: http://msdn.microsoft.com/vstudio/express/vb/learning/default.aspx The only place I saw to download the express MSDN library was with the express pr ...Show All
Espen Eriksmoen L&#216;ke Getting Data out of a DataSet
I am new to Programing with VB.Net and I am working on an application that contains a DataSet but does not contain a Database. I am having trouble getting the data out of the DataSet. I can get it to go in but I can't get it out Does anyone having any ideas Ben Great. I think I am begining to understand this. Thanks for all your help That worked! does the 0 in ds.Projects(0).ProjectName represent the index of the project ...Show All
Aaron Hallberg - MSFT Form refresh
Hi, I have made a program in Visual Studio 2005 to show data from my database. I show this data in a datagridview and on labels. I use a data-adapter and I fill this with a datatable. I have made a loop to show the selected data row after row on the labels. But if I add some data to the database while the program is running, this have to be showed also on the form. So I need to do a refresh of the form. What is the best solution for this prob ...Show All
CrispinH VB Application Settings
Im trying to build a program that runs on a database. I have tryed everything i can think of to change my connection string at runtime. What i want to do is enable a user to select a local SQL server that containes a copy of my database, and save it to the application settings. i keep getting a read only message when i try to change the app settings connectionstring setting. im not sure if i worded that right, if you need ...Show All
KLWSearch Printing Checked only Checked items from Checked List box
Hi, I'm a beginner learning at home from Microsoft. I have The visual basic 2005 express. I am attemping a project where my page contains 3 Checked list boxes. What I would like to do is print a list possible what I think you call conatating the 3 lists together and then only printing the items I have checked. I think I need maybe something like an if then statement. And then maybe iteration to go through my List to print only checked boxe ...Show All
Tariq Sharif Add APP Setting, when adding a reference to .DLL
I am creating a .DLL which will comunnicate with a WebService to reports status and errors. What I would like to do, is have the .DLL ask the parent application, for an Application.Setting for the HOST Webservice. Thus so it can be determined by the application that is using this DLL. Is there a way, that I can code the DLL to automatically add the Application.Setting data line, when I link the DLL in via References in the VS2005 IDE I ...Show All
