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 SkipVought 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: 49er
  • Order by date
  1. 49er

    can you set up an ip address for a computer not on a network

    I know this sounds crazy but we have to demo an internet app at a location that does not have phone line or network connection. Thus our app needs to be "self contained" for this demo. I am running win2000 with IIS so the app will run if I can set up and ip address without actually...
  2. 49er

    new fonts not viewable

    I have installed a new font file via the control panel...fonts. However, I am unable to view them with the truetype font viewer nor can I use them in software. I have admin privileges on this box. Any ideas/suggestions?
  3. 49er

    How to add font file in PDW

    I am trying to add a font file to be distributed with my application. However, when I click 'Add' and navigate to the file I am unable to select it. I can only double-click the file which displays all of the individual characters. How can I get this font file included in the package so that...
  4. 49er

    How to create a select box with click & drag

    This is a rather interesting one...I have a page with a map on it. One of the functions I have written on the server is to allow them to zoom in or zoom out the map (so for instance if there is a map of the US they can zoom in to a particular state.) Right now I use the onClick event to...
  5. 49er

    error: too few parameters.expected 1.

    I am trying to connect to a dbase file via ADO using the code below. If I drop the WHERE portion of strQuery then it works. However, I don't see anything wrong the WHERE portion of the query. The error I receive is "too few parameters. Expected 1." Any ideas please? Thanks...
  6. 49er

    how to create smoothest text

    I am developing a map legend that can be used in a number of programs but the text keeps coming up looking terrible. What is the best way to add text into an image and having it appear smooth and crisp? Thanks.
  7. 49er

    changing mouse pointers

    During long processing operations, I want to change the mouse pointer to an hourglass. screen.mousepointer = vbhourglass When the processing is finished set the mouse back to the default. screen.mousepointer = vbdefault However, the mouse icon does not change as anticipated(the processing...
  8. 49er

    Hit counter code won't write text file

    I am trying to have a hit counter for my website but the following code will not write the text file to hold the counter. I am fairly new to this so I am shooting from the hip and any help would be greatly appreciated. This was originally a frontpage web (I don't know if this could possibly have...
  9. 49er

    populating combo boxes

    What is the code snippet to getting a combo box to, by default, show the first item in the list of items rather than appearing as though it is empty?
  10. 49er

    can you autoexpand with a combo box?

    Can you code a combo box to behave similarly to IE where as the user types in the name of say, a street, the combo box attempts to complete the entry? THanks.
  11. 49er

    getting path with common dialog control

    Does anyone have a bit of code that modifies what is returned with the filename property of the common dialog control? It is so close to the weekend and I am having trouble concentrating!!! :-) For ex: control returns "c:\ice\cold\beer\rats.txt" and I want...
  12. 49er

    updating a dbase file

    Can someone give me some insight as to how to edit and then update a dbase file? The error "Operation is not supported for this type of object" is generated when I try to execute the update statement in the following code: Code: strFileName = InputBox("Enter path to...
  13. 49er

    vertical/rotated text

    I have an image with four labels across the top. Right now the labels are horizontal across the image. However, the length for the text for the labels forces me to position the labels such that the last one on the right extends far beyond the right side of the image. What I want to do is...
  14. 49er

    referencing image maps

    What would be the correct way to use relative path names to reference files used in an image map? Right now I have them hard coded. <img src=&quot;file:///x:\path&quot;> The html page containing the image map is in the &quot;GIS&quot; directory. The directory containing the images used in the...
  15. 49er

    popup windows

    What about this... You have your fxn that runs the window.open statement. Establish an array referencing the three popup windows. When the user clicks the link, test to see if the window is already open, and then set the focus to the appropriate one.
  16. 49er

    change mouse icon to mimic behavior of desktop apps

    Say, for instance, when you load up Word (or any program) the cursor turns to an hourglass until the program has finished loading to indicate to the user that something is going on. What we were wanting to do is come up with an effective way to give some feedback to the user so that they don't...
  17. 49er

    change mouse icon to mimic behavior of desktop apps

    Hi all, It seems that I have not learned from the saying &quot;curiosity killed the cat&quot; so here goes... I have two functions that send(sendURL) and receive(parseString) information from the server. I have implemented changing the cursor on certain objects say for instance, changing the...
  18. 49er

    embedding a javascript library and NN

    I have a javascript library that contains a function to rewrite a page with a series of document.write statements. In the newly written page, I want to access functions that are in the same javascript library that wrote this page. I have included this statement: newcontent += &quot;<script...
  19. 49er

    onClick and NN, what gives?

    Yes, I believe that you are right. If anyone know definitively, please confirm. But it seems that NN 4.x only captures this event in response to form elements and the anchor tag.
  20. 49er

    onClick and NN, what gives?

    Does anyone have any idea as to why the following code will not function in NN? I mean this is about as simple as it gets. Thanks. <HTML> <HEAD> <SCRIPT LANGUAGE = &quot;JavaScript&quot;> function format() { alert(&quot;Called format&quot;); } </SCRIPT> </HEAD> <BODY> <DIV...

Part and Inventory Search

Back
Top