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 bkrike 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: woohahee
  • Content: Threads
  • Order by date
  1. woohahee

    Installation Problems

    I can't install VisualSudio.net (Enterprise Architect) - I have the disks and I have installed all the Windows Components a number of times but it always fails after I have placed the 4th disk in. I have noticed on a number of sites it tells you to reinstall the entire system (i.e. format c...
  2. woohahee

    Select from Combo Box Displays Text Box

    Ok I have a combo box on my page which displays a number of options. Within the combo box I have an "Other (Please Specify)" Option - now when this happens I would like a text box to appear next to the combo to allow the user to specify what the other is. The code so far...
  3. woohahee

    Replace in XSL

    Ok I have this small problem which is really doing my head in - I have an address which is set up basically like: <ADDRESS>TEST,TEST,TEST</ADDRESS> Now all I want to do is replace the comma with <BR/> My code so far is: <xsl:for-each select=&quot;ADDRESS/ADDRESSLINE[. != '']&quot;>...
  4. woohahee

    Replace in XSL

    Ok I have this small problem which is really doing my head in - I have an address which is set up basically like: <ADDRESS>TEST,TEST,TEST</ADDRESS> Now all I want to do is replace the comma with <BR/> My code so far is: <xsl:for-each select=&quot;ADDRESS/ADDRESSLINE[. != '']&quot;>...
  5. woohahee

    Drop Database doesn't drop a table?

    Ok this has got me stumped, I write the following in the SQL Query Analyser: Drop Database richard I then run the SQL script I generated before I dropped the database to recreate database richard. However it falls over because the error messages say that I cannot create one of the tables as...
  6. woohahee

    Align an Image - Center

    Ok I'm trying to align an image in the center of the screen using a stylesheet. I can find references to vertical alignment just nothing to do with horizontal alignment My code so far: IMG { BORDER-RIGHT: BLACK 1px solid; BORDER-TOP: BLACK 1px solid; MARGIN-TOP: 4pt...
  7. woohahee

    Backup &amp; Restore Database

    ok I'm trying to Backup my database to disk, then restore the database to the same server but under a new name Please can someone help me with this. My code so far: BACKUP DATABASE master TO DISK = 'D:\archive.bak' DROP DATABASE archive CREATE DATABASE archive RESTORE DATABASE archive FROM...
  8. woohahee

    Append Query in VBA

    Ok this ones got me stumped. I have a list of all Suppliers needing to be set up. Next to each supplier is a command button which is meant to take the specific record and append it to a new table. The VBA code for the command button is as follows: Private Sub SelectSupplier_Click() Dim...
  9. woohahee

    Combo Box to go up not down

    Okay, basically instead of my combo box dropping down (on a form), I would like to know how you can get it to scroll up. Is this possible?
  10. woohahee

    Write Conflict

    I get a write conflict when I try to edit any of the data in one of my tables. It tells me that another user has attempted to change the data while I was in the record. It then asks me if I want to save over the other users changes (but doesn't enable the Save button) or whether I want to Copy...

Part and Inventory Search

Back
Top