Enter Keywords:
1 - 10 of 34(0 seconds)
Sort By:
 
Experts: I have a problem: I create a brush in OnCtlColor() and return it later.This will make my control turn different color. For example: HBRUSH CMydialog::OnCtlColor(CDC* pDC, CWnd* pWn...
Zones: C++Date Answered: 03/20/2000 Rating: 7.4 Views: 0
1. Need help in understanding what order a destructor is called.  I know it's the reverse order of a constructor. 2 .How do you know when looking at a code that the destructor will be called. ...
Zones: C++Date Answered: 06/04/2004 Rating: 6.6 Views: 0
Hello, I have a jdbc bean (non-ejb) called by a jsp. I want the jdbc statements closed when the bean is no longer needed. Is there a final, or destructer method that is called automatically? ...
Zones: JSPDate Answered: 10/23/2003 Rating: 8.2 Views: 0
Hi everyone, I'm new in Delphi and I was wondering how to create a dynamic button which destroys when you click on it. I tried something like : procedure Button.myClick(Sender:TObject); begin ...
Zones: Delphi ProgrammingDate Answered: 05/23/2004 Rating: 8.6 Views: 0
Hi, I have the following problem. 1) I had a RAID 1 array, perfect fine for months. 2) a crash on windows and the array now is marked as DEGRADED 3) the array do not boots anymore. 4) if I ...
Zones: Drives / StorageDate Answered: 06/07/2004 Rating: 7.0 Views: 0
Hello Experts, I fould the following script on the net and it works just fine. What I don't understand is why I can not get to be called as a function from within a Sub. Also I'm curious as to w...
 
Related Solutions:
So, is there a way to make a Visual Basic 6 self-destruct...

Hello, I would like to know if there is a way to make a VB6 application that will self-destruct ...

Tags: vb6, programing| Rating: 9.1
 
Zones: VB ControlsDate Answered: 04/11/2006 Rating: 9.0 Views: 0
I am writing a VC++ program. The program implements a stack class as below. class stack { private:       struct stackrec       {       int value;       stackrec *next;       stackrec(int myvalue, stackrec *next1 = ...
Zones: C++Date Answered: 06/17/2007 Rating: 8.4 Views: 0
When attempting to run a binary which was dynamically linked to a shared library (.so file), rld gives me the following error: "rld: Fatal Error: attempted access to unresolvable symbol in libava2...
Zones: Unix Systems ProgrammingDate Answered: 10/11/1997 Rating: 6.2 Views: 0
classes in c++ it introduction to "oop" then i need program using class. and what mian of consturcter and destructer? mianing vertiul; sen a full programme to explian  this way.
Zones: C++Date Answered: 04/26/2000 Rating: 7.2 Views: 0
Let's create new ovject:   var a=new Array(); What is the correct way to destroy an object:   a=null; or     delete a; or both? And what's the correct way for destroying automa...
Zones: JavaScriptDate Answered: 03/16/2001 Rating: 9.2 Views: 9