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...
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
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...
I'll try to give the 'Readers Digest' version...
I have a Solution with say 10 pages (.aspx).
I have an HTML button that opens a new window, and shows ABC.ASPX from w/in the solution.
I took ABC.aspx and made it it's own solution. I created a new folder under the virtual directory and built...
Here's a snippet of code I use in my program which serializes a custom collection I've created (Chk) and store in a table as an image...
Dim ms As New MemoryStream() ' Create a memory stream...
Dim bf As New BinaryFormatter() ' and a formatter.
bf.Serialize(ms, Chk)...
I have the following query:
Select *
From Employee
Where pkEmpNum = @EmpNo
SELECT EP.*, .ET.EmpTypeDescr
FROM EmployeePositions EP INNER JOIN
EmpTypes ET ON EP.fkEmpType = ET.pkEmpType
WHERE EP.fkEmpNum = @EmpNo
GO
I have a strongly-typed dataset defined with 2 corresponding tables...
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.