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!

VB.NET Programming Corner!

ako po pde pa help... pde po ba makahingi ng sample ng program that use if-else,case and else-if... kahit po tag iisa lng.. gusto ko lng pagaralan kc walng kwenta prof namin e. nd ko maintindihan.. kahit ung basic lng po.. salmat
 
ako po pde pa help... pde po ba makahingi ng sample ng program that use if-else,case and else-if... kahit po tag iisa lng.. gusto ko lng pagaralan kc walng kwenta prof namin e. nd ko maintindihan.. kahit ung basic lng po.. salmat
bago lang po aq dito..sana makatulong tong sample ko...

if-else and else-if sample:

Dim X as Integer = 0
if X = 0 then
msgbox("Variable X is equal to zero")
elseif X > 0 then
msgbox("Variable X is greater than zero")
else
msgbox("Variable X is not equal or greater to zero")
end if

Select Case is just similar to if-elseif-else statement but in a simpler and more manageable code compare to if-else suitable for many conditions to meet:

dim X as integer = 0
Select Case X
Case 0 'if ang condition is "=" only
MsgBox("Variable X is equal to zero")
Case Is > 0 'if gamitin mo nang conditions such as (<, >, >=, <=)
MsgBox("Variable X is greater than zero")
Case Else 'if di ma meet and conditions mo
MsgBox("Variable X is not equal or greater to zero")
End Select

Sana po makatulong..
 
salamat tol.. panu naman kapag may checkbox ka o kaya ay radio button nd ko kc magets kung anu gagawin pag ganun..
 
If CheckBox1.Checked = True Then
MsgBox("Checkbox is checked")
End If
If RadioButton1.Checked = True Then
MsgBox("radio button is checked")
End If
 
mga boss tama po ba na ang visual basic 2008 at vb.net ay pareho lang??
 
yup pariho lang...visual basic 2008 means it supports .net framework 3.5 and in connections to its IDE ang Visual Studio 2008,...
 
sir nadownload ko na yong vb 2008 express edition poh... paano po magsimula sir...gusto ko kc matuto sir. need help po sir... tnx
 
Download the files from the first page of this thread, study the example,
when you encounter something na hindi mo naintindihan,
balik ka dito, post mo yung tanong mo....
:) Good Luck!
 
mga sir paano po gumawa ng dataset and data reader sa vb 2008 express edition poh... gusto ko kasing matoto.
 
Sino po marunong dito na gumawa ng proxy tester using VB.Net? :help:
 
sir gusto ko sana matoto kong paano gamitin ung dataset and data reader po sa vb 2008 express edition poh... gusto ko gumawa ng program na nagrerecord, edit, find, save, and display data in data grid. pls help mga sir.... tnx
 
ask ko lng po kung alm nyo rin ung vb.net ung form para sa log in log out ung code. isa sa admin at isa nmn sa staff with database acess. ung code po.. thnk you!!!
 
Back
Top Bottom