Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #2K
~4K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for SI THU

[QUOTE=SI THU;1705778]Anybody help me please, how can i run bat file code in vb6. can i run it. thanks,for read[/QUOTE] bat, as in .bat file code? you could use the shell function. been a while since i've used it but i'm pretty sure it's Shell "path\file", [windowstyle] i suppose in …

Member Avatar for kain_mcbride
0
146
Member Avatar for nagatron

[QUOTE=nagatron;785478]Please help me how to ignore case sensitivity in VB. My program is to store data in the database, though I use small letters or big letters, the database store the data starting with a capital letter followed by small letters. Ex. [B]Input[/B][B]:[/B] [COLOR="Red"]Neil, neil, NEIL[/COLOR] [B]In the database:[/B][COLOR="Red"] Neil[/COLOR] …

Member Avatar for nagatron
0
225
Member Avatar for yuleball

Unfortunately, alt isn't a standard key... so you're pretty much going to have to use the key up and key down events if you want full detection of what they're doing... is key down - alt is keycode 18 shift 4, key up - just keycode 18 since it's no …

Member Avatar for Comatose
0
1K
Member Avatar for zawpai

when you say running the application continuously, i'm assuming you mean there's looping going on? alright... well, there are a few ways you could do it... easiest way might be defining a boolean variable... for instance [code]option explicit private bRunning as boolean[/code] then you can set the variable and run …

Member Avatar for Jx_Man
0
268
Member Avatar for ronjustincase

hi, i posted about this a while back... should help you out some... [url]http://www.daniweb.com/forums/thread158280.html[/url]

Member Avatar for kain_mcbride
0
142
Member Avatar for Rrajal

[QUOTE=Rrajal;735877]Hi there.. I am new member here and having a problem. I am working with a software solution co. and we want our software to support "Internationalization". means want to provide multilingual support. We are using vb6.0 as development and all the diff APIs for our working..... can anyone tell …

Member Avatar for nicowest
0
719
Member Avatar for squidd

well, one way to tell what subs were successful and which ones weren't would be to create a set of boolean flags... for example... [CODE]private bSomeSub as boolean private bSomeFunction as boolean private sub SomeSub() on error goto Oops 'whatever is in the sub 'lots of code or not so …

Member Avatar for kain_mcbride
0
151
Member Avatar for squidd

[QUOTE=BigSeckC;741037]I'm assuming that the program is being told to wait 1.5 seconds before continuing. Is 'pause' [B]not[/B] a valid command? It makes sense 'logically'...but if it's not a command - it's not a command. :P[/QUOTE] not a command as far as i know, there use to be a sleep command …

Member Avatar for squidd
0
193
Member Avatar for pankaj1980

well; depending on where this image is... if it's within your project - as opposed to an external file - you could print it from whatever image control it's in... if it is an external file you could load it into an image type control (image box, picture box, anything …

Member Avatar for kain_mcbride
0
126
Member Avatar for locsin

loop it (any kind of loop will do, if you don't use a For Next loop, just add a counter variable and increment it each time) though i'm assuming you have these employees in an array of some sort..? if you print the index value you're using to access the …

Member Avatar for kain_mcbride
0
91
Member Avatar for daniiq8

alright, what part aren't you understanding? part 1 is creating 5 arrays and setting their values somewhere within the program. part 2 is creating another 3 arrays to store the results of your comparisons between the data.

Member Avatar for kain_mcbride
0
187
Member Avatar for quenestil

[QUOTE=quenestil;739541]Hi, im doing a program in VB and i want to print my clients information. But i dont want to print a printscreen of the form, i want to print a list of all my clients on a page design by me, i know that is possible to design the …

Member Avatar for kain_mcbride
0
319
Member Avatar for abu taher

[QUOTE=abu taher;733800]I work in a project with 12 chekbox(12 monthname) and a textbox. when I check a box a month name like "january" show in textbox. when I check another checkbox "February" show in that textbox after january. like "January February" as like same 12 checkbox. but when I uncheck …

Member Avatar for kain_mcbride
0
142
Member Avatar for sacarias40

[QUOTE=sacarias40;733614]ok, ive got a combobox. ill tell you some choices that are in it. : vacant lot seaside lot casino shopping mall when you click one of these, they are connected to the same variable. because im figuring one problem at a time, the choice which you choose is now …

Member Avatar for sacarias40
0
101

The End.