Search found 7 matches

by gougou
Mon Apr 26, 2010 4:44 am
Forum: Advertising
Topic: 100% Real Data Entry Jobs For Free. With 2 Payment Proofs
Replies: 23
Views: 18543

Re: 100% Real Data Entry Jobs For Free. With 2 Payment Proofs

Thanks God!
I'm looking for the opportunity to earn money while studying and I got it now.
Thanks friend. :)
by gougou
Mon Apr 26, 2010 4:26 am
Forum: News & Announcements
Topic: ExpertCore site rank 199,970
Replies: 9
Views: 12679

Re: ROBOT.LK site rank 199,970

Now it's 159,221.
Very good!
:)
by gougou
Mon Apr 26, 2010 4:14 am
Forum: C/C++ Programming
Topic: Learn C
Replies: 17
Views: 13384

Re: Learn C

Okay, Here are the steps to start. Step 1: Download Dev C++ - Nice and free C++ IDE with compiler/linker, etc... from http://www.bloodshed.net/dev/devcpp.html or http://prdownloads.sourceforge.net/dev-cpp/devcpp-4.9.9.2_setup.exe If you already have Visual Studio.Net 2005/2008 or Visual C++ 6, then...
by gougou
Wed Mar 24, 2010 7:39 am
Forum: News & Announcements
Topic: ExpertCore site rank 199,970
Replies: 9
Views: 12679

Re: ROBOT.LK site rank 199,970

I'm glad to hear that. I learned many things here, thanks. :)
by gougou
Wed Mar 17, 2010 11:45 pm
Forum: Data Structures & Algorithms
Topic: Data Structures And Algorithms Tutorial
Replies: 2
Views: 5595

Re: Data Structures And Algorithms Tutorial

WOW!! :shock:
I study this lecture in this semester and you give 36 videos, I think it's more than enough.
Thank you very much, Shane.

Is that Djikstra's Algorithm in video 36?
by gougou
Wed Mar 17, 2010 11:19 pm
Forum: Visual Basic Programming
Topic: How To Validate Numbers in TextBox
Replies: 0
Views: 4265

How To Validate Numbers in TextBox

This program will not allow users to input non-numeric characters. FYI, KeyAscii code for numbers is between 48-57. Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii < 48 Or KeyAscii > 57 Then KeyAscii = 0 Beep End If End Sub The problem is users cannot erase or add point to the number he ...
by gougou
Wed Mar 17, 2010 10:09 pm
Forum: Visual Basic Programming
Topic: How To Detect Empty Textbox Before Updating Record
Replies: 1
Views: 4790

How To Detect Empty Textbox Before Updating Record

This program will warn you if there is one or more empty textbox. You can modify it to handle empty checkbox, etc. Sub CheckEmptyTB() Dim ctr As Control For Each ctr In Me.Controls If TypeOf ctr Is TextBox Then MsgBox "Empty TextBox!" ctr.SetFocus Exit Sub End If Next ctr End Sub

Go to advanced search