This problem may be due to the Eolas patent litigation that Microsoft (so far) has lost...It's up to the individual web sites to change the way the handle OBJECTs in IE...
You can check out this article for some background:
http://www.devx.com/webdev/Article/18063
Jerry
Sorry...I also tried using different MsgBox's to display the ClientDate before the 'IsDate' test, and it always showed up empty...
I keep thinking there must be a way of 'Get'ing or 'Read'ing the params from the HTML...They don't seem to be passed to the DLL automatically...
Thanx
Jerry
I have an ActiveX DLL that I need for a specialized App that will reset the date/time of the client's machine - wriiten in VB6...
I have 1 public property -
Private mvarClientDate As Variant
Public Property Let ClientDate(ByVal vData As Variant)
mvarClientDate = vData
End Property...
The DLL does work...When the page is displayed, the MSGBOX dislays the error message "Could not set date/time..."
I've also used other MsgBox's to show the date and time values of what was passed...
I remember I used to code programs that took command line entries, ie: App1.exe...
I have an ActiveX DLL that I need for a specialized App that will reset the date/time of the client's machine - wriiten in VB6...
I have 1 public property -
Private mvarClientDate As Variant
Public Property Let ClientDate(ByVal vData As Variant)
mvarClientDate = vData
End Property...
Let's say I have a web page that creates a pop-up page that needs to know how many windows are opened at that moment...If the 'popped-up' page detects 2 windows, I want to display certain controls on that page...
Any ideas??
TIA
Jerry
David:
I was finally able to get things working by setting the references via Projects. For now, I'm satisfied - but I know I'll have to continue searching for exactly how/where the compiled projects should reside and how to set their references w/in other projects.
Thanx again
JK
I've inherited a system w/5 projects - I'll refer to them as P1 thru P5 - P5 being the executable...
P1 has no dependents.
P2 is dependant upon P1
P3 has no dependents.
P4 is dependant upon P1, P2, P3
P5 is dependant upon P1, P2, P3, P4
The build order is:
P1, P2, P3, P4, P5
So far so...
Currently, it's 1:11 PM, EDT...
The code below executes, and str will have '1:11 PM'...
Dim tTime As DateTime = Now
Dim str As String = tTime.ToShortTimeString
Is this sufficient??
JK
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.