Hi. did this project out of my programming book for my programming class. will post the message below. if any one can shed light on how to fix this problem i...
Hi. did this project out of my programming book for my programming class. will post the message below. if any one can shed light on how to fix this problem i...
Dear all I am facing following problems while writting macros in excel environment for small attendance database as well as employees personal information. I...
Hi. using the jaws for windows screen reader as a blind development student using visual basic dot net express 2005. will post the following message belowm...
Why are you using excel?....It sounds to me like you want a database application so use sql or access...Let me know what you decide and i will help...not do...
I can save an integer variable as upper case, but when I pull up the project at a later time, this same variable has been changed to lower case. For example...
Since VB is not case sensitive, I suspect that somewhere in your code you are using the lower case ns. Why it is changing the definition, I can not answer...
Is it possible that there is some global variable already defined w/ the same name, but in lower case that is in scope at the point at which you are setting...
ryt click the variable name and choose definition.. i suspect that you defined the variable twice on different aspects AgEnT^^^OrAnGe My Greatest Fear is to...
Yes, I did find that VB6 sometimes gets confused, since it cannot distinquish between upper and lower case variables; in my case there was an "ns" defined in...
I am using VB2005 express , whenever i try to add flash to my WINforms, all i needed to do was to add the control as a com component and drag it on the stage...
Go to the folder the acviveX control is listed and once found right click it and frm the popup menu select Open With. their will be a listof programs and a...
Dear Danny, thanx for ur reply but I didn't find folder acviveX. whatz its path? ... right click it and frm the popup menu select Open With. ... button and...
i am programmer of VB6. Now i wana switch to .net with SQL Server, kindly tell me what version i should install in my PC and kindly send me link from where i...
Hi y'all I am in your same situation and well ... I think the most intelligent is starting with VB 2008, nonsense doing with VB 2005 and VISUAL BASIC 2008 FOR...
Every week I down load data from our server. The same format and headers each week. This file will grow exponentially! Need to append it to a text file so I...
Language: VB 2008 Express I need to replace every instance of "_new" with "_self" found in a js function on a webpage loaded into the WebBrowser1 control. I...
You can download VisualBasic 2008 Express for free here http://www.microsoft.com/Express/VB/ HTH, Ernie ... kindly tell me what version i should install in my...
I am new to coding and have an assignment to parse a name and place the first name in one label and the middle name in the second label and the last name in...
I think the problem is the variables are being passed to the function byval and not byref. So, the value is changed in the sub but not returned. You should...
Your first method is quite convoluted. Using the split function would save you a lot of hassle: Private Sub btnParse_Click(ByVal sender As System.Object, ByVal...
I wish to purchase Visual Basic, but getting information from the MS site is hopeless. Would someone please explain to me the differances between the Standard...
I agree. When a value is passed by ref to a function and the value is changed, when the functions ends the changed value is available to the calling function...
I have written the following code to fill an arryList and then display it in a list box. I now want to remove a selected item from the list box and remove the...