202 Posted Topics
![]() | |
Re: Perhaps you can use [inlinecode]Hour(Time)[/inlinecode], [inlinecode]Minute(Time)[/inlinecode], and [inlinecode]Second(Time)[/inlinecode] to get the hour, minute and second respectively for each of the two time points. | |
Re: Do you have to input the date before the app separates them. Or does the app get the date from the computer? | |
Re: I couldn't draw a whole pig.. so I drew a box where the pig is hiding. The pig shows half its face. | |
Re: If you want to learn and be more productive, use an IDE. However, using Notepad++ can be a challenge at times.. but hey, challenges improve your skills. | |
Re: Lets say the sub is in Form2 and it must be called via Form1. Declare the sub in Form2 as Public. To call it via Form1, write this code in Form1: [inlinecode]Call Form2.Subname[/inlinecode] where Subname is the name of the sub >.> | |
:X This has been puzzling me since I noticed the snippets section some 4 weeks ago. Personally, I would like to contribute snippets but as a programmer, my greatest weakness is my lack of creativity. I just can't think of any ideas to share. | |
Re: Out of 14, I got 3.. Still, no idea how it works. On the other hand, for tries 30 and above, I got the correct answers. | |
Re: It was the first time I saw a lunar eclipse. I missed the one last March and before that... meh | |
Anyone here know the code to view the cpu/ram usage at anytime? Yeah, I know its in the task manager but I want to create a small form and place it on my desktop. | |
Re: You can use Data control to connect a database to a project. | |
Re: Mine is Cinque.... Er.. I dunno about that. [quote=The Dude;414430]Find out [URL="http://www.fadetoblack.com/namegenerator"][U]here[/U][/URL] :) Mine is Shawasha[/quote] Really.. my girlfriend's name is also Shawasha. | |
Re: I would suggest the KeyPress and GotFocus functions. If one gets focus, the other is disabled. Then, if a specific key is pressed (enter or esc), the other is again enabled. | |
Re: You can use the function IsNumeric to check if a certain string is numeric or not. It is numeric if it contains only numbers and only one "-" (negative sign). If no text is entered in the textbox, its text value is "". You can use If/Else selection for this. | |
Re: Sorry, I couldn't visualize your problem. Could you post some screenshots please? | |
I'm gonna buy individual parts and set up my own computer. I already have 1 gig ram so I will not focus on buying anymore ram (but if you advice to get more...). Video card is just 256 mb so I'm planning to upgrade it. Processor is a sure upgrade … | |
Re: For a student.. Those laptops with cheap graphics so gaming will be limited. lolz | |
Anyone here using above vcard on vista? What driver did you use for it. I use v100.65 and whenever I run a game, a box appears saying NVidia graphics card stopped responding. | |
North Korea unabashedly blows up the moon By Author, Associated Press Writer. NORTH KOREA – The world thought that North Korea didn’t have the nuclear firepower to hit Japan let alone the moon. They were wrong. At approximately 11:20 P.M. EST North Korea changed the world forever. Using an advanced … | |
Re: Time to throw it 6' under the ground.. Kidding.. This is a serious problem. Anyway, suggestions: check the video card for damages maybe the power led or the front panel buttons are just disconnected Other than that, you can wait for other more experienced members to post here. | |
Hey all. I can run aero on my vista and I thought it was great. Then I initialized the guest account and run aero on that account as well. The first thing I noticed on the guest account was the fact that windows are dynamic (shrinking before disappearing, moving dynamically … | |
Re: My calculations here says that while viewing with IE and typing right now and running the computer as I normally do (full usage), vista uses about 600-610 mb. | |
Re: Well, I can speak two languages (my native language and English) fluently and a little Spanish and Japanese. On topic: I searched for google and it wanted me to change the word to mudzilla >.< but I found myself the top search. | |
Re: [quote=paodzy;385170]its just like this example: what animal considered a man,s bestfried? then i will give a series of answer that you can choose from. option button1 dog option button2 cat option button3 reptile. all i wanna know is the source code for the option button. thanks for the time i … | |
Re: End is not advisable to use. Unload me is actually fine by itself. | |
Re: The first line means getting a function "GetPixel" from gdi32.dll Forgot about the others. | |
Re: [quote=jbennet;370866]Open up Visual Basic on your pc In the file menu there should be an option that sounds something like "Make projectname.exe". Choose that. An .exe file will now appear in your project's directory and can be distributed to clients who do not have visual basic. Alternatively you can use … | |
Re: 3gz processor and 1gb ram.. I'd say those will yield good gaming results for the games of today. If you want to upgrade for gaming, I'd suggest upgrade the video card. | |
Re: Dunno if it words but try using Ascii conversion. | |
Re: Why not add a space every after 1 digit number? | |
Re: Er, no, I can't seem to understand your explanation. So far, there is Oct and Hex functions but for the others, I guess you have to convert manually. And, if you don't mind, please explain a little more. | |
Re: You don't need to add ".value" to assign values for integers. Example: "ck_chick = 0" | |
Re: If there are any textboxes in the form (which I'm sure there are), don't connect them to the database. Then if there is a button that adds the data into the database, then get the data from the textboxes then add them to the database. | |
Re: If you're trying to unload a form, your code does not show any part of unloading. You can add the [inlinecode]Unload Me[/inlinecode] somewhere in your code. | |
Re: [quote=t3hfr3ak;358707]See I tried that before hand... and the whole frog would have to be under the car... which can pose as a problem when only half of it is...[/quote] Are you saying that the frog must be under the car for a collision to occur only for the timer with … | |
Re: What database are you using? MSAccess? Others? | |
Hey all. I'm not exactly new but I'm still a newbie.:$ I'm from the Philippines. I just finished studying VB6 last semester and since then, I try to make a variety projects just to improve my skills, most especially in using API functions. So far, I enjoy staying here and … | |
Re: There are 10 different results. The frequency array stores the frequency of each result. For example, if the value of frequency(1) is 5, it means that out of 40 students, 5 gave a score of 1. In the code, for every student that gave a score of 1, frequency(1) will … | |
Re: You didn't assign the numbers to first and second. And in [inlinecode]Private Sub cmdEq_Click()[/inlinecode], you can remove the [inlinecode] sign = lblsign(Index).caption[/inlinecode] because it is not necessary and if not removed will alter the results. | |
Re: Correct me if I'm wrong. The user enters a number and the app is supposed to add each odd number between 0 and the input? Your program, on the other hand, adds each even number less than or equal to the input then adds 1 to the total sum. To … | |
Re: Does this help? [code] Dim TaskID As Long TaskID = Shell(pathname\filename.exe, vbNormalFocus) [/code] | |
Re: You can use [inlinecode] App.Path [/inlinecode] | |
Re: "Step -1" means that for every loop, the integer 'i' will be decreased by 1 until such time that 'i' will be equal to 2. For [inlinecode]MyStr = Trim$(Replace(MyStr, Space(i), Space(1)))[/inlinecode]... It means that all Space(i) string within the value of MyStr will be replaced by the string Space(1) and … |
The End.