I am planning to buy Nokia Lumia 1320 mobile phone for personal use and for testing Windows mobile applications using VS 2013. I would like to know if it is possible to upgrade the phone to Windows Mobile 8.1. -- "Programming is an art that fights back!"
rp_suman
Posts
-
Windows Mobile 8.1 compatibility of Nokia Lumia 1320 -
CTabCtrl - retrieving tab's title textThanks, It is working after initializing all the required members tcItem.pszText and tcItem.cchTextMax along with tcItem.mask.
-- "Programming is an art that fights back!"
-
CTabCtrl - retrieving tab's title textHow to get the title text CTabCtrl's tabs? The following code is crashing at the last line:
TCITEM tcItem; tcItem.mask = TCIF_TEXT; m_ReportTabCtrl.GetItem(ID_PANE_FOUND, &tcItem); CString csText = tcItem.pszText;
Thanks & Regards-- "Programming is an art that fights back!"
-
ajaxHere are some links for you to explore: AJAX Tutorial[^] Simple AJAX implementation for ASP.NET Web applications[^] AJAX Tutorial[^] ASP.NET Spiced: AJAX[^] AJAX Wiki[^] Regards
-- "Programming is an art that fights back!"
-
Using ShellExecute to open a web page as a child of DialogIf you want to open the URL in IE even if it is not set as default browser:
ShellExecute(NULL,"open","iexplore.exe", csUrlToOpen, NULL, SW_SHOW);
Regards-- "Programming is an art that fights back!"
-
Good-Bye AdobeWould like to add one point: When I was beginner level VC++ programmer, I lost almost a week debugging an EXE crash while selecting a file using CFileDialog dialog from desktop. The reason was one of the Acrobat Reader DLL. It was loaded whenever the crash happened. Got the solution from my colleague, then updated my question with answer in codeproject. I've written a mail / updated through their own forum to Acrobat that time, obviously there was no response.
-- "Programming is an art that fights back!"
-
waveOutOpen Working Properly but Voice is LowDid you check the return value of waveOutOpen is MMSYSERR_NOERROR or not?
-- "Programming is an art that fights back!"
-
Changing the location of a CFileDialog.You can.. use CWnd::SetWindowPos[^] with the instance created for CMyFileDialog.
-- "Programming is an art that fights back!"
-
How to write a existing bigger binary file into small/compact binary file in C.Hope below links will help you: fastest c++ file compression library available[^] Cabinet File (*.CAB) Compression and Extraction[^]
-- "Programming is an art that fights back!"
-
Error : can not open file "hid.lib"i've actually meant library path only.. thanks for the correction.. regards
-- "Programming is an art that fights back!"
-
Error : can not open file "hid.lib"Ruchira Patel wrote:
fatal error LNK1104: cannot open file "hid.lib"
Check if the file mentioned in the error message("hid.lib") is present or not. If the file is in some 3rd party libraries installed in system, give the correct path in "Additional include directories" option of your project settings.
-- "Programming is an art that fights back!"
-
what is maximum num of threads use in application?You could find lot of articles by googling. Here some useful links: Multithreading with C++ and MFC [^] Multithreaded Applications using MFC[^] Creating a Multithreaded SDI Application[^] Regards
-- "Programming is an art that fights back!"
-
code generation failedOnce try creating some new project of same type(SDI/MDI/Dialog) of your application and try compiling it. If the above test ok then, There can be many possibilities: Try clean & rebuild of your project. One reason could be compiler runs out of space - If your project size is very big, try splitting your project into smaller modules and compile. Check if there is any call to macro(#define) is done inside any destructor etc.. Regards,
-- "Programming is an art that fights back!"
-
Z orderWhat kind of controls are they(C1 & C2)? If you could be more specific what to do you want to achieve, its easier for people to help. Regards,
-- "Programming is an art that fights back!"
-
Pathby googling[^] you can get most of the answers without posting it again and can save time.
-- "Programming is an art that fights back!"
-
Application errorSee if this tool helps: Dependency Walker[^] Regards
-- "Programming is an art that fights back!"
-
how to find memory leaks in attached dll-- "Programming is an art that fights back!"
-
help needed about helpAnthony Appleyard wrote:
(1) Where is a program to make helps in the new format?
I hope this link will help you: HTML Help: Context-Sensitive Help for Your Programs [^]
-- "Programming is an art that fights back!"
-
CHtmlView - zoom in/out on Ctrl + mouse scrollHow to implement the zoom in/out on Ctrl + mouse wheel scroll functionalities of IE browser in CHtmlView? Any ideas would be highly appreciable.. Regards
-- "Programming is an art that fights back!"
-
delete"Project" menu -> Properties(last menu) -> C/C++ -> Advanced -> In right side "Compile As" -> "Compile as C Code(/TC)".
-- "Programming is an art that fights back!"