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!

Exclusively for Visual Basic 6.0 Programmers Only!

sir joker,, use
edit.gif
EDIT button, wag po tayo mag multi-posting.. mawawarningan ka niyan.. OK?? :punish:


dito ka request ng serial,keygen,crack para maging full version na yun..

http://www.symbianize.com/showthread.php?t=84592

ooops ok... salamat po.. wala po ba kayo ng crack na?

tsaka po sa tungkol po sa posting sorry po.. magkakahiwalay po kasi ng oras nung pinost ko yun, kaya instead na edit quick reply po ginamit ko... di na po mauulit.. thanks! penge po ng OSENXP....
 
Guys tan0ng lang po ako ulet. . .Pano po ito gawin sa vb?

> ex. Sa text box nag input poako ng 2. . .
>tapos may mag appear po na 2 text box . . .
> kung ilan po ung input ko ganun din po ung magaappear na text box. . .
:thanks:

ps. Meron po bA kau jan example program na inventory/monitoring system? :thanks: pauattached naman po. . .:thumbsup:

>at meron po bA kau .Ocx nang aerobutton? :thanks: again. . .
 
Guys tan0ng lang po ako ulet. . .Pano po ito gawin sa vb?

> ex. Sa text box nag input poako ng 2. . .
>tapos may mag appear po na 2 text box . . .
> kung ilan po ung input ko ganun din po ung magaappear na text box. . .
:thanks:

ps. Meron po bA kau jan example program na inventory/monitoring system? :thanks: pauattached naman po. . .:thumbsup:

>at meron po bA kau .Ocx nang aerobutton? :thanks: again. . .

try to read about load and unload object..

para pag naginput ka for example ng 3, may 3 textbox na lalabas..
 
wala pa ko alam dyan eh...familiar ako sa ADODC.... sakop ba un ng VB? wah.... noob ako sa VB eh kasi more on HTML ako...
 
wala pa ko alam dyan eh...familiar ako sa ADODC.... sakop ba un ng VB? wah.... noob ako sa VB eh kasi more on HTML ako...

eto sample ng ADODB Connection..(nasa module po yung code para sa connection)
 

Attachments

  • Sample ADODB.zip
    19.9 KB · Views: 236
marunong po ba kayo nung Client Server based applications? Yung sa paggamit po nung winsock??:help:
 
Boss...pwede patulong, paano gumawa ng COMPUTERIZED BIO DATA...input lang sa may fields then print out yung bio data with filled informations..thanks!
 
eto sample ng ADODB Connection..(nasa module po yung code para sa connection)

tropa simple lang sya ... di ko lang maintndhan code sa module ...ung mga declared na con d ko lam kung para san....
 
Ginamit lan un para dun ilagay ung connection string. . . Para mas madali magtype pag nid m0 sya ulet tawagin. . .Pakicorrect nalang kung mali. . .:thanks:
> sana po may sumagot sa tan0ng ko asa previous page po. . :thanks:
 
tropa simple lang sya ... di ko lang maintndhan code sa module ...ung mga declared na con d ko lam kung para san....

Option Explicit
Public con As New ADODB.Connection yung con yung name ng connection
Public rsSample As New ADODB.Recordset yung rsSample yung name ng table sa database (named PERSON_INFO)
Public rsParent As New ADODB.Recordset yung rsparent yung name ng table sa database(named PARENT)
Public bookmark1 As Variant
Public bookmark2 As Variant

Public Sub Connect()
con.Open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\Sample.mdb;Persist Security Info=False" ito yung pinakaconnection from database to VB..
con.CursorLocation = adUseClient
rsSample.Open "Select * from PERSON_INFO", con, adOpenDynamic, adLockPessimistic bubuksan yung rsSample para magamit.
rsParent.Open "Select * from PARENTS", con, adOpenDynamic, adLockPessimistic same with rsSample..
End Sub
 
Last edited:
patulong lang po ako sino po marunong kung pano gumawa nang database sa microsoft access using vb6? salamat po sa mag reply
 
hello magandang araw., gusto ko po sanang matuto ng pag gawa ng rpg sa VB vb 6 po ang gamit ko., merun po ba kaung tutorial kahit ung basics lang po katulad ng papalakarin po ung character mo saka ung collisiondetection po. . saka mag tatanong narin po ako kung anung application pwedeng gawin para sa project namin sa softwen namin., visual basic 6 po sana ang gagamitin
 
tol pa help naman d2 sa assignment ko. yung code lng need ko para mapag aralan ko. :praise:



PROGRAM DESCRIPTION
Write a program that will ask for 10 integers and display the sum of all odd numbers, even numbers and all the input integers. Use the examples provided below to check your program.
OUTPUT
Example 1
Enter ten (10) integers: 1 2 3 4 5 6 7 8 9 10
The sum of ODD numbers is 25.
The sum of EVEN numbers is 30.
The sum of all input numbers is 55.
Example 2
Enter ten (10) integers: 12 8 9 2 5 7 15 23 29 30
The sum of ODD numbers is 88.
The sum of EVEN numbers is 52.
The sum of all input numbers is 140.
 
tol pa help naman d2 sa assignment ko. yung code lng need ko para mapag aralan ko. :praise:

download nyo nlng po yung attachment ko..hehe sana nkatulong ako. .

-------------------------------------------

sa mga magaling dyan sa database sa ADODC pahelp naman po :(
paano po ba ma-checheck yung database kung empty po cya o may entry. .
 

Attachments

  • sum.rar
    1.7 KB · Views: 129
Last edited:
Back
Top Bottom