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!

boss napakadaling tanong lang nito alam kong kayang kaya nyo mga master,, gusto ko kasi na ung iinput kong data sa program ko eh dun mapupunta sa excel?

halimbawa nag input ako ng "name" ska "price".. gusto ko sana makikita ko sya dun sa excel,,posible b un?
 
Last edited:
boss napakadaling tanong lang nito alam kong kayang kaya nyo mga master,, gusto ko kasi na ung iinput kong data sa program ko eh dun mapupunta sa excel?

halimbawa nag input ako ng "name" ska "price".. gusto ko sana makikita ko sya dun sa excel,,posible b un?

u mean like this..?
 

Attachments

  • Excel.zip
    1.7 KB · Views: 45
sir tanong lang po pwede po bang lagyan ng password yung database na access mo para di magalaw yung mga information?pano po ba gawin yun?yung naka connect po sya sa vb6 tapos sa database di mo maoopen ng direct para maedit yung laman kung di mo alam yung password
 
sir tanong lang po pwede po bang lagyan ng password yung database na access mo para di magalaw yung mga information?pano po ba gawin yun?yung naka connect po sya sa vb6 tapos sa database di mo maoopen ng direct para maedit yung laman kung di mo alam yung password
'yung database nasa tabi mismo ng .vbp file

Public cn As ADODB.Connection 'A Connection Object - connects to our data source
Public rs As ADODB.Recordset 'A RecordSet Object - stores the data we get from our data source
Sub main()

Set cn = New ADODB.Connection
Set rs = New ADODB.Recordset
'pag my password
cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\urdatabase.mdb;Jet OLEDB:Database Password=iloveher"
'pag wala password
'cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & (App.Path & "\urdatabase.mdb") & ";Persist Security Info=False"
cn.Open
loginfrm.Show
End Sub
 
pahelp po pagawa ng program na suduko.. project namin eh.. pls guys salamat.. pa rar nlng kasama ung project and forms.. ^_^
 
gusto ko po sana gumawa ng application na automatic na nagkkill ng process..kpag hndi pa nkarun yung process eh hihintayin nya na magrun tpos kung narun na yung process eh agad nman nyang papatayin..tpos dpat nkahide lang sya..parequest nmn po.. :pray:
 
'yung database nasa tabi mismo ng .vbp file

Public cn As ADODB.Connection 'A Connection Object - connects to our data source
Public rs As ADODB.Recordset 'A RecordSet Object - stores the data we get from our data source
Sub main()

Set cn = New ADODB.Connection
Set rs = New ADODB.Recordset
'pag my password
cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\urdatabase.mdb;Jet OLEDB:Database Password=iloveher"
'pag wala password
'cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & (App.Path & "\urdatabase.mdb") & ";Persist Security Info=False"
cn.Open
loginfrm.Show
End Sub



sir salamat po...sir pwede po ba pakicheck yung ginaya ko sa video nyo debug po kasi sakin yung rs.open eh...maraming salamat po sa inyong tulong...gusto ko po kasi matutunan ang adodb..
 

Attachments

  • adodb practice.zip
    18.3 KB · Views: 24
Mga sir, pano po mag loop ng background sa VB6.0? para po kasi sa game na ginagawa ko pra sa thesis.:)
beginner po aq eh.sna matulungan nyo aq.. :thanks:
:salute:
 
Mga sir, pano po mag loop ng background sa VB6.0? para po kasi sa game na ginagawa ko pra sa thesis.:)
beginner po aq eh.sna matulungan nyo aq.. :thanks:
:salute:
 
mga sir,, ask ko po, pano po ba gawin sa vb 6.0 ung pag restrict sa user sa pag change ng system date and time o kaya pano magawa sa vb 6.0 na ma detect kung cno o kung may nag bago ng system date and time.. please help sir, salamat po sa mag rereply. :pray:
 
sino marunong gumawa ng audit trail o login trail sa vb6, pwede paturo kung ano ang mga codes na pwdeng gamitin..bagohan lng poh kasi ako sa visual basic na language.....sana matulungan niyo poh ako.....
pwde rin bang humingi ng sample program p......:pray:
 
Last edited:
1. Create an application program in VB.Net that would input an INTEGER and display in the format shown below. Example, if 5 was entered then it would display:

55555
4444
333
22
1
============================

2. Create an application program that would ask the user an integer and would and display in the format shown below. Example, if 5 was entered then it would display:

&
#
$
#
$

===================================
3. Create an application that asks a user to input an integer and display in the format shown below. Example, if 5 was entered then it would display:

*****
$$$$
***
$$
*

=======================================
4. Create an application that would ask a user to input an integer and display in the format shown below. Example, if 5 was entered then it would display:

1
1
2
3
3
6
4
10
5
15
=============================

TY po sa tutulong saken pasensya na po baguhan po kase ako sa ganito salamat po :D
 
e2 po sagot ko sa one (di ko na po sinama d2 ung public class at private sub )

Dim x,y as integer
Dim sama as string
listbox1.items.clear
for x= 5 to 1
sama=""
for y= 1 to x
sama = sama & str (y)
next y
listbox1.items.add (sama)
next x


tama po ba ?
 
May mali po ba sa syntax ko?

adoLogIn.recordsource = "select * from Table1 where UserName = " & me.text1.text & " AND Password = " & me.text2.text & ""

kasi may compiler error po na lumalabas, Expected: end of statement daw po. :(
 
May mali po ba sa syntax ko?

adoLogIn.recordsource = "select * from Table1 where UserName = " & me.text1.text & " AND Password = " & me.text2.text & ""

kasi may compiler error po na lumalabas, Expected: end of statement daw po. :(
 
mga boss.. pedemakahingi po ng database access na pang music store or anything related na may income salamat po
 
sino marunong gumawa ng audit trail o login trail sa vb6, pwede paturo kung ano ang mga codes na pwdeng gamitin..bagohan lng poh kasi ako sa visual basic na language.....sana matulungan niyo poh ako.....
pwde rin bang humingi ng sample program p......:pray:

Sa login, kapag tama ang login un at password then code mo na kung paano niya maisasave yung login info ng isang user same as logout.
 
Ano po code or give idea naman sa paraan para maka transfer ako ng pic mula sa isang folder at ma save ko sa iba.. para concipto ng mag browse ako ng isang file mula sa ibang folder at e save ko sa iba,,,


salamat advance po mga tol...

need lang sa project.

W8 mode lang me....
 
Back
Top Bottom