Forum: C++ Oct 5th, 2009 |
| Replies: 7 Views: 193 Thanks. I will need to upgrade to vs2008.
Ross |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 193 Thanks, I will put my mind to it. |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 193 Thanks, I will research that process.
How does one gain a trusted certificate? |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 193 Does anyone know a source dealing with what is now required to get your application to install and run on Vista and avoid being blocked with the "Unknown Publisher" warning.
It seems for 64 bit... |
Forum: C++ Mar 22nd, 2008 |
| Replies: 4 Views: 644 Thanks for your help.
Ross |
Forum: C++ Mar 22nd, 2008 |
| Replies: 4 Views: 644 I am now using Visual C++.net 2002 edition.
My main ongoing project, an application that teaches the game of bridge, is now 350 K +
llines of code, 95 % of which is application logic. The 5%... |
Forum: C++ Jan 22nd, 2008 |
| Replies: 11 Views: 1,614 The cost of MSDN is way more than a hobby programmer can justify |
Forum: C++ Jan 22nd, 2008 |
| Replies: 11 Views: 1,614 Unfortunately none of the samples have mouse functions.
Ross |
Forum: C++ Jan 21st, 2008 |
| Replies: 11 Views: 1,614 Does anyone know of a source of mouse functions for a console application in the visual C++.net developement environment package?
Thanks,
Ross |
Forum: C++ Apr 26th, 2007 |
| Replies: 2 Views: 776 Already tried it, but thanks for the thought.
Ross |
Forum: C++ Apr 26th, 2007 |
| Replies: 2 Views: 776 I have tried Beep() and MessageBeep() which compile fine,
execute with no error but there is no sound.
Are there better sound/tone generating fns avail for SDK?
Ross |
Forum: C++ Mar 10th, 2007 |
| Replies: 2 Views: 1,895 void CMainFrame::OnTimer(UINT idEvent)
{
idEvent++;
pointG2.y-=3;
pointG=pointG2;
TimerEvent();
InvalidateRect(NULL, TRUE);
}
void Csail_boatView::OnDraw(CDC* pDC) |
Forum: C++ Mar 9th, 2007 |
| Replies: 2 Views: 1,895 Does anyone use MFC?
I have a problem executing graphics functions.
void CMainFrame::OnTimer(UINT idEvent)
{
idEvent++; //when a time event occurs do some
pointG2.y-=3; ... |
Forum: C++ Feb 2nd, 2007 |
| Replies: 9 Views: 2,132 If you want to do something comercial, better learn C++.
Ross |
Forum: C++ Feb 2nd, 2007 |
| Replies: 1 Views: 977 This CreatePen call is failing after repeated calls
HDC hDC;
hDC=GetDC(hWnd);
apen = CreatePen(PS_SOLID, 1, colorG[7]);
oldPen=(HPEN)SelectObject(hDC, apen);
...line drawing stuff... |