Hi all I have this problem I hope I'll explain it in the best way An Engineering Application: it contain a tab control with many elements the tab control and...
Hello, There are programmatic ways to shift the control to any tab of the tabbed dialog. If you can post the button click code where this is required I may ...
Hello, What is this? Is this a prank or what? Members of this group also have time as a scarce resource. Please don’t waste people's time by posting empty ...
Hi, I'm relatively new to VB6 database programming, and there seems to be myriad ways in which you can connected and access databases. Is there considered a...
Syme, I have a nice example in the files section of the Visual Basic Beginners2 yahoo group. It is under Matt and called something like msaccess.zip matt...
I thought using the Data Environment in VB6 seems like a good idea (in that you can keep all your connections etc in one place). But looking around (the net...
Hello, We find DataEnvironment very limited as it gets tied with a database and there are again complications like hard coded database file paths. We use ADODB...
Sounds elegant but may have a bit of an initial programming overhead - how many databases and tables do you have in your hierarchy? ... database and ... in VB....
Hello, It is not a fixed hierarchy. It is the method which is standard. Normally we create one class per table which will handle all the data base related ...
Hi Group, I want to exit from my active X control(.ocx), I have a Exit button in that control , on click of which application should exit. I can not use END...
its not working, it gives error 361 can't load or unload this object ... From: "Rick Rose" <rickr@...> To: <visualbasic6programming@yahoogroups.com> Sent:...
hai all. HAPPY FRIENDSHIP DAY with friendly ramesh pjeyabalasundaram <pjeyabalasundaram@...> wrote: Yahoo! Groups SponsorADVERTISEMENT ... Yahoo! Groups...
Thanx and same to u too,By the way 1st August happened to be my bday too. ... [Non-text portions of this message have been removed]...
sanat kumar mishra
sanatkumar_mishra@...
Aug 2, 2004 8:48 am
16541
how a report run in multi-user environment using vb6/sql server. actully i m telling about client server application /nteer application. is there anybody can...
hello i m using client server application ,we have one server and 10 clients ,when 3 or 4 user access the server at the same time the network speed goes...
Hello friends, I am in search of a visual basic program of the subject "MEDICAL STORE BILLING SYSTEM". If anybody has one pls. send to my mail...
STN
servetheneedy@...
Aug 2, 2004 10:30 am
16545
Hello group, I have a textfile, the contents of which I am reading into a database table. My aim is to delete any white spaces that may be present at the end ...
If it's with spaces use the RTRIM function that will remove all blank spaces in the end of your string ... From: Martin [mailto:martin_garbz@...] Sent:...
I'd try the RTRIM as suggested, if that doesn't work it means that it isn't a space (ASCII value 32), you'll then need to do further analysis using the ASC...
you can use this bro... Function TrimVoid(strWhat) '************************* 'Usage: x = TrimVoid(String) '************************* 'Example: Chunk =...
dear all, any idea implementing Mail Merge in Powerpoint with VB6? thanks, Ali Akbar...
Ali Akbar
the.apaan@...
Aug 3, 2004 7:37 am
16550
Hi Group, Actually I am facing bit problem in a DLL, I want to get the no.of instances of application running on one system. I am adding the code to this...
Hi people... Consider this piece of code Dim a, b, c, d a = Null b = 0 c = 1 d = 5 Label1.Caption = Format(a + b + c + d, "00") The label1 appears empty...
You could dimension all variables as integer, or double of you are using
decimal points. Then dimension another variable to hold the sum. You can't
tell it to...