Forum: C++ Oct 5th, 2009 |
| Replies: 7 Views: 198 Thanks. I will need to upgrade to vs2008.
Ross |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 198 Thanks, I will put my mind to it. |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 198 Thanks, I will research that process.
How does one gain a trusted certificate? |
Forum: C++ Oct 4th, 2009 |
| Replies: 7 Views: 198 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: 650 Thanks for your help.
Ross |
Forum: C++ Mar 22nd, 2008 |
| Replies: 4 Views: 650 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,629 The cost of MSDN is way more than a hobby programmer can justify |
Forum: C++ Jan 22nd, 2008 |
| Replies: 11 Views: 1,629 Unfortunately none of the samples have mouse functions.
Ross |
Forum: C++ Jan 21st, 2008 |
| Replies: 11 Views: 1,629 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: 781 Already tried it, but thanks for the thought.
Ross |
Forum: C++ Apr 26th, 2007 |
| Replies: 2 Views: 781 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,912 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,912 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,154 If you want to do something comercial, better learn C++.
Ross |
Forum: C++ Feb 2nd, 2007 |
| Replies: 1 Views: 996 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... |