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

    www service stopped unexpectedly

    I have written an ASP.Net/MySQL application that runs on a dedicated WinXP box. This application is used on a mining machine that operates in a remote location (no internet connectivity of any kind). Raw data is fed into the MySQL database from the PLC that runs the machine. The ASP.Net code...
  2. dave755

    ActiveSync runs forever

    I have an iPAQ Windows Mobile device and I am trying to set up synchronization with Outlook 2007 running on WinXP SP2. The sync setup proceeds normally, but when the sync reaches the "Synchronizing" phase, it appears to enter a forever loop. It does not exchange any information and never...
  3. dave755

    ASP:Table pagination

    I have created a simple ASP.Net report that is basically a single instance of an ASP:Table object. I am populating it "manually" using TableCell and TableRow objects because there is a substantial bit of computation that goes into each row. My question is this - how do I get it to paginate...
  4. dave755

    Slow performance using MyODBC

    Hi All, I am creating a pair of applications that essentially transfer data from a remote client to a local server. The trick is that "remote" in this application means "way out in the mountains where it takes an hour by four wheel drive to reach the nearest paved road and don't even talk to me...
  5. dave755

    Graphic display quality

    I have an application that is generating graphics on the fly from user input and database content. There is an issue involving the quality of the displayed image. ** If I save the image as a BMP, it looks great but the image is 1650Kb and loads slowly. ** If I save the image as a JPG, the...
  6. dave755

    ASP.NET equivalent to USEMAP

    I am sure there must be a way to do this, but I have been reading the books & sites for hours with no luck. Please enlighten me. I am creating a bitmap image in code using GDI+ and displaying it on my page with an <asp:image .../> tag. What I want to do is to make parts of the image...
  7. dave755

    Conditional text based on data element

    I have a query that returns a large number of fields of data type "bit". I would like to display those on my report using text different from the default "True" or "False". The BOL has proven useless on this question. I have tried this: =if(Fields!bitvar,"Y","N") but the compiler barked at...
  8. dave755

    Dell Axim won't turn on

    I have a user with a Dell Zxim X51V. It is exhibiting a behavior where it won't turn on (no matter how long you hold the "on" button) unless she removes the battery and then replaces it. Tech support advised her to soft reset the device, but this has had no effect on the behavior. Any...
  9. dave755

    Buttons in a loop

    This feels like it is too obvoius to ask, but I have been stymied in trying to find an answer by reading the docs... I want to create a series of buttons in a loop, with each button passing a parameter to the handler to distinguish it from the others. <%for i = 0 to ButtonCount%>...
  10. dave755

    Active Directory audit trail

    I am building a site that is open only to users who have credentials on the local (Win Server 2003) domain controller. Anonymous login is disabled. How does my ASP script discover the username or other identifying information for the person who is logged in? Dave Gee
  11. dave755

    Running multiple queries in Query Browser

    What is the magic word to get query browser to execute a string of queries? Example: insert into X (a, b) values (1, 2); insert into X (a, b) values (3, 4); ... etc ... Individually, each query runs fine. When I try to combine them into a script, I get a syntax error. Dave Gee
  12. dave755

    Installshield setup of IIS

    I am trying to use InstallShield Express to install a web site to run on the localhost on a WinXP Pro box. According to the requirements, IIS may or may not be installed when the install script is launched. Is there a way to make installshield see to it that IIS is installed and correctly...
  13. dave755

    How to display a TIF image

    I need to be able to display a TIF image on a page. I have tried two methods: <IMG src="<%=sThisTif%>"> This method shows the red X in a square where the image should go. <FRAME src="<%=sThisTif%>" name="TIF"> This method seems to be sensitive to the file associations present on a...
  14. dave755

    Zip2County

    I have two tables: (1) Addr - a list of addresses, including zip codes. This table currently has ~800k rows, but we want to grow it to have ~6M rows. (2) ZipToCounty - A cross reference of zip codes to the county that each zip code is in. There are 1124 zip codes in 83 counties. What I want...
  15. dave755

    SQL Error 80004005 after many successful transactions

    I have an internal use web page that uses VBScript/ASP to perform a long sequence of INSERT and UPDATE transactions - all to the same table in SQL Server 2000. The code executes as expected for the first 1900+ transactions, but then fails with the error message: Microsoft OLE DB Provider for...
  16. dave755

    Using ADODB to read an Excel file

    Where do I find reference information on how to read an Excel file using VBScript and ADODB? I want to read the content of an individual cell. Dave Gee
  17. dave755

    ErrMsg = No Original Data to Access

    One of my developers is working on a VB application that interfaces to SQL Server. At unpredictable intervals, the users are getting an error message that says No Original Data To Access Upon clicking "OK" (the only option), a more conventional error dialog is displayed. It is...
  18. dave755

    Click button when Enter pressed in text field

    I have a form in an ASP page that has four SUBMIT buttons, each for a different potential user action. The form also contains a text INPUT field. For usability reasons, I would like to send a click event to a particular SUBMIT button when the user types into the text field and presses the...
  19. dave755

    Browser -&gt; IIS/ASP -&gt; SQL Server config

    I am trying to configure an in-building intranet system with multiple servers and am not getting it right. Here is the situation: The user sits at a browser and accesses an ASP page. The ASP is being hosted by a server running IIS on Windows Server 2003. The VBScript code in the ASP uses a...
  20. dave755

    Browser -&gt; IIS -&gt; SQL

    I am trying to configure an in-building intranet system with multiple servers and am not getting it right. Here is the situation: The user sits at a browser and accesses an ASP page. The ASP is being hosted by a server running IIS on Windows Server 2003. The VBScript code in the ASP uses a...

Part and Inventory Search

Back
Top