Monday, September 30, 2002
Terminal Services Client ActiveX control
(updated 5/8/2003)
apparently TS ActiveX client has been superceeded by the Remote Desktop Connection Web Connection Software Download available here
but...this client only works on NT4 and higher.
more to the story:
Apparently due to some security concerns with buffer overrun and the TS AX control, there were some patches released recently for IE and the web server? Well, summary of the story is that they have basically bailed on the TS AX control, and are now offering only the XP Remote Desktop AX client --- which only works on NT and above?!? What to do with this lame Win95 laptop!! :)
Posted 10:15 PM
|
0 comments
|
Permalink
Dynamically Size HTML Element
STYLE="WIDTH:98%;HEIGHT:expression(eval(window.document.body.clientHeight)-eval(offsetTop)-34)
Uses DHTML styles, so works in IE only...
Posted 10:01 PM
|
0 comments
|
Permalink
Thursday, September 26, 2002
C++ Singleton Pattern
only one copy of the static member available to callers.
class egg
{
public:
static egg* instance() { return &E; }
int val() { return i; }
private:
static egg E;
int i;
egg(int I) : i(I) {}
};
Posted 11:13 AM
|
0 comments
|
Permalink
Monday, September 23, 2002
Friday, September 20, 2002
Tuesday, September 17, 2002
Monday, September 16, 2002
Monday, September 09, 2002
Sunday, September 08, 2002
Friday, September 06, 2002
Wednesday, September 04, 2002
Tuesday, September 03, 2002
ASP Component Design Guidelines
Apartment threaded objects in page scope, pitfalls of single or apartment threaded objects in application or session scope/variables/state.
Posted 12:42 PM
|
0 comments
|
Permalink
Web Application Stress ToolLoad testing, simulate users hitting web pages. Scriptable, logs, etc.
MS Home Page
.NET Stress Tool
Duwamish Online
Posted 12:40 PM
|
0 comments
|
Permalink
|