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 Chriss Miller 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: *

  • Users: ronspree
  • Content: Threads
  • Order by date
  1. 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?
  2. 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" ?>
  3. 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...
  4. 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...
  5. 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...
  6. 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.
  7. ronspree

    Private folder question

    Im using Windows XP Pro. Aside from moving the folder into the MyDocuments folder, is there a way to make a folder private? I would like to set the Guest account in such a way that it cannot access certain folders, and possibly, deny access to a whole drive.
  8. ronspree

    Mobo Dead?

    I have an AOPEN AX64Pro mobo (ATX power supply) which powers up immediately when power is supplied. No beeps, no display, no drive operation (HDD and FDD). Operating immediately are the FANS (CPU and power supply) and the HDD LED. No power LED. It does not obey the power switch. It cannot...
  9. ronspree

    DDR400 instead of DDR333

    Is it okay to use a DDR400 memory module on a motherboard that accepts DDR333 memory modules? I've been getting STOP: 0x8E BSoDs (blue screen) lately and the computer shop replaced my memory module with a DDR400. The BSoDs are still present but the computer passes the windows memory diagnostic...
  10. ronspree

    Nested SELECT Syntax error

    I'm using SQL Server 7, and have something like this in a stored procedure (this is a simplified version): SELECT EmployeeID, Lastname FROM (SELECT Employees.ID AS EmployeeID, Employees.Lastname FROM Employees) The error is: Line 7: Incorrect syntax near ')'. Strangely, the following will...
  11. ronspree

    Using CAT5's unused pairs

    I would like to add another PC to a wired CAT5 LAN connection to a point approximately 70 meters away in wire length. Physical restrictions such as small conduit piping and fixed wall panelling makes it extremely difficult to physically add another LAN cable. Other than adding a switch, or a...
  12. ronspree

    Odd behavior SQL Server integer-type calculations

    Im using SQL Server 7.0 and have discovered this odd behavior: A product is sold either as a whole unit or a fraction of it: 1 unit = 24 parts and are represented by: UnitQty smallint ' one whole unit PartQty tinyint ' part of a unit, 1 unit = 24 parts...
  13. ronspree

    MSDE2000. Cant connect from remote computer

    I installed MSDE2000 as new instance on a machine having SQL Server 7.0. I can connect to the MSDE2000 instance using the format MYCOMPUTER\MSDE2000. However, from a second machine, I could not connect to the said MSDE2000 instance installed in the first machine. Why? Both machines are...
  14. ronspree

    Actual string length when printed

    I need to find a way to determine how long a string would be when printed on a report. I'm printing a string on a pre-printed form and would like to dynamically change font size if the string to be printed cannot fit in the space provided in the pre-printed form. Any ideas?
  15. ronspree

    Report: Printed string length

    I need to find a way to determine how long a string would be when printed on a report. I'm printing a string on a pre-printed form and would like to dynamically change font size if the string to be printed cannot fit in the space provided in the pre-printed form. Any ideas?
  16. ronspree

    Efficiency of a linked ADP subform recordset

    I am using ADP and have a main form and a subform. The SQL server is on a different computer somewhere on the LAN. The ADP file is on the local computer. MAIN FORM: The recordsource is a parameterized query returning a single record. SUBFORM: The recordsource is a query with no parameters...
  17. ronspree

    WinXP Pro Compressed Folders corrupted

    All my compressed folders in my WinXP Pro suddenly became corrupted. However, if I transfer these same files by LAN to another computer, they are fine. Maybe if I could disable and re-enable compressed folders, this might resolve the problem? How do I do this?
  18. ronspree

    2nd Shared Documents folder in My Computer

    I want a folder to be included in "My Computer -> Files Stored in this Computer" group. Originally, this group would include the Shared Documents, and all other user's "My Documents". I would like to add a 2nd Shared Documents Folder perhaps. How would I do this?
  19. ronspree

    TCP/IP CP reported error 733 on WinXP VPN

    When I connect to my VPN, the following error occurs: TCP/IP CP reported error 733: A connection to the remote computer cannot be completed. You might need to adjust the protocols on this computer ......... What is this? Both machines are WinXP Pro.
  20. ronspree

    XP Pro Scheduled Tasks Shared?

    Why do Scheduled Tasks and Printers and Faxes appear as Shared in LAN connections? How do I disable this?

Part and Inventory Search

Back
Top