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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Trancedified

  1. Trancedified

    Screen Scrape on a Windows App?

    Is it possible to retrieve information in an open desktop application (non vb.net) and browse through the screen to "copy" for example a telephone number? This application doesn't have a copy/paste feature or else I would have used this approach. I heard of Screen Scraping but that's for...
  2. Trancedified

    Copying a textbox's contents

    Hello, VB Windows App: Is there a way to get the contents of a textbox from any existing client application (like a VB app, a textbox from a Web Page, Word, Excel etc.) I was thinking of using the double click event which selects all the contents in a foreign textbox and then using a...
  3. Trancedified

    Determining SQL Server datetime

    Thanks for posting! Any samples?
  4. Trancedified

    Processing Textboxes @ run-time

    Hello, I have this code to create textboxes @ run-time based on however many database fields are loaded into a listbox, then one event handler to supposedly handle all the run-time textboxes. I am using a special database program where I can search using a string like this...
  5. Trancedified

    Convert Nulls to Blank in dataset/datagrid

    I have this code: strSQL = "SELECT Toc.Name AS [Document Name], ISNULL([ID Number], ''), ISNULL([Last Name], '') FROM TD4" Supposedly that changes the (nulls) in my datagrid to blanks but instead it's showing 1/1/1900. Any ideas on how to change it to a blank? Chris
  6. Trancedified

    Determining SQL Server datetime

    Hello, I have a listbox w/ names of SQL Server 2000 fields loaded into it. I looped through the listbox to include square brackets [ ] incase the fields have a blank. Here is my code: Dim i As Integer strSQL = "SELECT Toc.Name AS [Document Name], " For i = 0 To...

Part and Inventory Search

Back
Top