When trying to compile a Beta2 project in RC1 I get this error: C:\Misc Projects\VSNET Samples\NetSamples\PeerChat\PeerChat.resx Resource transformation for file 'PeerChat.resx' failed. Invalid ResX input. I get that error for every resource file, any ideas? Any help is greatly appreciated. Thanks. Bret Faller Odyssey Computing, Inc.
Bret Faller
Posts
-
VS.NET Beta 2 -> RC1 Resource problems -
Question about operator newIts telling you that set_new_handler function is not a member of the namespace std. Instead of std::set_new_handler you should use NewHandlerSupport::set_new_handler Bret Faller Odyssey Computing, Inc.
-
IWebBrowser2->ExecMB(...) problemYou can use the Navigate2 function and pass the flag navOpenInNewWindow and use about:blank for the URL. Bret Faller Odyssey Computing, Inc.
-
chtmlviewYou need to get a pointer the the IHTMLDocument2 interface which can be done like so:
IDispatch* pDisp = GetHtmlDocument();
IHTMLDocument2* pDoc = NULL;
pDisp->QueryInterface(IID_IHTMLDocument2, (void**)&pDoc);
IHTMLElementCollection* pColl = NULL;
pDoc->get_forms(&pColl);Then you can browse through all the objects on the form (document) by using the methods of the IHTMLElementCollection interface. Hope this helps. Bret Faller Odyssey Computing, Inc.
-
Desktop Icon text colorDo you know how to get the hue/luminance of a color? That is what its based on. Thanks. Bret Faller Odyssey Computing, Inc.
-
Desktop Icon text colorBut how do I find out if its black or white? Also, there is a utility called SetTextColor made by Pact Software www.12ghosts.com which says they send a message to the desktop telling it to change the icon text color...how do they do that? Thanks. Bret Faller Odyssey Computing, Inc.
-
Desktop Icon text colorHow can I find out what the color of the desktop icons' text is? It looks like GetSysColor won't do it. Any help is greatly appreciated. Bret Faller Odyssey Computing, Inc.
-
Check boxes and HtmlViewThis is a nice article and I thank you for your response. The problem is that this is for CE and is a CCtrlView which uses DISPLAYCLASS (the name of the html control class under CE). Is it still possible with this as the base class or do I need to redo this class? Thank you once again for your response. Bret Faller Odyssey Computing, Inc.
-
Check boxes and HtmlViewGood day, How would I go about determining whether a checkbox is checked/unchecked on a webpage inside my HTMLView? This is a custom webpage that I have the source and know all the info about it. The view doesn't allow users to cruise the net, its like the Outlook Express startup page. Any leads/info/help is greatly appreciated. Bret Faller Odyssey Computing, Inc.
-
What does 'handle' mean ?I believe that a pointer is an actual object (CWnd for example) and a handle is the location in memory of that object (or object referenced by the pointer). So say you have a window in memory and you want to access the methods/properties of that window...you would have a pointer/object that "attaches" itself to the window at that memory location thereby giving you access to its "structure and methods". Hope that helps. Bret Faller Odyssey Computing, Inc.
-
MFC ActiveX and InterfacesYou should have a .tlb file which in ClassWizard you can select New Class from Type Library and it will generate the cpp/h for the type-library. Also, if you don't want to have the header/cpp files you can always do an #import. Bret Faller Odyssey Computing, Inc.
-
Filling a Solid RectActually its my own custom GetItemRect function because this is for a multiline ListCtrl that I am making and it determines the size of the row based on how many lines of text the biggest subitem has. It takes the itemid and the original rect of the item which comes from the DRAWITEMSTRUCT in my DrawItem function and then it inflates it based on how many lines of text are in the biggest subitem. Thanks for your response though. Bret Faller Odyssey Computing, Inc.
-
CListCtrl and Selection...Well if you are doing the processing in a loop then you could just set the ItemState to Nonselected as soon as you are done processing that item and then when all processing is done set the selection mark to -1. Bret Faller Odyssey Computing, Inc.
-
OL2k Addin DLL ProblemDo you have any idea at what point its having the problem exactly, and if so, what does the code look like? Bret Faller Odyssey Computing, Inc.
-
CoGetMalloc under Windows CEI've done this exact project and I used CoTaskMemAlloc/CoTaskMemFree and malloc/free for allocating buffer space. Bret Faller Odyssey Computing, Inc.
-
Property list like visual studio??Look in the List Control section here on CodeProject, I was just there. Bret Faller Odyssey Computing, Inc.
-
Is it even possible to create a multiline CListCtrl in report mode?Its possible. http://www.codeguru.com/listview/ReportCtrl.shtml Bret Faller Odyssey Computing, Inc.
-
SMTP Commands (Read Receipts)Thanks for your response. Actually it is Disposition-Notification-To:
It took me forever to find this. I first thought it was Read-Receipt-To but it never worked. Bret Faller Odyssey Computing, Inc.
-
SMTP Commands (Read Receipts)Good day, Does anyone know how to request a read receipt through an smpt command like NOTIFY or RET or anything? I've been looking all over the internet but can't seem to find anything on it. I know how to do it programatically using MAPI and Outlook but I have an smtp wrapper class and want to use a straight code rather than using MAPI, etc. Any help is greatly appreciated. Bret Faller Odyssey Computing, Inc.
-
ATL/COM QuestionVery nice clarification. Thank you very much for your response. Bret Faller Odyssey Computing, Inc.