Click to See Complete Forum and Search --> : Visual C++ Programming


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 [1010] 1011 1012 1013

  1. Makefile in MS Visual Studio 2008
  2. how to check if char* is == "" ?
  3. Program Hint Balloons/Tooltips
  4. Popup menu does not show mnemonics
  5. Change color of combo box
  6. VC++6 Writefile return 0 bytes written in Windows 7
  7. Permanently removing a file
  8. Conversion of ASCII to Hex
  9. Problem with CreateProcess
  10. How to best describe a project to a prospective employee ?
  11. dll loading itself launching the application
  12. Bugger cursor
  13. Drag and drop within an application
  14. MFC serialization. Reading in a vector without knowing the size
  15. Starting windows processes with UI in the background
  16. Calling HtmlHelp programatically
  17. Uart communication between arduino microcontroller and PC using visual C++ 2010
  18. Problem with #include
  19. common language runtime support error for dll
  20. Why is my File Properties Dialog sooo.. sloow
  21. UINT_PTR is not a pointer
  22. Embedded IDL generation problem
  23. Button remove
  24. adding a destructor to a linklist
  25. Cplitter & Views
  26. Maintaining HINSTANCE handle and freeing library
  27. Lateloading of x86 / x64 bit DLL keyboard files and init defines
  28. Problem Saving Large Bitmaps
  29. Download URL to File
  30. [RESOLVED] Winsock fails after 1 hour
  31. TREELIST control
  32. Preparing for midterm exam
  33. Disable resizing of pane in MDI MFC app
  34. C functions
  35. Help needed Breadth First Search & Depth First Search
  36. how to get m_hWnd from modal dialog
  37. Problem with WaitForMultipleObjects
  38. dialog size unchanged
  39. CMonthCalCtrl doesn't work appropriately under windows 7
  40. localhost socket control
  41. VC6 on W7+VS2008
  42. Common Folder Acess
  43. SetSel();
  44. ComboBox + LPWSTR
  45. Define struct in a header file in C++
  46. include file afxhh.h not found
  47. C++ Password Hashing App.
  48. Difference between const & and const *
  49. CWebBrowser2: detect NavigateComplete2 after user click and new window
  50. callback functions
  51. Client connection problem (winsock)
  52. Renomming the dll changes the soft behavior
  53. Help please!!
  54. Draw text but leave background intact
  55. File read confusion
  56. Self regenerating IAT table
  57. C:\ drive - help !
  58. Adding new Socket
  59. Need Help compile this code i found
  60. [RESOLVED] ftream
  61. Confused C++
  62. [RESOLVED] C++ operator.
  63. [RESOLVED] Craetewindow in Win32 dll VC6.0
  64. replacing text in .doc file containing image
  65. TreeCtrl font reverts to system
  66. Get organizational unit (OU) name on a local computer
  67. Unhandled Exception: Access Violation
  68. find job as programer
  69. Strange Problem: Runtime behaviour
  70. Function which finds the given word in the line
  71. HDC dc to CBitmap issue.
  72. Problem with RS232 communication
  73. CListCtrl problems
  74. How to fix 'Access violation reading location' in mfc100d.dll?
  75. Help with DrawFrameControl
  76. Help Me Please
  77. Pass by Reference help
  78. MDI application
  79. Using Crypography to encrypt/decrypt information
  80. **** silly question aka ***?!? aka Lifecycle of my variable
  81. how to prevent changing selection in a list box
  82. [RESOLVED] App crash just after initiating drag and drop...
  83. Help getting started Please!
  84. SetSuspendState() hangs up, why?
  85. Array as class member
  86. Threads in Exported Functions of a Win32 dll
  87. CDocument::GetPathName() returns empty string for relative path
  88. Unable to implement DIB printing with GDI (MFC)
  89. fscanf() - what am I doing wrong?
  90. Errors C2143 and C2106
  91. Service error 1053 windows 7
  92. Saving Data in an MDI application
  93. uninstall windows service
  94. [RESOLVED] MFC or QT?
  95. New to C++, declaring a string issue
  96. What slows Intellisense in VS 2010?
  97. How to know when the system enters shut-down state?
  98. PIC18F4550 with C++ coding for brightness using LDR
  99. Newbie!
  100. Java container types counterparts in C++
  101. Old dialog HTML Help problem revisited
  102. htmlhelp API pressing the cancel button
  103. form label to a number?
  104. how to prevent chaning selection in ListView
  105. Set Text In Another Application's Dialog Box?
  106. How to identify a window playing a video in a browser
  107. Findfirst() and findNext() in C
  108. how to represent the file extension in StringCbCatN()
  109. printing strings using cout
  110. MySQL/C++ SQLString.h missing
  111. English Interpretation please.
  112. Static lib question
  113. Very simple C++ question.. (Binary > Decimal)
  114. CreateProcess inside NPAPI plugin
  115. Visual C++ 2010 form designer
  116. Capturing Audio data from Windows XP
  117. I get an error 10061 on my connect()
  118. making a class 'parametric'
  119. finding corrupted memory
  120. Deleting this particular std::map
  121. Is 2D cliext::vector myth ??
  122. Drawing semi-transparant pics
  123. Log into a website automatically
  124. Heap corruption error in C program on VS2010 when freeing memory
  125. Allow Ipaddress which is in CIDR range
  126. [Help/Advice needed]Program crashes when code is injected
  127. How to use DeviceIoControl to access an external USB device from MFC
  128. MS VC++ Syntax Error ')'
  129. Radio button text color not set
  130. LoadCursor()
  131. any expert in visual c++
  132. Doubt in Date & Time Picker Control
  133. [RESOLVED] how to draw a selection rectangle that able to move in all directions
  134. Do threads have their own stack?
  135. Accesing a computer using ip addres and port
  136. Strange problem with isalnum()
  137. function evaluation Q
  138. [RESOLVED] need help with CToolTipCtrl show hide fixed position
  139. Program Question
  140. C++ GUI Programming Advice
  141. Setting global environment variables & later propagation w/o rebooting or logging off
  142. HELP! What Am I doing wrong?
  143. Conversion errors- how to get rid of it.
  144. Problem with CreateProcess in windows7 & vista
  145. ntwdblib.lib
  146. A question regarding InsertColumn
  147. VS6 and intellisense
  148. Is it possible to change the ip header?
  149. c++ & PSP programming
  150. How can a dialog have two different icons?
  151. Hosting Winforms UserControl in CDialog focus problem
  152. Multiple window mouse handling
  153. Failure of CDC::Ellipse() function
  154. Error C2440: '=' : cannot convert from 'const char [5]' to 'char'
  155. Using COM DLLs with with unmanged c++
  156. How to save a CString to an RTF file?
  157. Coding Project, need assistance :)
  158. What am I doing wrong?
  159. Returning to main() from function
  160. Basic C++ question regarding pointers - delete causes debug assertion
  161. How add user32.lib to my linker inputs?
  162. Always showing last line in Edit Control
  163. Question about casses
  164. Function draw help.
  165. ORALDAPCLNT10.DLL Access violation
  166. 3d dynamic array causing heap free error at program exit
  167. Pack folder using C++ (zip, rar, gzip, 7zip)
  168. IImagingFactory ... Memory leak?
  169. Convert from fahrenheit to celsius
  170. [RESOLVED] Can I make WMI calls from a local C++ service?
  171. fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
  172. trouble with _bstr_t
  173. stdext::hash_map with a max capacity of 256K?
  174. Help with Valentine's day special worm
  175. Problems Compiling LibZip framework
  176. CTabbedView Composition
  177. split stirng into words using regex
  178. Simple question about dynamic concatenation
  179. Passing array from unmanaged to managed code
  180. Compare between the similarity of rows
  181. Accessing private members of a base class
  182. Message pumps and threading
  183. problem in creating dll
  184. Global events and an app crash situation
  185. how to install activex components for mFC application
  186. Accessing web services
  187. m_combo.getcursel() changes when selection is highlighted
  188. How to download an exe from a website using source code and run it memory?
  189. How to download an exe into memory from a website using source code and run it memory
  190. Send file via email from VC++ Win32 application
  191. CHttpFile::AddRequestHeaders
  192. Web Service end point address
  193. What is an example of entry level coding? What would you work with on a job?
  194. Deleting an element from a vector through user input
  195. messagebox & child windows
  196. Disable Ribbon Category?
  197. using Tokenize in Visual C++
  198. how to use CRectTracker to allow moving and resizing it
  199. CTreeView example
  200. DatePicker locale question
  201. Non-static member function
  202. File encoding (utf-8/unicode/ascii etc...)
  203. [RESOLVED] at a loss with overloading opperators
  204. Does erase of map call destructor of key? / Behavior of CString with maps
  205. [RESOLVED] null terminating character removed
  206. Do I have to delete TEXT("...") strings?
  207. Checking whether a value is in a sorted set
  208. "Windows Explorer"
  209. How get string value of HTREEITEM?
  210. Implementation of Overloading operators
  211. Shared variables in classes of mfc project.
  212. SHA1 encoding using Windows Crypto API with Unmanaged C++
  213. practicing recursion
  214. UDP over WAN not working (winsock)
  215. printf statement not working
  216. Drawing a Bar Chat Using CList
  217. How to clear vector of pointers inside static library
  218. Memory Leak inside Static Library
  219. Corrupted Status Window Message
  220. How to select a full row in CListCtrl?
  221. Vector and Iterator Programming
  222. Writing Text using CDC
  223. Running Code Metric analysis from command
  224. shifting a 32bit in a array!!!!
  225. error C2065: СString: Undeclared identifier...
  226. Sending message between objects
  227. CreateFile problem
  228. CtreeView OnMouseClick
  229. Getting file icon
  230. Strings in VC++ 6
  231. Side-by-Side (SXS) configuration error for VC++ application made with OpenCV
  232. Modeless dialog position
  233. Issue of layout View in frame without splitter
  234. Visual Studio C++ Version 10 specific questions
  235. [RESOLVED] What event is occured on collapse in CTreeView?
  236. GetDeviceCaps issue in Windows 7, wrong size
  237. SelectedItem Icon differs with declaration.
  238. need help find out why my magnified bitmap flickers & goes out of scope after awhile
  239. vc++ 2008 problems
  240. Error Copy cLongBinary to char
  241. coding in C++ for MISR(multiple input shift registers)
  242. Leak: Allocation Number increasing by one when reported
  243. [RESOLVED] no overload for method takes 2 arguments
  244. [RESOLVED] CListView and Images
  245. [RESOLVED] Why such code don't select CTreeView item?
  246. [RESOLVED] CListView and Images in different styles?
  247. Need Help with Compiling
  248. invalid conversion from 'int*' to 'int'
  249. GUI. Problems with main function
  250. fractions gcd and simplify