In my program I use code like
AnsiString b1 = Clipboard()->AsText;
and
int i = Clipboard()->AsText.Length();
Both cause access violations. My program uses AsText hundreds of times in it, but not all the time does it cause an access violation. I check to see if the Clipboard() == NULL and if Clipboard()->AsText == NULL.
Clipboard()->AsText == NULL causes an access violation
if(Clipboard() == NULL) returns false
So, as a workaround to using a timer to check for clipboard changes, I tried using the OnMessag event in TApplicationEvents...
void __fastcall TForm1::FormCreate(TObject *Sender)
{
NextInChain = SetClipboardViewer(Form1->Handle);
}
void __fastcall TForm1::ApplicationEvents1Message(tagMSG &Msg,
bool &Handled)
{
if (Msg.message == WM_DRAWCLIPBOARD)
{
//ShowMessage("1"
;
Beep();
}
if(Msg.message == WM_CHANGECBCHAIN)
{
Beep();
HWND Remove, Next;
Remove = (HWND)Msg.wParam;
Next = (HWND)Msg.lParam;
if(NextInChain == Remove)
NextInChain = Next;
else if (NextInChain != 0)
SendMessage(NextInChain, WM_CHANGECBCHAIN,
(long)Remove, (long)Next);
}
}
I don't seem to get either of those two messages at any point in the program, even when I copy to the clipboard!
I also tried;
void __fastcall TForm1::FormCreate(TObject *Sender)
{
Application->OnMessage = AppMessage;
}
void __fastcall TForm1::AppMessage(tagMSG &Msg, bool &Handled)
{
if (Msg.message == WM_DRAWCLIPBOARD)
{
//ShowMessage("1"
;
Beep();
}
if(Msg.message == WM_CHANGECBCHAIN)
{
Beep();
HWND Remove, Next;
Remove = (HWND)Msg.wParam;
Next = (HWND)Msg.lParam;
if(NextInChain == Remove)
NextInChain = Next;
else if (NextInChain != 0)
SendMessage(NextInChain, WM_CHANGECBCHAIN,
(long)Remove, (long)Next);
}
}
That doesn't work either.
AnsiString b1 = Clipboard()->AsText;
and
int i = Clipboard()->AsText.Length();
Both cause access violations. My program uses AsText hundreds of times in it, but not all the time does it cause an access violation. I check to see if the Clipboard() == NULL and if Clipboard()->AsText == NULL.
Clipboard()->AsText == NULL causes an access violation
if(Clipboard() == NULL) returns false
So, as a workaround to using a timer to check for clipboard changes, I tried using the OnMessag event in TApplicationEvents...
void __fastcall TForm1::FormCreate(TObject *Sender)
{
NextInChain = SetClipboardViewer(Form1->Handle);
}
void __fastcall TForm1::ApplicationEvents1Message(tagMSG &Msg,
bool &Handled)
{
if (Msg.message == WM_DRAWCLIPBOARD)
{
//ShowMessage("1"
Beep();
}
if(Msg.message == WM_CHANGECBCHAIN)
{
Beep();
HWND Remove, Next;
Remove = (HWND)Msg.wParam;
Next = (HWND)Msg.lParam;
if(NextInChain == Remove)
NextInChain = Next;
else if (NextInChain != 0)
SendMessage(NextInChain, WM_CHANGECBCHAIN,
(long)Remove, (long)Next);
}
}
I don't seem to get either of those two messages at any point in the program, even when I copy to the clipboard!
I also tried;
void __fastcall TForm1::FormCreate(TObject *Sender)
{
Application->OnMessage = AppMessage;
}
void __fastcall TForm1::AppMessage(tagMSG &Msg, bool &Handled)
{
if (Msg.message == WM_DRAWCLIPBOARD)
{
//ShowMessage("1"
Beep();
}
if(Msg.message == WM_CHANGECBCHAIN)
{
Beep();
HWND Remove, Next;
Remove = (HWND)Msg.wParam;
Next = (HWND)Msg.lParam;
if(NextInChain == Remove)
NextInChain = Next;
else if (NextInChain != 0)
SendMessage(NextInChain, WM_CHANGECBCHAIN,
(long)Remove, (long)Next);
}
}
That doesn't work either.