- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Re: [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 … | |
Re: [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] … | |
Re: 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 … | |
Re: 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 … | |
Re: hi, i posted about this a while back... should help you out some... [url]http://www.daniweb.com/forums/thread158280.html[/url] | |
Re: [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 … | |
Re: 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 … | |
Re: [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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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. | |
Re: [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 … | |
Re: [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 … | |
Re: [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 … |
The End.