Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ronspree

    Hibernate thru remote desktop

    Thanks. :)
  2. ronspree

    Hibernate thru remote desktop

    Why is the Hibernate option (of the remote computer) grayed out when using remote desktop connection? Is there a way to make this available?
  3. ronspree

    $_Session variable not passed to next page?

    ipnpro, that would not have worked before because my subdirectory indicated in "session.save_path" did not exist. However, now that it does exist, it will surely work. Thanks.
  4. ronspree

    $_Session variable not passed to next page?

    jpadie! Its working now! The directory indicated on session.save_path did not exist. So is just created it! Now its working. Thank you very much.
  5. ronspree

    $_Session variable not passed to next page?

    jpadie, i don't know what you mean exactly, but I have session.use_cookies = 1 in my php.ini. I can pass cookies but have to use the import_request_variables in session2.php.
  6. ronspree

    $_Session variable not passed to next page?

    Im using Apache. The addition of the "session_write_close()" did not help. I also tried taking out the headers, then manually browsed "session2.php". The $_SESSION['webuser'] is still not passed. Do i need to pass the session id to session2.php?
  7. ronspree

    $_Session variable not passed to next page?

    What am I missing here? <?php //session1.php session_start(); $_SESSION['webuser'] = 'Ronnie'; header("Location: session2.php"); ?> <?php //session2.php session_start(); echo "<br>Web user is: " . $_SESSION['webuser']; //does not output "Ronnie" ?>
  8. ronspree

    ADODB Decimal parameter size spec

    Thank you. And thank you for the link.
  9. ronspree

    ADODB Decimal parameter size spec

    How do I specify size (Decimal(18,9)) in the following code: Dim cmd As ADODB.Command Set cmd = New ADODB.Command cmd.ActiveConnection = CurrentProject.Connection cmd.CommandText = "strGetQuantity" cmd.CommandType = adCmdStoredProc cmd.parameters.append...
  10. ronspree

    Group By Last Date

    borislav, thank you so much for your reply. Do you realize that you answered is just 4 minutes? Haha! I'm very impressed! This is the first time I've seen a join involving two fields. I didn't know it could be done. I never needed to use it until now. Thanks again.
  11. ronspree

    Group By Last Date

    I have a table named Bills (BillID is the Primary Key): BillID CompanyID Date Amount -- -------- ------ ------- 1 10001 01/01/06 100.00 2 10001 02/20/06 200.00 3 10002 01/05/06 5993.21 4 10002 02/22/06 245.20 5...
  12. ronspree

    Two DSL connections on the one Subnet

    Yes, change the IP address of the second router (192.168.1.253). Since you're using static IP addresses, turn off DHCP on both routers.
  13. ronspree

    How to obtain primary key id of record just inserted

    jbenson, thanks for pointing me to the right direction. I'm going to be using @@IDENTITY since I'm using SQL Server 7.0. Thanks again.
  14. ronspree

    How to obtain primary key id of record just inserted

    Is there a better way of getting the primary key ID of a record that I had just newly inserted via stored procedure? I currently use: CREATE PROCEDURE strInsertRecord @value1 varchar(50), @value2 varchar(50), @NewRecordID int OUTPUT AS INSERT INTO MyTable (Field1, Field2) VALUES (@value1...
  15. ronspree

    Problem with accessing all records

    Take the txtID out of the single quotes. Your where clause would otherwise be evaluated as "ID = 'txtID'". What you want is "ID = <value of txtID>" tb1.Open "Select ID,LastName1,FirstName1,Phone1 from tblOrganizerInfo where ID = " & txtID, cn
  16. ronspree

    Default username in Access 2000 adp

    Is there a way in starting an Access 2000 adp without a default username being shown in the log-on window? Where is this username information stored? It doesn't seem to be included in the BASE CONNECTION STRING.
  17. ronspree

    Excluding rows

    Very nice, ethorn, thanks.
  18. ronspree

    Excluding rows

    Try this: SELECT Table1.* FROM Table1 FULL OUTER JOIN Table2 ON Table1.SomeID = Table2.SomeID WHERE Table2.SomeID IS NULL
  19. ronspree

    Diference betwen results

    You need a field that could be used to arrange them in some order, otherwise, you'll get random results. A date field or an EntryID field perhaps (or both).
  20. ronspree

    Excluding rows

    How about: SELECT * FROM Table1 WHERE SomeID NOT IN (SELECT SomeID FROM Table2) AS Table2IDs

Part and Inventory Search

Back
Top