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!

You don't need to memorize any codes, you just need to understand how they works.
And the most important, meron ka dapat logical skills to understand the flow/process of any system.



Sige po, ask ka lang...

May Programming class po kasi kami and on our finals, we are asked to make our own programme. Defence na namin this Monday. Ang napili ko ay 'yong very basic na restaurant point of sale, by the way, VBA din gamit namin, kaso sa excel kami gumagawa ng programmes, I think pareho lang naman. Yung database ko is nasa excel's worksheet; bali andun 'yung:Item Code, Product Name. Prize etc.
Ang tanong ko:
Paano ba itatransfer ung data dun sa worksheet papunta sa vba excel. Alam ko medyo magulo, pero sana may makatulong.
Many many many Thanks para sa makasagot sa napakasimpleng tanong ko.
 
Sir Patulong po,


PAano ko po ba babaguhin ang color ng digit kapag na'hit nya ung gusto kong value.

Say for instance meron akong stopwatch ,then kapag na'hit nya na ung 3.00.00 (min/sec/milisec) eh mag turn na ung mgadigits into red. parang palatandaan lang na lapse na ung given allowed time.

Hope makatulong po kau.

Pahingi po ng code and statement.

Salamat po
 
Dapat sa Command Button mo yung pagbukas ng Form,
then sa Form mo na nabuksan ang code para sa timer.

ahh sige po testing ko po !! kasu alam ko may magbabago sa code eii !! kaya pa help nalang po kung ano yung magiging mali ahh
 
pa off topic may VB ba kayo na pang 64bit? na working? yung sa ibang threads sira na mga link eh
 
This thread is open for all vb programmers. .you can post anything you like as long as it is related with Visual Basic 6.0 Programming. .Assignments and tutorials are accepted. .


So mga Visual basic Programmers tambay na po kayo dito. .hehe

may alam akong konti dito kya tambay din ako :D
 
Sir Patulong po,


PAano ko po ba babaguhin ang color ng digit kapag na'hit nya ung gusto kong value.

Say for instance meron akong stopwatch ,then kapag na'hit nya na ung 3.00.00 (min/sec/milisec) eh mag turn na ung mgadigits into red. parang palatandaan lang na lapse na ung given allowed time.

Hope makatulong po kau.

Pahingi po ng code and statement.

Salamat po

label ba yan? pwede mo to itry

Code:
if i>2999 then 
 label.forecolor = vbred
end if
 
Last edited:
May Programming class po kasi kami and on our finals, we are asked to make our own programme. Defence na namin this Monday. Ang napili ko ay 'yong very basic na restaurant point of sale, by the way, VBA din gamit namin, kaso sa excel kami gumagawa ng programmes, I think pareho lang naman. Yung database ko is nasa excel's worksheet; bali andun 'yung:Item Code, Product Name. Prize etc.
Ang tanong ko:
Paano ba itatransfer ung data dun sa worksheet papunta sa vba excel. Alam ko medyo magulo, pero sana may makatulong.
Many many many Thanks para sa makasagot sa napakasimpleng tanong ko.

Please do check my signature, my sample application for Canteen/Food Chain POS Free Application in VB6, it might help. :)
Good luck!
 
Sir eto po ung codes ko. ndi ko mai'apply ung sinabi mo eh laging error. hindi ko alam kung sang form ko insert.

Private Sub Command1_Click()
If tmrTimer.Enabled Then
tmrTimer.Enabled = False
Else
tmrTimer.Enabled = True
End If
End Sub

Private Sub CmdClear_Click()
txtHour = "0": txtMinute = "0": txtSecond = "0"
End Sub


Private Sub Form_Load()
txtHour.Font = "Arial"
txtHour.FontSize = 90
txtHour.Alignment = vbCenter
txtHour.Text = "0"
txtHour.Enabled = False
txtHr.FontBold = True

txtMinute.Font = "Arial"
txtMinute.FontSize = 90
txtMinute.Alignment = vbCenter
txtMinute.Text = "0"
txtMinute.Enabled = False
txtMin.FontBold = True

txtSecond.Font = "Arial"
txtSecond.FontSize = 90
txtSecond.Alignment = vbCenter
txtSecond.Text = "0"
txtSecond.Enabled = False
txtSec.FontBold = True
tmrTimer.Enabled = False


End Sub

Private Sub tmrTimer_Timer()
txtSecond.Text = txtSecond.Text + 1
If txtSecond.Text > 59 Then
txtMinute.Text = txtMinute.Text + 1
txtSecond.Text = "0"
If txtMinute.Text > 59 Then
txtHour.Text = txtHour.Text + 1
txtMinute.Text = "0"
End If
End If
End Sub



Salamat po
 
wala bang may installer ng visual basic 6 for 64bit?

Hindi ba gumagana ang mga ito?
http://www.symbianize.com/showthread.php?t=434272&highlight=Visual+Basic
http://www.symbianize.com/showthread.php?t=920666&highlight=Visual+Basic

and this workaround?
http://www.derekwirch.com/2009/06/install-vb6-on-windows-7.html

- - - Updated - - -

Sir eto po ung codes ko. ndi ko mai'apply ung sinabi mo eh laging error. hindi ko alam kung sang form ko insert.

Private Sub Command1_Click()
If tmrTimer.Enabled Then
tmrTimer.Enabled = False
Else
tmrTimer.Enabled = True
End If
End Sub

Private Sub CmdClear_Click()
txtHour = "0": txtMinute = "0": txtSecond = "0"
End Sub


Private Sub Form_Load()
txtHour.Font = "Arial"
txtHour.FontSize = 90
txtHour.Alignment = vbCenter
txtHour.Text = "0"
txtHour.Enabled = False
txtHr.FontBold = True

txtMinute.Font = "Arial"
txtMinute.FontSize = 90
txtMinute.Alignment = vbCenter
txtMinute.Text = "0"
txtMinute.Enabled = False
txtMin.FontBold = True

txtSecond.Font = "Arial"
txtSecond.FontSize = 90
txtSecond.Alignment = vbCenter
txtSecond.Text = "0"
txtSecond.Enabled = False
txtSec.FontBold = True
tmrTimer.Enabled = False


End Sub

Private Sub tmrTimer_Timer()
txtSecond.Text = txtSecond.Text + 1
If txtSecond.Text > 59 Then
txtMinute.Text = txtMinute.Text + 1
txtSecond.Text = "0"
If txtMinute.Text > 59 Then
txtHour.Text = txtHour.Text + 1
txtMinute.Text = "0"
End If
End If
End Sub



Salamat po

Dun sa Timer mo isingit yung condition..
 
Help po!! VB6.0

link nmn po san pede madownload ang VB 6.0 maraming salamat po mga idol
 
Re: Help po!! VB6.0

sir patanong nman ako.. may ginagawa kasi ako na project maliit lang sya scan, save and send to outlook email.. ang prob ko need ko integrate yung program sa outlook para sa twing mag e scan ako hindi na magpop up yung outlook, any idea sir kung pano? isa pa ho pala possible ba na makapagsend ako ng data papunta sa outlook email ng walang nakainstall na outlook sa PC source ng program?
 
Re: Help po!! VB6.0

sir patanong nman ako.. may ginagawa kasi ako na project maliit lang sya scan, save and send to outlook email.. ang prob ko need ko integrate yung program sa outlook para sa twing mag e scan ako hindi na magpop up yung outlook, any idea sir kung pano? isa pa ho pala possible ba na makapagsend ako ng data papunta sa outlook email ng walang nakainstall na outlook sa PC source ng program?

Ang ginawa ko dati, para di mag-pop-out ang outlook, nag-install muna ako ng ClickYes.

Sa 2nd question, di ko pa na-try, pero baka pwede..
 
Re: Help po!! VB6.0

hello sir kakainstall ko lang ng vB6 .. limot ko na mag VB eh may tips ba kayo para gmaling sa pag program sa VB?
 
Re: Help po!! VB6.0

hello sir kakainstall ko lang ng vB6 .. limot ko na mag VB eh may tips ba kayo para gmaling sa pag program sa VB?

Gawa ka muna ng mga simple math computations, then apply loops, then sequential file and then samahan mo na ng database.
 
Re: Help po!! VB6.0

Thanks ser tanong nalang ako pag may hindi ako alam
 
Last edited:
Back
Top Bottom