try text25.text=cstr(cint(text22.text)+cint(text23.text)+cint(text24.text)) ... From: CHRIS To: visualbasic6programming@yahoogroups.com Sent: Saturday, June...
That will not add them that just populates them with there values. In order to add them them you just do... ext25.text = Val(text22.text) + Val(text23.text) +...
You may find your answer here http://www.freetutes.com/Visualbasic brian.auty@... wrote: Try text25.text=text22.text & text23.text & text24.text ... ...
Good day! In order to get the sum of a given text field, you must specify the text field name and get their text as a value. You may try this good solution... ...
Hi All, Pls can any one recommend the best practice method of installing VS2003 and VS2005 on the same machine? For me my 2003 does not run when I install 2005...
In that event. you'll need to reference Microsoft Outlook 11.0 Object Library in your project. There's one problem with using Outlook. There's a security patch...
To answer your question, yes, it should work that way. And I work in a company with over 700 users, all banging away on our sprocs all day. No problems. Just...
Thanks. This is a great help. I will give it a try. Bart _____ From: visualbasic6programming@yahoogroups.com [mailto:visualbasic6programming@yahoogroups.com]...
Good day! Can anyone help me please... I want to use visual basic for developing software with in touch in data management. Right now, im using Microsoft...
what do you mean of NoLock? Do not lock the table? They say locking the table is quite good as long as you unlock it. The next caller would have to wait...
You only want to lock if you're updating or inserting. And then, preferably, only the record you're inserting/updating. If you're SELECTing, then you want to...
You only want to lock if you're updating or inserting. And then, preferably, only the record you're inserting/updating. --> ??????? I am confused of your...
I used an ActiveX control from http://fathsoft.com/fathmail.html Darrin J. Calcutt, CEO, COO Canadian Locomotive Logistics Thanks to our sponsors for making...
could you help me out on finding an algorithm suitable for a thesis proposal..it must be sumthin that can later be implemented in a visual basic program, thanx...
Hello Friends, I am looking for a project called Availability Tracker in VB and SQL. The system is initiated the moment the user logs onto the Application. The...
I use a command line program called Blat.exe. I use Shell to it from within VB. Not a lot of control, but OK for sending simple alerts and error messages to my...
helllo everubody, i m learning vb.net . i m getting trouble while i want to include picture at run time in the picture box.i m using openfiledialog class on...
... programs ... U can do this by adding a new project of Type Dll.. then add a reference to it into your main application then as much as you want to change...
Hello This will help u U have to go to the Project Menu and then goto references and then add ur dll file by browsing it. try it out ... Tasim Khan ...
Hi evrybody, I'm quite puzzled as what had happened to my VB6.0. All these time, I've been connecting ADODCs like this: myAdo.connectionstring=src (declared...
I got this code from some Free Code websites (Sorry I don't remember,it's been a while). Private Declare Function ClientToScreen Lib "user32" (ByVal hwnd As ...