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

    The page cannot be found

    I have a web server that has been working fine with classic ASP pages for the last 4 months. I am now trying to switch to ASP.NET but aspx pages simply don't show up on this server. I get this error: The page cannot be found HTTP Error 404 - File or directory not found. Internet Information...
  2. fischadler

    Storing a database field into a variable

    Sounds simple. At least it was simple with classic ASP. I am now trying to switch to the supposedly better ASP.NET but I cannot make a simple database connection and retrieve the value of a field. I have looked through several pages using Google and all of them tell me how to store the contents...
  3. fischadler

    UDP Packets

    Is it posible to send them through Javascript. I have a "Call Of Duty 2" game server with which I can communicate using UDP packets (sending and receiving). This works fine with Visual basic, but I need a way to do it through a web site so I can have a page automatically refresh the list of...
  4. fischadler

    Regex "AND" Operator

    I am very new to regular expressions. I have the code below which I use to find news records which match a particular pattern: strPattern = "(cat)|(dog)" StrippedString = stripHTMLtags(rstNews("NewsDetails")) Set RegularExpressionObject = New RegExp With RegularExpressionObject .Pattern...
  5. fischadler

    Session Variables VS Query Strings VS Cookies

    Some time ago I used to use session variables in order to store login information (such UserID and whether they are logged or not). This worked fine until one fine day one the servers I hosted my sites on started resetting sessions sporadically, sometimes after the 30 minutes (as it was set both...
  6. fischadler

    Script Prompt

    Is there a way to remove the words "Script Prompt" when using the prompt function in IE? It does not appear when used in FireFox. Thanks -Fischadler
  7. fischadler

    TextWidth in ASP

    If you know the font name and font size, and you know whether the text is in bold, italics or underlined, would it be possible determine the length in pixels of a string of text? It would be very easy to calulate that if the font is mono spaced, but what about other standard fonts such as Arial...
  8. fischadler

    Set the priority of a process

    I have this code that I got from the Microsoft site for getting a list of running processes. Public Declare Function Process32First Lib "kernel32" (ByVal hSnapshot As Long, lppe As PROCESSENTRY32) As Long Public Declare Function Process32Next Lib "kernel32" (ByVal hSnapshot As Long, lppe...
  9. fischadler

    Transparent Flexgrid cells

    I have a picture that I need tho show through some cells in a flexgrid that is located over the picture. How do I set the cells to show what's behind the flex grid component? I believe I will also need to find out how to set the background of the table to be transparent too. Thanks Regards...
  10. fischadler

    Using Replace Function in Access SQL

    Hi, I am trying to run this Select query through ASP: SELECT EmployersID, EmployerName, PostCode FROM Employers WHERE (((Replace(PostCode,' ','',1,-1))='N78PS')); This query works fine in Access when pasted in SQL View, but when I run it in ASP, I am getting this error: Microsoft OLE DB...
  11. fischadler

    Stopping people from writing in text box

    I have a text box with a calendar icon beside it so people can choose a date from the pop up calendar and the date goes into this text box. However, some people insist on typing in the date in the text box and type it incorrectly (ie. Febuary instead of February). How do I stop them from typing...
  12. fischadler

    Web shares list

    Is there a way to get a list of web shares stored on a Windows 2000 system through VB? It would be great if it could also work on WinXp Pro. Thanks! -Fischadler
  13. fischadler

    IIS username and password

    By mistake I have previously posted this question in the wrong forum, so here it is. When running an ASP page through IE using the IIS that came with Windows XP Pro, pages work fine. However, when I test them on FireFox, I get this prompt below. Anyone knows how I can get rid of it, especially...
  14. fischadler

    Numbers only please

    Please consider the code below: onkeypress="return '0123456789.'.indexOf(String.fromCharCode(event.keyCode))>-1" I use it to stop people from entering text other than numeric values in a textbox. It works fine in IE but disallows all keystrokes in Firefox. Is there a way I can get it to work...
  15. fischadler

    FOR EACH item IN Request.Form

    Would I be safe in assuming that the code below returns the same information in the same order no matter how many times I run it in the same page? FOR EACH item IN Request.Form Response.Write item & "<br>" NEXT Is there some way to specifically set the order in which this code scans through...
  16. fischadler

    Borderless Webbrowser Control

    Is there a way to remove the border of the Webbrowser control? Note that I am NOT referring to the border around the web page which can be removed using "leftmargin=0" and "topmargin=0". I am referring to the border which, in the case of the textbox control, for example, can be removed with...
  17. fischadler

    Table Size

    Is there a way to know at a glance the size in bytes occupied by each table in an Access database? Thanks -Fischadler
  18. fischadler

    Closing another window only if it's open

    Hi I am using the code below to open a pop up window. <script> <!-- Hide from old browsers function winopen(PageURL){ window.open(PageURL, 'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, copyhistory=yes,width=750,height=400,left=0,top=0') }...
  19. fischadler

    Parent Problem

    Hi, I am using the code below to open a pop up window. The pop up window has a link which, if clicked, should update the page in the parent window that originally called the pop up. <script> <!-- Hide from old browsers function winopen(PageURL){ window.open(PageURL...
  20. fischadler

    Hiding Strings In Pictures

    I once read in a Tek Tips thread that it is possible to write hidden strings inside a JPG and then retrieve it later. I cannot find the thread any more. Does anyone know how this can be done? Thanks -Fischadler

Part and Inventory Search

Back
Top