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
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
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...
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...
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...
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...
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)...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.