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!

Mga Master

Meron akong FileWatcher na application at Shared Folder "Map Folder"

Gusto ko sana malaman yung mga user na nagmomodify " Create, Delete, Rename " ng mga files sa shared folder ko Programmatically.

For monitoring.

If ever na magawa ko to another level naman ng Monitoring yung gagawin ko :)
 
baka may sample tabulation system po kayo using vb for cultural competitions, thank you po.. :)
 
pano po ikonek ung vs20008 vb.net using ms access 2007?? beginner lng po ako! thanks
 
mga sir tanong ko lang po if possible ba to...

kapag knlick ko ung isang button may mag-aappear na text na hindi na lalabas sa bagong form. ung dun lang sya sa isang form at the same time kasama nya din ung button na nakalagay dun?

salamat po sa sagot. hehehe. :help:
 
mga master, pede mo humingi nang tulong?posible po ba yung gusto kong mangyari?

ito po sana gusto kong mangyari, mag ssearch po ako sa textbox na nakarelate sa isang fieldname ko sa database, if hindi niya po ma search, automatic iaadd niya po sa database.. posible po ba yun?if yes, pede po pahingi nang tulong?

ito po code ko..

Dim Table As New DataTable
Dim DSet As New DataSet
DSet.Tables.Add(Table)
Dim sqlAdapter As New OledbDataAdapter("SELECT * FROM ProductsMaster",con)
sqlAdapter.fill(Table)

Dim DRow as Datarow

txtSearch.AutoCompleteCustomSource.Clear()

For Each DRow In Table.Rows
-----txtSearch.AutoCompleteCustomSource.Add(DRow.Item(3).ToString)
Next

:thanks: in advance mga master! sana me makatulong..^^,
 
mga sir tanong ko lang po if possible ba to...

kapag knlick ko ung isang button may mag-aappear na text na hindi na lalabas sa bagong form. ung dun lang sya sa isang form at the same time kasama nya din ung button na nakalagay dun?

salamat po sa sagot. hehehe. :help:

Yes pweden yan....

lagay mo to sa click event ng command button

Me.textbox1.text="text na gusto mo lumabas pag click ang command button"
 
Help:help:

Meron na akong code para nakapag send ng SMS gamit ang BULKSMS ung sms gateway.
at meron din code para sa usb modem(gagamitin lang sya pang back up ng txt in case na mawalang ng internet).
Paano ko sila pag sasamahin???


 
Sir ask lng po if paano magbawas ng 10 minutes and 5 minutes sa current time ng computer para makapagdisplay ng msgbox na magsasabi na malapit na magtime ung pc na gamit ng user.. thanks in advance.
 
Sir ask lng po if paano magbawas ng 10 minutes and 5 minutes sa current time ng computer para makapagdisplay ng msgbox na magsasabi na malapit na magtime ung pc na gamit ng user.. thanks in advance.


Code:
DateTime.Now.AddMinutes(-10)
DateTime.Now.AddMinutes(-5)
 
guys ! ano bang mas maganda at mas madaling gamitin sa vb.net 2012. data report o crystal report? thank u sa magrereply.
 
ako po ay isang c0mputer pr0gramming student, 2 year c0urse, aware aq sa vb.net, sa thread na ito marami me pwd ma22nan, dagdag kaalaman,
 
sir wintaburr, paano po mag bind nang textbox sa isang field ko sa access database? :thanks: in advance!
saka po yung isa ko pong query sa previous page, posible po ba yung gusto kong mangyari?
 
sa form_load or sa properties, pwede mong i-set ung .Visible=False:
Code:
Label.Visible=False
TextBox1.Visible=False
tapos set mo yan as .Visible=True sa Button1_click event

sir salamat po ta-try ko na to ngayon. hehehe. :salute: :salute: :salute:
 
Patulong naman guys,

I've the sample image below , pa help naman pano isave multiple records sa datagrid to mysql database

l6VMRWx.png



I'm using vb.net 2008 with Navicat 8 Mysql :help:

I know how to save and fetch records from database to datagrid pero di ko alam pano mag save ng multiple records sa datagrid to database pa help naman poh please :help:
 
Last edited:
Back
Top Bottom