... CJ, I guess my problem is that I figured that writing a console application to point to an MS Access database is something very simple. I assumed that...
-> You have to provide the connection string and the SQL ... CJ, Forgot one thing. The connection string seems to be the problem. I am unsure how to tie my...
Larry, The code snippets I included are not "bound" in any way to a form. They can be used with a console app, a winform app, an asp web page or even in a dll...
hello, everyone, I'd reinstall my application and change the server name of my Sql sever. Then, i hav to change/update the datasource of my project but I don't...
Hello guys! A part of a code that I developed proceeds below. Basically, which he does is to create two files XML. In the end of the necessary code that is...
CJ, I sent a new post the other day but do not see it, so I am sending it again. I got the code to work. Thank you for your help. - LarryTAKEOUT@......
In VB Script I want to be able to calculate the duration between two days. Suppose I was given two Dates 07/30/2008 and 4/12/2009. I want to state it is 8...
Hi, I have lot of data in rows of data grid but when I run my project I can't view the whole data.Pls help me.I m working with vb 6.0 Meet people who discuss...
I am an electrical engineering undergrad and as a part of my internship, I am required to prepare a GUI using VB. In this program I am required to parse a huge...
i need a help with vb code to make a circular movement of an object. It has to move from one point to another but move circulary and stop when it reach it...
Given X = Cos(Radians) and Y = Sin(Radians), the point (X,Y) "moves" in a complete circular path as Radians changes from 0 to 2 * Pi. You can scale the size of...
Dear Team, I spent over 25 hours on this and havnt reached my goal. Please suggest. I have a button (btnUpdate) on a form where I am calling a function. The...
Hi ! Here's a piece of code, i = bt_add_folder.Location.X j = bt_add_folder.Location.Y If customFolderdialog.ShowDialog = Windows.Forms.DialogResult.OK Then ...
am also new student of visual basic so thats why m also need help pls send me notes of VB-1 ... From: Chris Judge <cjudge1966@...> Subject: Re:...
Hola a todos I've got to open (in VB6) the box of a Cash Register machine connected to the computer, by code, when the user click one button in the program. In...
dear members, unfortunately i forget the soucre code of my very important VB 6.0 file. and i want to change tsoe point from this file but i am helpless. So,...
Using VB or VB.Net ??? In VB , you have to add project reference to 'Microsoft Excel library" and create an object of excel.You can find 'n' properties of...
Dear Raman Bharti, Please mail me on my yahoo id and find the Visual Basic notes as per your need. Thanks & regards Roopesh Mandloi roopeshmandloi@......
so, anyone know a good decompiler, visual studios seems to decompile it but wont allow me to edit it, tho i think it was written in c, just tryin to edit one...
Hi friends  I have one problem I hope help me out.  I have two variable like  dim a as String  a="ABC" here a is User Name  dim b as String  ...
how can I show For Loop in TextBox I mean when I execute program the loop execute from 1 To 1000 and that value show one by one in TextBox. when ever i try to...
did you try - Single Sign On ? Sachin Panchal <sachin_srpworld@...> wrote: Hi friends I have one problem I hope help me out. I have two variable like dim...
is this what you were looking for ? For i As Integer = 0 To 1000 TextBox1.AppendText(i.ToString + ",") Next OR For i As Integer = 0 To 1000 TextBox1.Text =...
use timer.. killua sweet assassin ... From: Roshan <the_picez@...> To: VisualBasic_Official@yahoogroups.com Sent: Wednesday, June 25, 2008 3:18:04 AM ...
in vb.net im making a simple game in which two buttons are used when these two buttons strikes one of them should be disapear. which logic to be used to...