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: *

  1. WynneSMI

    Web.config project override

    I have a problem trying to override the timeout settings in the Web.config file of a specific project. We have our site setup so everyone logs into our login page, /login/login.aspx and the Web.config for that project is set to <authentication mode=&quot;Forms&quot;> <forms...
  2. WynneSMI

    Check of existence of a Query

    How would I go about checking for the existence of a query in Access VBA? I've tried something like the following but it does not seem to work properly: If Not db.QueryDefs(strQueryName) Is Nothing Then blnExists = True End If Thanks!
  3. WynneSMI

    aspnet_wp.exe hangs on certain apps

    I have an issue with a .NET web project that I cannot figure out. I have one web app that I run and from time to time, I will get the yellow error page stating Configuration Error <add assembly=&quot;*&quot;/>, (I get this error immediately on access the web page) this is already have the...
  4. WynneSMI

    Auto complete web combo box

    I'm looking for a simple C# web control that has the added functionality of auto complete. I have found some java script that I'm using now but the down side is that on a combo box that does an auto post back, every click it interprets as a post back so that is real annoying. Anyone know where...
  5. WynneSMI

    ExecuteScalar(); with Oracle

    I'm having an issue with getting the result from and ExecuteScalar with an Oracle Db. No matter what type (int, long, etc.) I tell it to return, it always throws an exception. I have tried this: int count = (int) SQLCommand.ExecuteScalar(); Along with many other options but nothing seems...
  6. WynneSMI

    Logon Failed on Export(); when using multiple tables

    I'm having an issue with Crystal Reports. I used to have only one table in my dataset and when I ran my report it worked fine, no problems. I'm restructuring my database and am editing some reports. Now when I include a second table (from the same database), to the report (even if I don't use...
  7. WynneSMI

    Custom Controls

    I've been looking for a custom control in .NET that will allow me to type in a drop down list (that is populated with a list of names) and it will keep narrowing the search down depending on what I type. By default you can only sort down to the first character (ie if I press W it will go the...
  8. WynneSMI

    Check DDL Control

    In C#, how would you check to see if a user has changed the index (selected) an item from the drop down list since the page loaded. My ddl are dynamically created and are defaulted to a value. I just want to check to see if the user selected a different item in the list since the page loaded...
  9. WynneSMI

    Retrieving Logged-in User's userid from Active Directory

    Thanks, I think this is just what I need!
  10. WynneSMI

    Retrieving Logged-in User's userid from Active Directory

    I need to know how to retrieve the user id of the currently logged-in user from Active Directory. Is there an API call or a function what will give me this information? Thanks.
  11. WynneSMI

    ' in SQL string

    Thanks for your help. I think I'm on the right track now.
  12. WynneSMI

    ' in SQL string

    Thanks RiverGuy, but is there a way to replace the ' with the actual ascii character so I can write the info to the database and retrieve it with the '?!? Basically I'm looking for a way to get around saving strings to a db with an ' in them.
  13. WynneSMI

    ' in SQL string

    I have a ASP.NET web app written in C#. I have a problem when a user will enter an apostrophe (') it has problems writing to the db because SQL uses ' in it's statements. How do I get around this problem? Is there a way to search a string and replace the ' with the ascii code (character...
  14. WynneSMI

    Timer parameters

    I have a very simple VB6 app that has a timer control on it. What I want to know is there a way to pass in parameters to a timer. If I set my variables in the timer, then they get overwritten. I tried putting them in the FormLoad but I can figure out a way to pass them into the timer. If I...
  15. WynneSMI

    Comparing time in seconds

    Thanks! &quot;s&quot; works! The DateDiff gives me what I want!
  16. WynneSMI

    Comparing time in seconds

    I have a field in a table that has a Date/Time format (General Date, 1/1/2003 12:00:00 AM). I'm calling a function that checks to see if the date/time in the table is less than 10 seconds versus the current date/time. In other words, has 10 seconds elapsed between Now() and the time in the...
  17. WynneSMI

    DoCmd.SendObject only works once in a loop!

    Thanks! I'll have to check out the articles.
  18. WynneSMI

    Kill parent process

    I have an external VB6 app that gets shelled out of my Access 2000 app. I'm having a problem closing my Access app after shelling out so I was wondering if there is a way for the shelled app to kill the program which shelled it out? In other words, the VB6 app, once loaded, kill the Access app...
  19. WynneSMI

    Shell external program without waiting for return

    In my Access program, I have it Shell out another external app (utility). How can I program the Access VBA part so that Access keeps going and doesn't wait until the utility finishes? Thanks.
  20. WynneSMI

    Wait timer or waiting a specified amount of time before executing

    I'm trying to write a simple VB app. that copies a file then opens it. I call a function that does all this but I want to some how integrate a simple timer that will wait 5 seconds, then copy the file, wait another 2 seconds, then open the file. Can anyone help me!?!? If you need more detail...

Part and Inventory Search

Back
Top