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

    weird javascript unload problem

    Hi I have the following code which launches a pop up using the onunload event. THing is if I simply want an alert to display it works fine but if I want to create a pop up the pop up never opens. So this works: <script language="JavaScript"> function closing(){ alert('hello'); }...
  2. pigsie

    PC wont power up

    Hi I left my pc for a couple of minutes - popped out of the room and when I got back it was totally dead. I changed the lead and the plug socket thinking perhaps a fuse blew - but there is no power what so ever. Am I right in saying that the power supply could have failed? Could it be something...
  3. pigsie

    How to use MSDE with enterprise manager

    Ok here is my situation I installed a database using MSDE - but didn't have enterprise manager - i made a note of the sa password when creating the instance. A friend borrowed me a sql server dc - it wont install the server tools on my machine (which is okay I dont want them) but said it would...
  4. pigsie

    programmatically select item in list box

    Hi Is there any way to programmatically select items in a list box? Thanks
  5. pigsie

    change value of text box

    Hi Is it possible to programmitcally add items to the content of a textbox *at the current cursor position*? I am creating a form with a number of buttons. when the user clicks on a button I would like to insert text at the current icon position within the textbox. Can this be done? Thanks in...
  6. pigsie

    Can't change from points to pixels

    Hi A colleague of mine is using photoshop (version 7) and all the text tools have converted to points but cannot be changed back to pixels no matter what she does. Is this a known bug? THanks
  7. pigsie

    Is this possible

    I would appreciate any insight anyone can provide. I have 2 forms, the first form contains a datasheet which is driven by a parameter query, I would like the second form to be able to retrieve results from the query - is this even possible?
  8. pigsie

    Is this possible

    Hi I would be grateful if anyone could give me any pointers on how to do the following: I have a form which displays the results of a parameter query - I would then like to launch a second form ( I can do that) which iterates through the records on the first form. Is this even possible? Thanks
  9. pigsie

    How to get a value from a selected row in a data grid

    I've done a bit of digging around but can't seem to find an answer to this one. What am I trying to do is the following: I have a subquery which is displayed on a form. What I would like to be able to do is, when a user selects a row - have a unique id from that row passed to another...
  10. pigsie

    Displaying query results on a separate tab

    Hi Hopefully someone will be able to point me in the right direction. I have a form with a tabbed control, on one tab I have a number of fields which allow the end user to enter some criteria, there is also a button which when clicked runs a query with the criteria the user entered. The problem...
  11. pigsie

    Couple of questions regarding triggers

    Hi, hoping someone could help me with these (hopefully) easy questions (although I did look in the docs and couldn't find an answer). 1. Is there anyway inside a trigger to determine if it was an update or delete which triggered the trigger? I would like to use the same trigger for both actions...
  12. pigsie

    trapping events using captureEvents not working

    Man am I having a bad time! As far as I know the following code should work: window.captureEvents (Event.CLICK|Event.FOCUS); window.onclick=myHandler; window.onfocus=HandleFocus; function myHandler(e) { alert('test'); return false; } However as soon as the page loads - all I get is...
  13. pigsie

    resizing window not working in ie5

    Me again. I think this should work but I'm probably doing something wrong. I am trying to resize a window in ie5 by using window.resizeTo(400,300); However the window seems to always be sized to around 100x100 this is also inside a frame so i'm not sure if that has any bearing but...
  14. pigsie

    can't get height of table in ie5

    Hi I'm trying to get the size of a table. I have a table called grid (id="grid") but ... getElementById('grid').getAttribute('height'); returns blank. I can get the width but not the height and I'm wondering if its because the table width is specified but not the height. Unfortunately due to...
  15. pigsie

    What is the largest database you have?

    Hi we have a potentially huge database planned (200 million+) and would be interested in hearing if anyone has had any problems with database of that size? Thanks
  16. pigsie

    difference between database username and a server login

    Hi I have just read an article that mentions database user names and server logins. I assumed that users only had one type of login. What is the difference between database username and a server login? Thanks in advance.
  17. pigsie

    programs disapearing!!!

    Hi A while back - a couple of weeks ago i cleaned up my harddisk and emptied the contents of the temp folder. All of my programs worked fine. Recently it seems that many of my programs have dissapeared, The sortcuts point to the executables but the execuatbales are no longer there. My virus...
  18. pigsie

    corrupt sql server installation?

    Hi I have made no changes to my system , but suddenly i get the following message when i start my system or if i try to start sql server &quot;your sql server installation is either corrupt or has been tampered with (unable to load SQLBOOT.DLL).&quot; This is on SQl server 2000 THanks
  19. pigsie

    how does the database fit in?

    Hi I hope this is the right forum for this post. When building applications which involve storing and updating information what is the best approach? How do you handle the updating and synchronization for objects whose fields are populated from the database? Do you update the database...
  20. pigsie

    Could someone explain this java practice to me

    Hi I have been reading the latest JDC tech tip newsletter and i came across the following line: Set sethash = new Hashset(); I'm assuming an object of class Set implements the Hashset interface but why not use Set sethash = new Set(); Instead? What are the advantages (if any ) are there in...

Part and Inventory Search

Back
Top