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 IamaSherpa 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. djinn01

    Select ...where item is not like ...syntax problem

    Select * from TblItem where (Item not like '%Installation%' and Item not '%Hardware%') and (other filtering conditions not related to the not like clauses, if any)
  2. djinn01

    Receive Broadcast Datagrams

    I have finally cut through the fog. My problem was I was broadcasting to an invalid network address 192.168.255.255 while I should be using 192.168.0.255. I have only recently learned the difference between Class A, B and C adresses (being a programmer more than a network person) and I had not...
  3. djinn01

    Receive Broadcast Datagrams

    I have used TcpClient a few times with good success. In this new application, I would like to use a connectionless protocol for each instance of a program to broadcast its status to all other instances on other machines. I need to use actual broadcasts (not multicasts) because the program is...
  4. djinn01

    Reading non-standard charcters with StreamReader

    Have you tried opening the file with codepage 1252 encoding? You may not have the same problem as in the other post you cite. But I have a hunch this may just NOT be codepage 1252 encoding. Try this: 1) Open the file in VS (if it reads fine there) 2) Select File > Save as 3) Using the...
  5. djinn01

    Data Sources have Foreign Key ids, want the descriptiosn

    First off, if you wish to show a foreign table descriptive field, you will need to use a select query that uses joins such as: select Bid_Item.*, Bid.Bid_Date from Bid_Item outer left join Bid on Bid_Item.Bid_Id = Bid.Bid_Id (you may continue with more similar outer left join's, usually one...
  6. djinn01

    Visio 2003 Question

    The way I have found to do this is to locate the frameset in the generated files and remove the custom properties frame from the set. You may also want to try to locate the one HTML file that provides content for the frame your are interested in and open it directly.
  7. djinn01

    c# datatypes

    My Visio 2002 installation (Enterprise Architect) had those to start with. Have you looked at the menu UML > Options > UML Document? (You have to be in a UML document for the menu to appear.) Maybe Vision Pro does not come with the C# types, but that would be strange. If that's the case, the...

Part and Inventory Search

Back
Top