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!

hi.. Thx poh sa thread na to. Mlaking tulong to sa mga ktulad kong ngaarl plang ng programming.. May upcoming p nman kaming thesis.. Accounting system. Di ko po kasi alm pano mgsisimula. Thx poh..
 
e concatenate mo po sya...

try mo ganito sir:

Text1.Text = Combo1.Text & vbCrLf & Combo2.Text & vbCrLf & Combo3.Text

saka dapat naka multi-line yung textbox mo

yung "vbCrLf" parang enter key yan equivalent sa chr(13)


sana maka tama ^_^


dagdag mo na rin ang pagcheck kung may pinili ba ang user from that combobox before mo iconcatenate. check mo lang kung ang ListIndex ng combobox ay greater than 0 (this means may sinelect sya assuming na yung 1st item mo sa combobox is yung category nung combobox na yun like processors, motherboards, etc).
 
Hello ano ang steps in connecting mysql and vb6? tried to search sa net pero di ko tlga naiintindihan eh.

:(
 
guys may tanong ako sa VB6, Paano gawin yung sa isang form lang tapos pag kinlick yung next button mapupunta sa bagong frame pero hindi siya form. kailangan ko kasi ng maraming frame eh.
 
guys may tanong ako sa VB6, Paano gawin yung sa isang form lang tapos pag kinlick yung next button mapupunta sa bagong frame pero hindi siya form. kailangan ko kasi ng maraming frame eh.

Code:
Private Sub CmdFrame1_Click()
Frame1.Visible = True
Frame2.Visible = False
End Sub

Private Sub CmdFrame2_Click()
Frame1.Visible = False
Frame2.Visible = True
End Sub

kung ako sayo gumamit ka nalang kaya ng SSTab or TabStrip
 

Attachments

  • Frame.rar
    1.3 KB · Views: 3
pano maglagay ng Password sa form1? pg pu2nta ako ng form1 galing form2. pa help po thnx!
 
pano maglagay ng Password sa form1? pg pu2nta ako ng form1 galing form2. pa help po thnx!

explain mo mabuti ang design mo, malabo
saka bakit mo dadalhin ang password papunta sa ibang form?
gusto mo ba ma hack ang password mo?
 
install mo muna ung connector ng MySQL ung DL mo sa link ng mysql

tapos ganito gawin mo

dim cn as new adodb.connection <---- variable na gamit mo para connect ng database


cn.open "sConnection.Open "Driver={MySQL ODBC 3.51 Driver};Server=<sServer>;Database=sDBASE ;User=sUserName;Password=stPWD;"


tama si sir Eric....
 
Last edited:
@Sir Eric...

Sir ok lang po ba gamitin ung

ADODB.Stream para pag.save ng Image sa Database?
 
Patulong naman sa code pag tumama yung bola dun sa edge ng frame mag bobounce, basta babanda siya pag tumama siya dun sa may dulo. Image lang yung bola
 
Last edited:
hi.. Thx poh sa thread na to. Mlaking tulong to sa mga ktulad kong ngaarl plang ng programming.. May upcoming p nman kaming thesis.. Accounting system. Di ko po kasi alm pano mgsisimula. Thx poh..

hwag mo muna isipin ang coding, do the design first,
dont talk to programmers muna,
talk to people na marunong sa accounting, from cpa to bookkeepers

layout all the infomation that you will need, determine how each information flows in and out of your system and how and what your system will do with those information

determine how each infomation are related to each other
breakdown your system into separate modules
list what these modules do

ganyan mag umpisa, analisys muna

pag ok na lahat yan then saka ka bumalik dito at tutulunagan ka namin sa coding
 
sir pahelp po sa pagaadd ng books..

ahm, ndi po kc lumlbas agad sa ListView ung book na bagong add...

kailangan mo pa po ulit i-load ung form pra mkita...
 
Mga master patulong po sa simple countdown timer! Start lang po siya ng 10 hanggang 0 tapos magtitime's up na! Help po please!!
 
madali lang sa SQL commands yan

date1 = date 3 months ago = "7/24/2010'
date2 = date today = "9/24/2010"

pwede rin date1 = date2 - 3months

figure out the DateDiff part nalang

eto yung SQL Query mo, change variables as needed:

SELECT COUNT(*) AS RecCount FROM XXXTABLEXXX WHERE XDATEX BETWEEN 'date1' AND 'date3'

======
the
SELECT COUNT(*) query
will return the number of records within the specified criteria

that query when RUN in a recordset will give a table with single column named 'RecCount '
whose single row will give the number of records

learn SQL commands, mas malyo mararating nyo pag marunong kayo nyan
pwede nyo galawin any database using SQL commands

sir good day, question lang ulit. dont know what did i done wrong kc from my codes: this is regarding pa rin dun sa previous question ko and you answered it and did your advice.


Private Sub Command1_Click()

Dim sql As String
Dim cn As New ADODB.Connection
Set cn = New ADODB.Connection
cn.ConnectionString = strConn
cn.Open
Dim rst As ADODB.Recordset

If DTPicker1.Value = "dd/mm/yyyy" And DTPicker2.Value = "dd/mm/yyyy" Then

Set rst = cn.Execute("SELECT COUNT(*) as RecCount FROM " & _
"NOSAuto WHERE Date_Encoded BETWEEN dtpicker1 and dtpicker2", , adCmdText)
Label3.Visible = True
Label5.Visible = True
Label3.Caption = rst.Fields(0)
rst.Close
Exit Sub
End If
End Sub

when i clicked the command1 supposed to be na expected output ko is ung bilang nung volume sa database ko na nakaadress sa column na Date_Encoded depende dun sa covered dates that i entered or inputted using dtpicker1 and dtpicker2. pero walang output or bilang kung ilan na lumalabas dun sa label3 ko...

thanks sir. regards>
 
Back
Top Bottom