Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
53% Quality Score
Upvotes Received
21
Posts with Upvotes
15
Upvoting Members
18
Downvotes Received
26
Posts with Downvotes
16
Downvoting Members
11
6 Commented Posts
~84.6K People Reached
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

Member Avatar for vegaseat

" 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 . "

Member Avatar for Reverend Jim
15
13K
Member Avatar for Duki
Member Avatar for vegaseat

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])

Member Avatar for vegaseat
11
9K
Member Avatar for debasisdas

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 "

Member Avatar for James_28
8
17K
Member Avatar for The Dude

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! "

Member Avatar for Ene Uran
9
4K
Member Avatar for babbu

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 …

Member Avatar for Reverend Jim
0
3K
Member Avatar for joeweks

[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 …

Member Avatar for singingswitchman
0
916
Member Avatar for sandeepparekh9
Member Avatar for kothaisaravan
0
454
Member Avatar for PinoyDev

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 …

Member Avatar for PinoyDev
0
267
Member Avatar for jeffrey4u

[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]

Member Avatar for AndreRet
0
180
Member Avatar for Shodow
Member Avatar for Roldy

[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]

Member Avatar for AndreRet
0
205
Member Avatar for azzu khan

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() …

Member Avatar for WaltP
0
164
Member Avatar for Vineeth K

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 …

Member Avatar for Vineeth K
0
169
Member Avatar for Jaseem Ahmed

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 …

Member Avatar for Vineeth K
0
225
Member Avatar for gingank

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 …

Member Avatar for AndreRet
0
205
Member Avatar for happygeek

- visual basic geek - game geek - dream geek - food geek - weapon geek - music geek

Member Avatar for Chatterbox721
0
755
Member Avatar for VINOD_2553

[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 …

Member Avatar for jhai_salvador
0
642
Member Avatar for pytup

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) …

Member Avatar for pytup
0
180
Member Avatar for quicktpgo

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]

Member Avatar for HiHe
0
123
Member Avatar for lloydi12345

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 !

Member Avatar for gms_019
0
195
Member Avatar for jemz

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.

Member Avatar for abu taher
0
150
Member Avatar for avinash_545

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.

Member Avatar for avinash_545
0
103
Member Avatar for jmjones55
Member Avatar for Masterace

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]

Member Avatar for Vineeth K
0
82
Member Avatar for london-G

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.

Member Avatar for Vineeth K
0
77
Member Avatar for yopirates

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 …

Member Avatar for yopirates
-1
153
Member Avatar for yentenwangchuk

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 …

Member Avatar for Vineeth K
0
74
Member Avatar for vishaldalya

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 …

Member Avatar for Vineeth K
-1
151
Member Avatar for sneekula
Member Avatar for Sarama2030

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 …

Member Avatar for neosonic
0
1K
Member Avatar for EntangledDesi

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

Member Avatar for EntangledDesi
0
390
Member Avatar for Vineeth K

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 ??

Member Avatar for GrimJack
3
442
Member Avatar for xVent

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" …

Member Avatar for xVent
0
101
Member Avatar for adamsn

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 …

Member Avatar for adamsn
0
137
Member Avatar for Vineeth K

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 : …

Member Avatar for Riju Thomas
0
331
Member Avatar for Domus BRASIL

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.

Member Avatar for AndreRet
-1
160
Member Avatar for AndreRet

Just dreaming. That's the perfect way , in dreams we can do anything !!!!! [B]anything ...[/B] :twisted: :)

Member Avatar for William Hemsworth
0
436
Member Avatar for kcasmir

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 …

Member Avatar for ImMoRtAl-
0
207
Member Avatar for five01

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 …

Member Avatar for TomW
0
98
Member Avatar for abu taher

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]

Member Avatar for Vineeth K
0
130
Member Avatar for Vineeth K

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 …

Member Avatar for daniel12
0
208
Member Avatar for abu taher
Member Avatar for abu taher
0
101
Member Avatar for ntuthuzelojames

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 …

Member Avatar for abu taher
0
130
Member Avatar for Nattynooster

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 …

Member Avatar for sknake
0
430
Member Avatar for The Dude

My score : 3 of 3 !! [B]I think i am lucky[/B] hehehehehehehe .........

Member Avatar for Wasser
0
167
Member Avatar for Phil Friel

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 ....

Member Avatar for ahihihi...
0
194
Member Avatar for CPUTcoder

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 …

Member Avatar for Vineeth K
0
136
Member Avatar for The Dude
Member Avatar for xWiredx

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 …

Member Avatar for vb5prgrmr
0
77

The End.