- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
Re: 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 | |
Re: 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 … | |
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 … | |
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 … | |
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! | |
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 … | |
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()); … | |
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 … | |
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 … | |
Re: Here look at this...its helpful [URL]http://www.tutorialized.com/view/tutorial/Pagination-with-PHP/6925[/URL] | |
| |
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: … | |
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) … | |
Re: 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 … | |
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 … | |
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! | |
Re: 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!! | |
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 … |