Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~3K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for princess_ann

if I have a java program .exe, well 3, and I want to write a VB6 program to install them, how can I do that? Thanks!! P Brooke

Member Avatar for azizmuda
0
249
Member Avatar for martinkorner

are you trying to display the date or time? or both? Have you tried a simple output?? <?php echo [COLOR=red]date("m/d/y");[/COLOR] ?> If that doesnt work try this: //get the current server date as timestamp [URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL][URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL]$dat = mktime(date("G"), date("i"), date("s"), date("n"), date("j"), date("Y")); [URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL][URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL]//work out seconds difference [URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL][URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL]$difference = substr(date("O",$dat),1,2); [URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL][URL="http://www.pchowtos.co.uk/index.php?page=glossary#"][/URL]$datdif …

Member Avatar for Danny696
0
209
Member Avatar for pbrookee

Hello all, I have this program where I look through all the rows in the excel file I use... Cells(1, 1).Select Set rngTPT = .Range("A1:A650") but I dont want to have a range limitation. How can I go through the file but not give it a limitation? I was trying …

Member Avatar for kb.net
0
85
Member Avatar for pbrookee

okay so to install an add-in you simply go to Add-Ins...Add-In Manager...and select which add-in you want... I need to install the Resource Editor, but when I go to the Add-In Manager there is no VB 6 Resource Editor for me to select. How can I get that so I …

0
63
Member Avatar for pbrookee

Hello all, I have a question and hope someone can help me. I have 3 Java .exe/packages in which I want to make into one .exe so all can be installed one by one from the same .exe. Can I do that using VB? Thanks! Kudos!

0
63
Member Avatar for pbrookee

Hello all! I created a web form, but it isnt I guess to say attractive? Its a form to enter some information, but the alignment is horrible lookg. Can any one help me? :) Thanks!!!!!!!!! Here is the code... <html> <head> <title>Welcome</title> </head> <body> <h1>??? Welcomes You!</h1> <br> <br> <form …

Member Avatar for cereal
0
138
Member Avatar for pbrookee

Hello again... I've connected to th edb but i need to insert into the db in phpmyadmin.... I dont get any errors it says that it has inserted the data, but it hasn't...please help... my code... $link = mysql_connect('localhost', 'root', ""); if (!$link) { die('Could not connect: ' . mysql_error()); …

Member Avatar for ProgrammersTalk
0
131
Member Avatar for pbrookee

Hello all...I am having a little trouble with using an ifelse statement to print information from one page to another. I have a form that has several questions and the user has to select one out of the few radio buttons...etc...when done they hit submit which is 'confirmed' on the …

Member Avatar for pbrookee
0
98
Member Avatar for pbrookee

Hello all...I am in a rut, confused. I have created an html/php web form it works fine, the user enters the info and submits it to a confirmation page and then when the user clicks ok I need for the information to be sent to 2 email address' one it …

Member Avatar for pbrookee
0
155
Member Avatar for realnsleo

Here look at this...its helpful [URL]http://www.tutorialized.com/view/tutorial/Pagination-with-PHP/6925[/URL]

Member Avatar for Andy-Pandy
0
124
Member Avatar for walba
Member Avatar for pbrookee

Hello all... I set a key in the registry with a name as Database, the Value consists of a Database name "PBC_DB.mdb" My hopes are to use the key in my program (I am using vb6) to find the database; in the connection string rather than having it read ex: …

Member Avatar for AV Manoharan
0
228
Member Avatar for pbrookee

Hello all! I have a flexgrid and everytime a user would click in a cell to edit it, an error occurs "Run time error 5 "Invalid procedure call or argument"" Here is my code: 'simple sub routine to fake the edits Private Sub EditFlexGridCell(PassedText As String, Optional CpBoard As Boolean) …

Member Avatar for pbrookee
0
259
Member Avatar for shahriar2403

In vb form_load() put in code to which will fill your listbox with the database info : 'your code here to connect to db 'sql line to select from db ' sql = ("Select * from db_name") rec.Open sql, cn, adOpenKeyset, adLockPessimistic While Not rec.EOF Me.[B]listbox[/B].AddItem rec(1).Value rec.MoveNext 'click and …

Member Avatar for pbrookee
0
360
Member Avatar for pbrookee

Hello all! :-/ I am creating a program which reads data from a database. How can I change the connection string to format anyone who would use this program on there computer? My current connection string is made to specifically read from my folder(s)... conn.ConnectionString = "C:\Documents and Settings\servername.\Desktop\Pamela\CheckReader\Database\CheckInfo.mdb" Thanks …

Member Avatar for choudhuryshouvi
0
110
Member Avatar for pbrookee

Hello!! I have a working login/password form which reads the stored login/passwords from Access, but I am trying to make it so the login and password is case sensative? :) Thanks!

Member Avatar for pbrookee
0
130
Member Avatar for hyenakal

You could also do it this way.... In Form 1 Public Function ShowLogIn() As String ShowLogIn = frmUser.txtUsername.Text End Function In Form 2 Private Sub Form_Load() lblName = frmUser.ShowLogIn() End Sub ......does anyone know how to get it to display in multiple forms?? Thanks!!

Member Avatar for ~Paul~
0
149
Member Avatar for pbrookee

Hello all! In my VB6 program I am extrating data from an database Access 2000, which I just made as password protected (now that the code is complete) But when I try to run the program (login/password screen) and I enter the login/password I get an error... "Could not Find …

Member Avatar for pbrookee
1
64