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!

for example

string s = "John";
s += "Dela Cruz";

sa memory mo naka instantiate yung "John" at "John Dela Cruz" so magastos sa memory

parang ganito kung titignan natin sa isang hash table

|1|John|
|2|John Dela Cruz|

kung nag String Builder ka
|1|John Dela Cruz|

lang ang nasa memory mo

-----------
ibig savhn mas maganda if diretso ung query kaysa gagamitan pa ng mga signs like "&" "+" tama po ba?
 
-----------
ibig savhn mas maganda if diretso ung query kaysa gagamitan pa ng mga signs like "&" "+" tama po ba?

kaya nandyan si string builder kahit para magamit mo yung concatenation ng hindi naccreate ng maraming instance sa memory

Stringbuilder sb = new Stringbuilder();
sb.Append("John");
sb.Append("Dela Cruz");

ang sb na ngayun ay "John Dela Cruz" pero ang nasa memory mo ay isang instance lang
 
kaya nandyan si string builder kahit para magamit mo yung concatenation ng hindi naccreate ng maraming instance sa memory

Stringbuilder sb = new Stringbuilder();
sb.Append("John");
sb.Append("Dela Cruz");

ang sb na ngayun ay "John Dela Cruz" pero ang nasa memory mo ay isang instance lang
--------------
ayun..maraming salamat po ulit sir..
matanung q lng po anu po ba ang dapat na version ng visual studio para magkaroon aq ng crystal report template..nakapag install na po kxe aq ng crystal report for vb.net 2010.pero nd q po makita ung template nya..
 
bakit ganun.. when i use 1 to many relationship pagyung isa dinadagdagan ko yung tapos nagdagdag din ako sa isa ibang naman dagdag.. for example the product, customer name and transaction

naka relationship yung transaction ko sa product and customer
when i add a transaction from the dataset na naka relate sa product product lang ang nafifill sa transaction ayaw naman ng customer, ganun din sa isa. vice versa lang
 
bakit ganun.. when i use 1 to many relationship pagyung isa dinadagdagan ko yung tapos nagdagdag din ako sa isa ibang naman dagdag.. for example the product, customer name and transaction

naka relationship yung transaction ko sa product and customer
when i add a transaction from the dataset na naka relate sa product product lang ang nafifill sa transaction ayaw naman ng customer, ganun din sa isa. vice versa lang

hindi automatic yan. iquery mo parin based on the relationships sa table mo, use joining
 
hindi automatic yan. iquery mo parin based on the relationships sa table mo, use joining

nasanay kasi ata siya using table adapters kaya hindi niya napapansin ung nangyayari...
 
newbie question lang po... pwde ko po ba iinstall ung vb at sql ng 32bit sa 64bit na OS? thanks po..
 
newbie question lang po... pwde ko po ba iinstall ung vb at sql ng 32bit sa 64bit na OS? thanks po..

mas ok kung 64 bit na din iinstall mo para wala ka ng problema in the future..
 
I'd like to suggest that when connecting or joing a string, use ampersand "&" instead of plus "+"... It would increase performance...:)

Ofcourse. but that will only apply in VB.Net

(I was thinking in c# while editing the code above. My bad)
 
pahingi po ng sample codes o system na AIS (accounting information system po) na gawa sa .net 2008 o 2010 at mySQL ang database. at naga generate ng reports sa crystal reports . na ledger, cash flows, chart of account at bank transaction..

o mga books po about sa connection ng mysql at crystal report po sa vb 2010.. pls po...

magbibigay po ako ng 500 php or mataas pa basta meron po.. kailangan ko po kc pag aralan.. para po sa thesis.. namin..

ito po email ko. [email protected] or [email protected]

o kaya txt nyo po ako sa number ko 09099273636..
 
pahingi po ng sample codes o system na AIS (accounting information system po) na gawa sa .net 2008 o 2010 at mySQL ang database. at naga generate ng reports sa crystal reports . na ledger, cash flows, chart of account at bank transaction..

o mga books po about sa connection ng mysql at crystal report po sa vb 2010.. pls po...

magbibigay po ako ng 500 php or mataas pa basta meron po.. kailangan ko po kc pag aralan.. para po sa thesis.. namin..

ito po email ko. [email protected] or [email protected]

o kaya txt nyo po ako sa number ko 09099273636..


Meron akong sample program in VB.Net 2008 using MySQL database and Crystal Report..
 
bgyan nyo naman ako ng programme na calculator and USERNAME:
PASSWORD:
button nya is CANCEL and OK.. USING VISUAL BASIC 6.0 thank you!!! sa magbibigay :)) :clap: :salute:
 
Last edited:
this is nice thread next year.mag aaral ako ulit thesis na naman..
hanap ako dito may ng mga solution... laking tulog toh..
 
guys paturo po kng panu guma ng calculator sa vb.net.step by step tutorial po sana.kht yn mn lng nag matutunan ko sa vb.net:weep::weep::weep::weep::weep::slap::slap::slap: satisfyd nko..plzzzz mga bossing
 
Back
Top Bottom