Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Programming Guides, Tutorials, Web Resources, and E-books Compilation

i thank you so much ts for making this thread.. i know this will be verry helpfull to me.. beginner po ko sa vb.net, hope matulungan niu po ko soon in case i need help.. :)
 
Javascript Guides, Tutorials, Web Resources, and E-books Compilation​



Code:
[B][COLOR="Purple"][SIZE="4"]Javascript Lessons and Resources:[/SIZE][/COLOR][/B]

Javascript Tutorial (W3Schools)
http://www.w3schools.com/js/

JavaScript Reference and Manual
http://edutechwiki.unige.ch/en/JavaScript_links

JavaScript Tutorial for the Total Non-Programmer
http://webteacher.com/javascript/

JavaScript Tutorial for Programmers
http://www.wdvl.com/Style/JavaScript/Tutorial/

JavaScript Tutorial and Guides
http://www.cs.brown.edu/courses/bridge/1998/res/javascript/javascript-tutorial.html

Javascript Complete Tutorial
http://www.quackit.com/javascript/tutorial/


Code:
[B][SIZE="3"][COLOR="Purple"]Other Useful Website Links:[/COLOR][/SIZE][/B]

http://www.howtocreate.co.uk/tutorials/javascript/
http://www.echoecho.com/javascript.htm
http://www.webdeveloper.com/javascript/javascript_js_tutorial.html
http://www.java2s.com/Tutorial/JavaScript/CatalogJavaScript.htm
http://www.learn-javascript-tutorial.com/
http://www.trans4mind.com/personal_development/JavaScript/index.html
http://www.functionx.com/javascript/index.htm
http://www.javascriptkit.com/javatutors/
http://www.tizag.com/javascriptT/
http://www.pageresource.com/jscript/
http://www.htmlgoodies.com/beyond/javascript



Code:
[B][SIZE="3"][COLOR="purple"]Javascript E-books (Direct Download:[/COLOR][/SIZE][/B]

The JavaScript Language
http://www.cs.rpi.edu/~hollingd/eiw/notes/JSProgs/JSProgs.pdf

Using JavaScript as a Real Programming Language
http://research.sun.com/techrep/2007/smli_tr-2007-168.pdf

Getting Started with JavaScript Programming
http://ptgmedia.pearsoncmg.com/images/9780672328794/samplechapter/0672328798_CH03.pdf

JavaScript Programming Practices
http://www.javascriptref.com/pdf/ch23_ed2.pdf

JavaScript - Core Web Programming
http://notes.corewebprogramming.com/student/JavaScript.pdf

JavaScript
http://notes.corewebprogramming.com/student/JavaScript.pdf

Simply JavaScript
http://www.sitepoint.com/books/javascript1/javascript1-sample.pdf

JavaScript Bible
http://media.wiley.com/product_ancillary/28/07645334/DOWNLOAD/all.pdf

Credits: www.google.com and to the original author of each tutorials.
:hat:


:thanks: dito :) sana matuto ko ng lubusan hehe
 
Boss sa VB po pala paano yung pwedi letters only upper and lowercase can backspace, space and perio "." or dot???
for textbox po kasi name validation
 
anu ung possible code s ms access...n pag kinlick mu ung label or picture..magcocount s report at magkakroon ng time and date kng keln mu xa naclick.???please help..
 
Boss sa VB po pala paano yung pwedi letters only upper and lowercase can backspace, space and perio "." or dot???
for textbox po kasi name validation

Trap the Keypress Event of the textbox Like this, just modify a little to suit your need

Code:
    Public Function LettersOnly(ByVal myChar As Char) As Boolean
        Dim allowedStr As String = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ. "
        If allowedStr.IndexOf(myChar) > -1 OrElse myChar = vbBack Then
            Return False
        Else
            Return True
        End If
    End Function

Then in your Textbox Keypress event add this
Code:
e.Handled = LettersOnly(e.KeyChar)

Hopes this helps
 
Boss sa VB po pala paano yung pwedi letters only upper and lowercase can backspace, space and perio "." or dot???
for textbox po kasi name validation

sir try mo aralin ung askey e2 example
Select Case KeyAscii
Case 48 To 57, 8
'allow numbers to pass through
Case 92 To 122
'allow letters to pass through
Case Else
KeyAscii = 0
'traps non selected characters
hanapin mo na lng sa net ung code nila
pati para sa validation use trim for spaces
 
Back
Top Bottom