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!

Hi sir pwede po magpaturo kung pano ang importing ng excel sa vb papunta ng ms access thanks po
 
Question lng guys, its not about vb.Net its about 6.0..gumawa kasi aq ng pos and inventory system sa vb6.0, pwede q bang gamitin unh system sa multi-user. 3 computer at a time. .thank you

Pwede yan sir. Ano po gamit nyong DB? Try nyo po MySQL Workbench. Nasa privilege lang yan sir. Nakastatic po ung ip address sir.
 
I made this thread for all programmers starting their adventure in VB.NET.

Please post relevant and sensible questions regarding VB.NET,
share your knowledge and expertise, share codes and techniques.

Post question on HOW TOs:
How to do this or that, ill supply bits of code to accomplish basic tasks.

Ill be posting series of samples leading to complete applications,
your suggestions are encouraged.
These samples will contain codes relevant to other tasks as well.

Platform = VS2003 to VS2012

i suggest learn and get the feel of VB.NET/VISUAL STUDIO IDE first before posting questions,
so that we can talk on the same page.


Topics:
VB.NET Winforms (not Web Applications)
ADO.NET as applied in VB.NET
Crystal Reports on VB.NET
SQLServer as used in VB.NET
MSAccess as used in VB.NET
Classes
UserControls

Technologies:
Serial - like using SMS, Barcode and other hardware
TCP/IP - chat applications, sockets, internet applications
MSMQ - message queuing
Remoting - executing assemblies in other computer
WebServices - using webservices in windows forms
Multithreading - executing more than 1 process at the same time


Suggested Third Party Tools:
DevXPress 2009 Free Edition
SQLServer 2005 Express Edition

Suggested references:
http://www.homeandlearn.co.uk/net/vbnet.html
http://www.java2s.com/Tutorial/VB/CatalogVB.htm

I currently use Visual Studio 2008 only, but basic codes will apply to all versions

Please do not ask for a complete system,
instead use the codes and assistance that you will find here
to build your own system.


***Thanks to moderators, STICKY na ang thread!

Lets share knowledge so that we can be a more flexible and well rounded programmer. Be it for school or work.

Links:

First Post: Populating DataGridView using MSAccess Database
Second Post : Basic VB.NET MSAccess Tutorial
SQLServer Sample




Ano po ang kagandahan ng VB.net compare sa ibang programming language?
 
lahat nalang ng nakikita kong tanong dito googleable naman.. in short useless question.. gusto spoon feeding lage, millennial age nga naman
 
Sir ask lang sa proj namen we use laguage vb.net
Program po namen is timekeeping and payroll system using biometric
Problem is ung sa bio po di namen ma save ung fpt template ng bio sa mysql2014 namen at dko po alam kum paano conversion fpt temp para masave sa database :praise:
 
Ano po ang kagandahan ng VB.net compare sa ibang programming language?

problema sa vb.net for windows OS lang gagana. di tuloy puwede sa linux, mac etc. at lagi lang tinuturo sa universities.
buti pa c,c++,python,ruby cross platform sila
 
Sir,,, napabilib po ako sa thread nyu. sobra astig. actually c++ basic lng tlg ako may idea. now want ko po itry ang visual studio.. yung mamomonitor nya yung status ng mga machine sa company na pingtatrabahuhan ko po... pwede nyu po ba ako bigyan ng sample program kung paano or kahit tutorial video po sana kung meron... thanks in advance idol.
 
Thanks for sharing your Idea, i believe i would really learn so much from you as expert.. . ANd because of this, I was inspired to share here all my source code as to help those individual who are eager to learn more in programming. Especially in Visual Basic.Net or any higher version of it.
 
hi mga sir, pano po ma view yung 5 tables from ms access sa isang(1) datagridview (by that I mean 1 datagridview in 1 form), sa VB.net 2015?? salamat po sa tutulong😉🤗
 
Patulong naman po mga master sa VB.Net basic lng alam ko and self study lang. Meron ksi ako ginawang simple program para makapagscan ng barcode. Working naman for more than 1 year na. Ang problem ko lang is pag nagpapalit sila ng server need ko update ung connection string nya sa source code kasi hardcoded dun yung db access credentials. Naisip ko gumawa ulit ng isang apps para dun i enter ung db credential, yung mga value na ininput dun ang kukunin ni main application para sa connection nya sa database. Pano kaya gagawin un?
View attachment 337921
 

Attachments

  • Doc1.jpg
    Doc1.jpg
    84.9 KB · Views: 44
Patulong naman po mga master sa VB.Net basic lng alam ko and self study lang. Meron ksi ako ginawang simple program para makapagscan ng barcode. Working naman for more than 1 year na. Ang problem ko lang is pag nagpapalit sila ng server need ko update ung connection string nya sa source code kasi hardcoded dun yung db access credentials. Naisip ko gumawa ulit ng isang apps para dun i enter ung db credential, yung mga value na ininput dun ang kukunin ni main application para sa connection nya sa database. Pano kaya gagawin un?
View attachment 1246673

sa tingin ko merun kang 2 option para jan... first option save mo sa registry yung server credentials encrypt mo na lang yung sensitive info kung gusto mo, yung second option gawa ka ng table sa server for credential lang, mas Ok to kasi pwede maaccess ng program mo yung server as long as nakakaconnect sa server yung pc na magrurun ng program mo.

- - - Updated - - -

hi mga sir, pano po ma view yung 5 tables from ms access sa isang(1) datagridview (by that I mean 1 datagridview in 1 form), sa VB.net 2015?? salamat po sa tutulong����

Try to use sql join mas madali kasi yan at mabilis sa pag process.
 
Last edited:
Mga sir pwede po bang gumawa ng website for travel and tours ang vbnet ? Sorry noob po kasi ee
 
pa help naman po please begginers lang po.pwede patulog 1 week na ako diko ma solve ang program gusto ko sana ganito ang output..pa help naman please...

Public Class Form1

Dim num1 As Integer
Dim num2 As Integer
Dim ans As Single
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
num1 = TextBox1.Text
num2 = TextBox2.Text
ans = num1 + num2
MessageBox.Show("The answer is: " + ans) 'error here'

End Sub
End Class

Output:
The answer is: ?
 
pa help naman po please begginers lang po.pwede patulog 1 week na ako diko ma solve ang program gusto ko sana ganito ang output..pa help naman please...

Public Class Form1

Dim num1 As Integer
Dim num2 As Integer
Dim ans As Single
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
num1 = TextBox1.Text
num2 = TextBox2.Text
ans = num1 + num2
MessageBox.Show("The answer is: " + ans) 'error here'

End Sub
End Class

Output:
The answer is: ?

Replace "+" with "&"
 
hello sir/maam ano po kaya problema nitong error na to ayaw kasi mag insert or update tapos nag dodoble pa yung sa tax code

sana may makatulong salamat po :)
 

Attachments

  • error1.png
    error1.png
    85.3 KB · Views: 41
  • error.png
    error.png
    130.8 KB · Views: 34
Back
Top Bottom