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!

boss bago lang...form1 for display... pano naman po ang code ng form2 kung mag a add data ka lamang? access po ang database ko at visual basic 2010... tnx in advance:pray:
 
Gusto ko po sana matuto ng SQLServer? Ano po gamit nitong tool? or Application?
 
boss bago lang...form1 for display... pano naman po ang code ng form2 kung mag a add data ka lamang? access po ang database ko at visual basic 2010... tnx in advance:pray:

add data by using the INSERT INTO SQL statement
 
Good Morning,,, Sir is it possible for me to post or connect my form to internet?

or should I say to have my form post in the web, just like having a form of registration?

can it be? and how? do I need to use ASP.NET or what?

thanks..
 
Good Morning,,, Sir is it possible for me to post or connect my form to internet?

or should I say to have my form post in the web, just like having a form of registration?

can it be? and how? do I need to use ASP.NET or what?

thanks..

ang gulo neto.. itagalog mo na lng kaya?
eto isang suggestion..
gawa ka ng separate mo na application, any web development tools(asp,php,etc..)
bale ang mangyayare lng eh iisa lng ang database nila...
Desktop Application<---->DB(depende kung naka remote access ko or asa hosting site ang db mo)<----->Web Application
 
Good Morning,,, Sir is it possible for me to post or connect my form to internet?

or should I say to have my form post in the web, just like having a form of registration?

can it be? and how? do I need to use ASP.NET or what?

thanks..

Using ASP.Net pwede mo magamit syntax mo sa VB.Net import ka lang ng system.data para di magerror if ever na gumamit ka ng dataset etc...
 
Good Morning,,, Sir is it possible for me to post or connect my form to internet?

or should I say to have my form post in the web, just like having a form of registration?

can it be? and how? do I need to use ASP.NET or what?

thanks..

yes sir you can,
see your yahoo messenger? its a form based app but connects to internet for data

you can use xml webservices, SOAP or WCF to call remote functions from your form app.

-- @ericgmejia (nasa bahay ni rockmode)
 
Last edited:
yes sir you can,
see your yahoo messenger? its a form based app but connects to internet for data

you can use xml webservices, SOAP or WCF to call remote functions from your form app.

-- @ericgmejia (nasa bahay ni rockmode)

hhe.. oh, Thanks sir, I'll try it later...

:salute:
 
Good Eve, sir is there any tutorial for Console Application?

para mas madali ku maintindhan yung function nya saka nun sa ASP.Net,

or post some example of it para mapag aralan ku thanks pu sir
 
sa tingin ko advice lang baguhan palang ako sa vb.net mas maganda po sana kung amy group tayo sa facebook para nasasagot po agad. sana lang hehe
 
sa tingin ko advice lang baguhan palang ako sa vb.net mas maganda po sana kung amy group tayo sa facebook para nasasagot po agad. sana lang hehe

problema lang \
1. mahirap mag post ng code sa FB
2. di mo ma qoute kung kanino ka nagrereply
3. mahirap hanapin mga past posts

pero i think ok naman kung simpleng question and answer siguro
then push back dito for detailed replies
 
Last edited:
problema lang \
1. mahirap mag post ng code sa FB
2. di mo ma qoute kung kanino ka nagrereply
3. mahirap hanapin mga past posts

pero i think ok naman kung simpleng question and answer siguro
then push back dito for detailed replies

hhe,, yeah,, peru I think mas maganda nga yung may group din sa Facebook for more expansion,, hhe

uhm, diba YOu have a page in FB sir eric?

I've like it some other time when I am asking a help from you.
:salute:
 
sir ask lng po ...
how to change the color of selected value in combobox ? pag ni click ung submit button ?


maraming salamat po sa mkakatulong :excited:
 
hhe,, yeah,, peru I think mas maganda nga yung may group din sa Facebook for more expansion,, hhe

uhm, diba YOu have a page in FB sir eric?

I've like it some other time when I am asking a help from you.
:salute:

yes i have fb, pero di ako nagpopost dun about VB or anything about programming

i answer questions sa fb messanger most of the time pero di ko pinopost

mas marami actually nagpapaturo sa YM
 
sir nagpoprogram po ako ng pinging application ang problem po eh d nagloloop yung mga adreess eto po yung code ko sana po matulungan nyo ako,,bago lang po..
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim proxies As String = TextBox2.Text
Dim proxies2() As String
proxies2 = proxies.Split(New [Char]() {" "c, ","c, ":"c, Environment.NewLine, CChar(vbTab)})
Dim i As Integer
Dim thiscollection As New Collection

For i = 0 To proxies2.Length - 1
Do

If My.Computer.Network.Ping(proxies2(i)) = False Then

MessageBox.Show(proxies2(i) & "sucessful")


End If
MessageBox.Show("success")

Loop

Next
End Sub
 
sir nagpoprogram po ako ng pinging application ang problem po eh d nagloloop yung mga adreess eto po yung code ko sana po matulungan nyo ako,,bago lang po..
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim proxies As String = TextBox2.Text
Dim proxies2() As String
proxies2 = proxies.Split(New [Char]() {" "c, ","c, ":"c, Environment.NewLine, CChar(vbTab)})
Dim i As Integer
Dim thiscollection As New Collection

For i = 0 To proxies2.Length - 1
Do

If My.Computer.Network.Ping(proxies2(i)) = False Then

MessageBox.Show(proxies2(i) & "sucessful")


End If
MessageBox.Show("success")

Loop

Next
End Sub

ano value ng Textbox2.Text?
 
Back
Top Bottom