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!

@ ILOVERAIN ---> Kung code po hanap ng kapatid mo try this one. andami vb programs d2.. http://www.planet-source-code.com/vb ... nagsusubmit ako dati ng code jan kaso nung ngkatrabaho na mejo naging bc...hehehe...

. . . . . . .
haha :rofl: jan ako kumuha, ng dinefense namin. .enrollment system. .inedit ko lang, at nilagyan ko nang opening and closing effect yung form .ahaha,para di halata (kinapus sa panahon )
 
Help Naman Diyan Sa Mga Masters Im Not Really A Visual basic Programmer Pero Medyo natuto ako sa tulong ng ebook so here is my question.

meron akong combo box na nagcocontain ng

help.jpg

Firefox
Google Chrome
Internet Explorer

ang gusto kong mangyari is when i click Google Chrome In The Combo Box And Click the "OPEN" Button Magoopen ung google chrome .
pano ma iispecify ung place nung google chrome? or specific place kng mag aad pa ko ng application

sana may makapag bigay ng code thanks!
 
Help Naman Diyan Sa Mga Masters Im Not Really A Visual basic Programmer Pero Medyo natuto ako sa tulong ng ebook so here is my question.

meron akong combo box na nagcocontain ng

help.jpg

Firefox
Google Chrome
Internet Explorer

ang gusto kong mangyari is when i click Google Chrome In The Combo Box And Click the "OPEN" Button Magoopen ung google chrome .
pano ma iispecify ung place nung google chrome? or specific place kng mag aad pa ko ng application

sana may makapag bigay ng code thanks!

Para magkaroon ka ng stable na specific path,
kailangan mo lang basahin ang registry path ng google apps:
Code:
[FONT="Courier New"]HKEY_CURRENT_USER\Software\Google\Update
Key name: Path[/FONT]
Diyan, ang makukuha mong value ay yung path ng Update Executable, ikaw na bahalang dumiskarte para tagpiin ang parte ng directory location.

Kung kinakailangan mo rin ng iba pang apps, search mo lang din sa registry(Registry Editor)
kadalasan sa reg path mo na 'to madaling makikita:
Code:
[FONT="Courier New"]HKEY_CURRENT_USER\Software[/FONT]

Tapos gumamit ka ng
Code:
[FONT="Courier New"][COLOR="Blue"]shell(...)[/COLOR][/FONT]
para naman sa execution ng browser app mo.

Hope it helps.

Best regards,
oxbadcode. :)
 
Mga Idol:salute:. Pa:help: po sa pag convert sa Text File to Excel.
Eto po yung sample format ng Text File:

201005040939040105-646A

Dapat po sa Excel ganito po:

20100504 | 0939 | 040105-646 | A


Noob lang kasi ako. Eto agad pinapagawa saken.
Thanks in advance!
 
Last edited:
Mga Idol:salute:. Pa:help: po sa pag convert sa Text File to Excel.
Eto po yung sample format ng Text File:

201005040939040105-646A

Dapat po sa Excel ganito po:

20100504 | 0939 | 040105-646 | A


Noob lang kasi ako. Eto agad pinapagawa saken.
Thanks in advance!

dapat my dilemeter ka.. tulad ng - or , or ;
 
Mga Idol:salute:. Pa:help: po sa pag convert sa Text File to Excel.
Eto po yung sample format ng Text File:

201005040939040105-646A

Dapat po sa Excel ganito po:

20100504 | 0939 | 040105-646 | A


Noob lang kasi ako. Eto agad pinapagawa saken.
Thanks in advance!

Madali lang yan,

para makuha mo ang data sa text file,
search ka "sequential file processing" or "Random Access File"
pwede ring ADODB codings, its a matter of connection string
then read mo ang laman nang text file, line by line
and store it in a string
then loop until EOF..

para ma extract ang data gamit ka nang Mid() function
let's assuume that S is a string
s = "201005040939040105-646A"

mid(s, 1, 8)

'makukuha mo ang 20100504

mid(s, 9, 4)
'=0939

hope na-gets mo, hehe.. tanong ka na lang, pag malabo
pero wag ka humingi nang codes.. ok?

:)
 
Gud pm Sir Eric and mga VB6.0 Masters,

Ask lng po sana ako ng konting help. Tanung ko lng po kung panu po ba gagawin sa listview ung maglocate ng data po? For example list of students. Once nakaset focus na sa listview po kapag ngpress ako ng any letters eh mgmomove ung list view sa letter na naprepress ko until mahanap ko ung correct last name nya po.

Give me some idea naman ko mga Masters. Salamat po in advance. :) :) :)
 
Public Sub LogIn()

Dim RecRst As New ADODB.Recordset

Set RecRst = New ADODB.Recordset

With RecRst

If txtUsername.Text <> "" Then

If .State = 1 Then .Close

.Open "Select * from Operator Where [Username]='" & txtUsername.Text & "' ", con, 2, 3

If .RecordCount = 0 Then

MsgBox "Invalid Username!", vbOKOnly + vbCritical, "LogIN"
txtUsername.Text = ""
txtPassword.Text = ""
txtUsername.SetFocus
Exit Sub

Else

If StrComp(.Fields("Password"), txtPassword.Text, vbTextCompare) = 0 Then
Set rec = New ADODB.Recordset
rec.Open "Select * from Restriction where Operator='" & txtUsername.Text & "' ", con, 2, 3


Do While Not rec.EOF
If !Operator = txtUsername.Text Then
Bodsdotnet.mnuAccountDetails.Enabled = !Check1
Bodsdotnet.mnusalesreport.Enabled = !Check2
frmSalesReport.cmdEdit.Enabled = !Check3
frmSalesReport.cmdDelete.Enabled = !Check3
Bodsdotnet.mnuMaintenance.Enabled = !Check4
Bodsdotnet.mnuworkstation.Enabled = !Check5
Bodsdotnet.btngencode.Enabled = !Check6
Exit Do
Else
rec.MoveNext
End If
Loop
Bodsdotnet.lbluser.Caption = txtUsername.Text
Bodsdotnet.Caption = "Bodsdotnet Cafe" & " - " & txtUsername.Text
Unload Me
.Close
Exit Sub

Else

MsgBox "Invalid Password!", vbOKOnly + vbCritical, "LogIN"
txtPassword.Text = ""
txtPassword.SetFocus
Exit Sub

End If



End If

MsgBox "Please enter your password.", vbOKOnly + vbInformation, "LogIn"
txtUsername.SetFocus


End If

End With


End Sub

guys,, please help... i am having an error with the red font indicated above..
this is the error:
item cannot be found in the collection corresponding to the requested name or ordinal
 
..guys penge naman sample ng log in with change password and forgot password with connected by access...un nalng ung hindi ko kasi magawa eh!!!!>...
 
guys,, please help... i am having an error with the red font indicated above..
this is the error:
item cannot be found in the collection corresponding to the requested name or ordinal

try mo ito... :D palitan mo yung nka pulang text..
Code:
If Operator! = txtUsername.Text Then
 
guys,, please help... i am having an error with the red font indicated above..
this is the error:
item cannot be found in the collection corresponding to the requested name or ordinal


try mo ng ganito sir...


if rec!Operator = text1.text then

else

end if
 
helo vb6 programmers...

my nakapagtry na bang mag program ng device driver hir???
help namam dyan oh!!!
 
mga papz ppwede po paatached ng installer ng visual basic or foxpro?? salamat po mga master :praise::praise::praise:
 
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

sir ang ganda ng nito sakto samen.. tnx
 
Pahingi po sample project niyo sample effects opening form! Kukuha lang ako ng ideya for out thesis next SY! Salamat sa magbibigay! Eto po ym ko [email protected].
 
:praise: maraming salamat sa codes...... pinge naman po ng tutorials ng vb to mysql/sql


salamat po ng marami....:salute:
 
Back
Top Bottom