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 Rhinorhino 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 swatman

  1. swatman

    WAP with asp.net

    Hi, has anyone implemented wap with wap? I have a wml file for wap. How do we set about accessing ASP.net??? are there any considerations? thanks, swat
  2. swatman

    New User needs help

    thanks nick, I will try it. As for searching for the question, I would like to. However when I search on "Add reference" nothing shows up. So I guess the next question is "how is the best way to search tek-tips for previous posts?". regards swatman
  3. swatman

    New User needs help

    Hi, I just started using vb.net. I am trying to add a reference, ie ADO v2.7. Under the Project/Add Reference menu, I go to the COM tab and add my component with the Select button. However, the project does not remember the selected components. Is there something I need to do first...
  4. swatman

    Basic Question: VB DLL Called from VB?

    thanks Zemp, I have been banging my head on this one for a week. So, VB DLLs will not export functions and Subs. Rather, only methods of Classes may be exported. Something else I found, it seems that you do not need to instantiate an instance of your DLL service to call the method. ie in...
  5. swatman

    Basic Question: VB DLL Called from VB?

    Zemp/strongm, thanks!
  6. swatman

    Basic Question: VB DLL Called from VB?

    Hi, a basic question this one, I'm sure... I wish to put code in a VB DLL. It is declared as Public thus: Public Sub mysub() MsgBox "Hello world" End Sub In the client app, it is declared as: Public Declare Sub mysub Lib "testdll" () However I get error 453, entry...
  7. swatman

    referencing dev. OCXs & DLLs

    Hi, Because of a "out of memory" error while building my exe, I have broken my monolithic app into dlls and ocxs. This works fine. Services are seperated from application logic. Nice. However, when I rebuild an OCX or change the location of the project, the project fails to load...
  8. swatman

    Impromptu Joins with use of a constant

    yep, I tried this. Normally it works, ie Select * from TABLE_A A left join TABLE_B B on A.col1 = B.Col1 where B.Col2 = '55' However this has the effect of an INNER join. So I modify thus: Select * from TABLE_A A left join TABLE_B B on A.col1 = B.Col1 where (B.Col2 = '55' or B.Col2 is NULL)...
  9. swatman

    Impromptu Joins with use of a constant

    Hi, I define a Join with the use of a constant. This works well in SQL, ie Select * from TABLE_A A left join TABLE_B B on A.col1 = B.Col1 and B.Col2 = '55' In Impromptu 6, it is possible to define this as a join. However when a report is created the join is not used. 2 seperate selects are...

Part and Inventory Search

Back
Top