- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 21
- Posts with Upvotes
- 15
- Upvoting Members
- 18
- Downvotes Received
- 26
- Posts with Downvotes
- 16
- Downvoting Members
- 11
- Interests
- Programming. Gaming. Dreaming. Research on others programs and games. Learn new program languages.
- PC Specs
- 4 GB Ram. 1024 GB Hard discs. 512 MB Graphics card. Windows 7
120 Posted Topics
Re: " Hard word's can't touch any soft heart, But soft word's can touch any hard heart , So speak in a soft way. The world will be yours . " | |
Re: I heard about an English novel written by Ernest Vincent Wright Gadsby: Champion of Youth.The interesting fact is he never used letter " e " in his novel ! and he died when he completed the novel. [url]http://en.wikipedia.org/wiki/Gadsby_(novel[/url]) | |
Re: 1 girl 1 smile 1 smile 1 meet 1 meeting 1 purpose 1 purpose 1 love 1 love 1 marriage 1 marriage -- 111111 problems so avoid the first " 1 " | |
Re: I Think You are married , hehehehehe --------------------------------------------------- " Wife : Beggars are frauds! Husband : Why? Wife : I gave 2 $ to a blind beggar and he said god bless you beautiful lady. How he know I am beautiful!? Husband : Sure he is BLIND! " | |
Re: I think this code will allow to enter numbers and decimal points But it will allow ' , " ; etc i am still looking for another shortcut way [CODE]Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If (Char.IsLetter(e.KeyChar) = True) Then e.Handled = True End … | |
Re: [QUOTE=joeweks;1018478]Please help me to code an infinity number in VB[/QUOTE] Infinity number ?? in vb ?? I don't understand what are you trying to do ...I think there is no need of infinite Numbers in vb.You can declare variables like string , integer , double etc .. Integers handle normal … | |
Re: thanks man, this one is really simple one i really liked it ... | |
Re: the simple way :) [CODE]Private Sub Command1_Click() If Form2.Visible = True Then 'form is loaded MsgBox ("Form 2 is loaded") Else MsgBox ("Form not loaded") End If End Sub[/CODE] You can do that first by adding a public flag[do that in a module so you can access it anywhere], when … | |
Re: [QUOTE=jeffrey4u;1474213]I have no idea with this but looking forward for any help or suggestions. Any link will be of great help[/QUOTE] to show a balloon tip : [URL="http://www.codeproject.com/KB/vb/balloon-tooltip.aspx"]look here[/URL] | |
Re: why don't you use a time pause function to delay or a timer ???? | |
Re: [CODE]Dim flag As Integer Private Sub Command1_Click() If flag = 0 Then Flag1 Else Flag2 End If End Sub Private Sub Flag1() MsgBox ("flag 0") flag = 1 End Sub Private Sub Flag2() MsgBox ("flag 1") flag = 0 End Sub [/CODE] | |
Re: that error shows because you deleted, if u have 5 items the loop starts i o to 4 and [B]once you deleted an item then normally total items reduced to 3[/B] but the loop only stops at 4, thats the error ! try something like this [CODE] Private Sub cmdremove_Click() … | |
i got a big project really big one and they need this new solution only because of peach tree, tally are not enough for doing their work. My program should be capable of bulk, multiple data transfer and usage at same time.[B]The real problem is their main program is created … | |
Re: to change VScroll1 value i think this will help you ! [CODE] Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 13 Then If Not VScroll1.Value = VScroll1.Min Then 'if minimum then stops VScroll1.Value = VScroll1.Value - 10 End If End If End Sub [/CODE] please note that … | |
Re: Yes , no doubt you can do that , [CODE] IF CUST= "A" OR CUST = "B" OR CUST = "C" THEN CUST = "A , B ,C " [/CODE] It is useful when you need to check same condition or to create an advanced search ! I used this … | |
Re: - visual basic geek - game geek - dream geek - food geek - weapon geek - music geek | |
Re: [QUOTE=VINOD_2553;1239494]Hi every one i just want a payroll software only for printing pay slip it is very urgent any give me a payroll project as my requirment change software my self please help me . It is increse my salary[/QUOTE] Are you a programmer? I think it is better to … | |
Re: I think you want declare those variables as public then put this in form load [CODE] code(1) = "A349" code(2) = "B359" code(3) = "C369" code(4) = "D379" code(5) = "E389" code(6) = "F399" description(1) = "Keyring" description(2) = "Mug" description(3) = "Scarf" description(4) = "Pen" description(5) = "Doll" description(6) … | |
Re: But i am good in maths all time ... I envy those people who are the real legends in gaming world !! Those behind Warcraft , Resident Evil , Diablo etc.. and specially Sid Meier [ CIVILIZATION ] [QUOTE][ And Bill Gates hehehehehehehe ][/QUOTE] | |
Re: there is no need of [B]else ![/B] just if [CODE]If Text1.Text = "" Then MsgBox ("Please type something !")[/CODE] And don't forget, never use it with text change ! | |
Re: Just double click the textbox and write your code ! Or if you want to find or do if the text is changed, then just add an integer and change its value to 1. | |
Re: i think its simple just change the window position in properties menu or just change the forms top and left to a specified location when it loads. | |
Re: Try to use some If conditions or select case ! | |
Re: can't understand what you are trying to do. If you want a negative value then just do it normal way :) [CODE]Private Sub Command1_Click() Balance.Text = amt_Tot.Text - amt_Pad.Text End Sub [/CODE] | |
Re: File not found may be u missed the file you want to load, or you give the wrong destination for your file. Check the file address u give. | |
Re: u need a scrollable form, hmmmm i think if you used one mdi form and your form as a parent form then you can add or change the height or width to 50,000 or more ! But i think it will work without mdi form. [B][U]By changing the form border … | |
Re: I think this is simple. May be you give the directory or file id directly. I recommend please copy all required files to your program directory with your [B][U]application.exe[/U][/B]. Then if you want to load a text file then use like this [CODE]App.Path & "\Text.txt"[/CODE] then it will load the … | |
Re: I think this will work for you. This is without database. You can add database then it will become more reliable and with more choice. [CODE]Private Sub Combo1_Click() If Combo1.Text = "Nation_1" Then secondcombo (1) ElseIf Combo1.Text = "Nation_2" Then secondcombo (2) ElseIf Combo1.Text = "Nation_3" Then secondcombo (3) End … | |
Re: Hey plz add .Net and Visual basic 6 | |
Re: I think it is easy to create web based applications in vb first you need to add a web browser navigator to the form to learn its control just add a form and select web browser template. It is good to use some more external controls or sources to make … | |
Re: I think that code is too long to handle , may be this will help you !! [CODE]Private Sub Command1_Click() Me.Hide Form2.Show Form2.Label1.Caption = Text1.Text End Sub [/CODE] Try it Best Of Luck | |
Hi friends ..I think people likes to play computer games. The first game i played in a Computer is Nightmare Creatures. I like to know your first computer game ?? | |
Re: I think you are talking about IF Else statements. May be this code will help you ... [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = "time" Or TextBox1.Text = "tim" Or TextBox1.Text = "now" Then TextBox1.Text = TimeOfDay ElseIf TextBox1.Text = "name" … | |
Re: I think you want to add events in key press.In this case the simple and [B]easy way is to add this code :[/B] [CODE] Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = vbKeyReturn Then Label1.Caption = Text1.Text End If End Sub [/CODE] Here you can call an even in key … | |
Hello friends i made a small program like a scanner it will scan an image file to a Rich Text Box. My friend helped me in providing the code to access the pixels of an image.Hope you will like the code. Try it .... This need : Reference files : … | |
Re: I think you made mistake in declarations if any .. Integers never load a decimal point.But a Double do. [B]Are you trying to open the notepad ??It is not clear .[/B] Read from a notepad is equal to open it.Then you will get the whole data in notepad. | |
Re: Just dreaming. That's the perfect way , in dreams we can do anything !!!!! [B]anything ...[/B] :twisted: :) | |
Re: For this first add a ProgressBar to your form.It is easy to increase the value of the progress bar.Just add another value. I made an example.Here is the code to increase the Progress Bar. [CODE] Private Sub Form_Load() Timer1.Interval = 1 ProgressBar1.Max = 1000 End Sub Private Sub Timer1_Timer() If … | |
Re: You can activate a function by making a comparison .Just use a IF ELSE statement.If the string contains vowels then write code within the IF & END IF. You can compare like this If a="a" or a="e" or a="i" then code End If You can count total length of a … | |
Re: You can do it by one line , if you get the Profit base to a variable then [CODE] Dim a As Integer a = 500 If Text1.Text <= a Then Label1.Caption = "Loss" Else Label1.Caption = "Profit" [/CODE] | |
Hi friends ... I am a bigggg fan of [B]"Arnold Schwarzenegger"[/B] but yesterday my friend mail me some pictures that was shocking ......The new Arnold Schwarzenegger is little different :sad::sad: Here ...Look at the image ... Now i am searching the web to find out the famous Hollywood actors with … | |
Re: No problem it is working for me , i used the code in form resize. | |
Re: You want to calculate and manage the leave days taken by the employees. For storing information first you must make a database.Store it in your project folder.Create 2 table , one to store employees details and other to store the total present days or a Registry to record the present … | |
Re: What you want to do open a form or close a form or just show a message box ... First add a timer and change its Enabled property to true. Then adjust time to 30 seconds ( 1000 is equal to 1 second , so set 30000) . Add this … | |
Re: My score : 3 of 3 !! [B]I think i am lucky[/B] hehehehehehehe ......... | |
Re: welcome [B]newbiest of the newbs[/B] , You like computer animation [ me too ].I am using 3ds max and Daz studio etc..There are many animation stuff in web it will make you handle it more easy ..Best wishes .... | |
Re: You can create a log in program by using a database or using coding. Add an extra form to project. You can compare user typed text using the If Else statement. If the name is "A" and Password is "123" then in the Login button control use a comparison statement … | |
Re: Hmmmm ..... I only know Alt.In my experience i don't know about Ctrl in button. If you want to add one i think you can do that by creating an user control. Or you can detect Ctrl in coding in key press event. In Menu bar you can add a … |
The End.