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 Mike Lewis 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. BradRoberts56

    Config file

    In your project you should have an app.config file. Make the changes here. When you recompile these changes will be put into the one that is in the bin directory.
  2. BradRoberts56

    Delayed form update on button click event

    Whoah. We are talking VB, NOT ASP.NET.
  3. BradRoberts56

    Insert command problem....need help

    At the bottom of the code try using (your button name).PerformClick() instead of passing references to the other event handlers that were passed into this one. That may be causing a problem.
  4. BradRoberts56

    Delayed form update on button click event

    Use Application.DoEvents() after setting the text but before the processing.
  5. BradRoberts56

    ASPX Help

    There is a script file you need to run to make ASP.NET the ISAPi filter to run aspx pages. I forget the details on it but this is a common problem and can be found documented on MSDN. Maybe someone else here remembers the details better than I but do not fret. There is a well-known solution.
  6. BradRoberts56

    Help getting windows service to work

    Try writing to an event log to get more diagnostics. Something like this might work. try ...your code hear... catch e as exception Dim aLog As EventLog aLog = New EventLog() aLog.Source = "MyServiceLog" aLog.WriteEntry("Error: " & e.Message, _ EventLogEntryType.Error)...
  7. BradRoberts56

    Auto starting an app

    No. A program with a user interface requires just that, a user interface, to run. It will require that a user logs into the system. However, if you write your program so that it runs without a user interface (no forms or dialogs) you can schedule it to run with the scheduler with a specified...
  8. BradRoberts56

    Web Service - Multiple Procedure Calls

    You can have multiple procedures by making each a "WebMethod" within the class created for the web service. I have done it but the code is much too large to put here. Besides, my employer would not like me posting company code.
  9. BradRoberts56

    Task Scheduler API?

    I got the roots of the following code from a co-worker so I can't take credit. It uses the WMI interface to the scheduler service. It can be used to schedule a task at a predefined interval. The following code is dependent on a predifined global date which is used to hold the time of day for the...

Part and Inventory Search

Back
Top