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. C++ Linked List Issues
  2. Returning Values Question
  3. ID3DXFont::DrawText Method and tilde
  4. Eliminating repeated values in std::vector
  5. How can use Socket Connection Timeout?
  6. Captureing Shortcut Keys When Any Window In Application Is Active?
  7. Creating a Loop
  8. Help with a loop
  9. Not the right answer
  10. System Dll injection
  11. how to change the blue highlighted background in the selectionmode listbox
  12. Debug compiles, Release doesn't: _ITERATOR_DEBUG_LEVEL?
  13. std::vector<boost::dynamic_bitset> > initialization???
  14. Connect to DB2 without creating Data Source
  15. Remote Debug using Visual C++ .Net 2003
  16. Linking problem - unresolved external symbol
  17. How do you write applications in c++?
  18. Switch Help
  19. vector and namespaces in VC
  20. deploy error
  21. voice recognition library
  22. Is browser simulation possible (similar to perl's WWW::Mechanize)
  23. Almost there!!! only 2 issues, a loop, and a calculation
  24. Help w.one dimensional array
  25. How to keep console open at end of IDE debug session?
  26. Find "Application xxx has performed an illegal operation" error
  27. font size in workspace
  28. Video card programing
  29. Question on MFC program exectution procedure
  30. create database by coding using mfc
  31. WUA API - Trouble with IUpdateDownloader::BeginDownload()
  32. Finding all the windows in my app
  33. Ctreectrl problem
  34. How to process image without using cximage() in vs 2005?
  35. How to load image into array and process it without using cximage()?
  36. Query issues - ODBC Microsoft Access Driver error
  37. OnDrawItem fails!!! Help !!!!
  38. remove unwanted resource VC6
  39. why this peace of code not runs well
  40. Glui Browse
  41. [RESOLVED] Newb Here Getting Linking Code
  42. Beginner looking for help
  43. Ctreectrl under Win7/Vista
  44. do while aggrivation
  45. Project 4
  46. Active Menus
  47. Space between lines
  48. OpenCV + Command Line Interface
  49. Some direction help pls multi threading etc....
  50. Programming Project
  51. Function overloading fails to compile?
  52. vector containing pointers to another vector
  53. Am I ready for C++ and MFC ?
  54. Is it possible to access an external program listbox
  55. Hangman game need help!!
  56. [RESOLVED] Ho can set date and time value in excel by excel automation?
  57. Capturing Event
  58. Need Help on Controls
  59. Pointers
  60. Class CxxxView :public CView
  61. how to set X and Y axis range from MFC dialog box?
  62. Beginner needs code explained....
  63. [RESOLVED] Portability
  64. Text file to array
  65. Is it possible to use WideCharToMultiByte with Letterlike Symbols [like "™"]?
  66. new to C++ errors
  67. threads
  68. Welcome window
  69. Step into operator new
  70. Bizarre problem with relative Z-ordering of parent/child
  71. Could you please explain to me why this does not work ?
  72. [RESOLVED] how to get all the running processes on winxp and save to text file
  73. [MFC] No Idle Messages when no mouse/keyboard activities
  74. How to distinguish between c and c++?
  75. Template metaprogramming problem
  76. help with looping structure
  77. SCardTransmit and T=1 Protocol
  78. Issue 0x800705aa Insufficient System Resources exist to complete the requested servic
  79. [Help] Rebuild/Compiling a project errors
  80. How to send Emails from MFC
  81. msvcr100.dll missing problem
  82. DirectShow has problem with libraries
  83. New to C++ and need some help!
  84. How can I fit a random data set o a CView graph display?
  85. Regarding Exception handling
  86. Problem while exporting Values from DLL
  87. WaitForSingleObject
  88. Controlling Shockwave Flash Object
  89. Set Sided Polygon in C++
  90. breaking a program using a word
  91. How can execute a query to find some value?
  92. [RESOLVED] AfxbeginThread Terminate
  93. VS 2010 error at any #include <>
  94. how to make a call thourgh sim card
  95. to many include files
  96. HBITMAP to char* conversion
  97. unresolved std::list - what should I be looking for?
  98. Peter Kovesi edge linking algorithm in c++ code
  99. error C2011: 'FuelGauge' : 'class' type redefinition
  100. [RESOLVED] Snake
  101. Visual Studio Command Prompt
  102. Something clever in libboost
  103. Minimum number of "baskets"
  104. Problem with explicit instantiation
  105. Finding the Handle of a Window
  106. MfcMenuButton
  107. Dump Analysis issue
  108. Accessing a member variable
  109. Link error with VS10
  110. LPCSTR vs "some text"
  111. Game development books recommendations?
  112. [RESOLVED] Help with std::map, struct as key
  113. Could someone compile this for me?
  114. Define a class, which implements arithmetic with arbitrary precision
  115. Halt some windows process
  116. SendMessage
  117. [RESOLVED] More than 1000 allocations in MFC project
  118. [RESOLVED] Question regarding linked lists
  119. error LNK2019: unresolved external symbol
  120. Linking err
  121. Problem with Array and string
  122. #import not working any more
  123. Convert Basic C# DLL to C
  124. Problem with COleDateTime Status
  125. void GLUI::close( void );
  126. Reading a text file
  127. A question regarding project property
  128. [RESOLVED] Query for non-dockable toolbar.
  129. From int to little endian integer
  130. error LNK2001: unresolved external symbol IID_IPOutlookApp2
  131. What is the difference between a win32 console app. and a CLR console app.
  132. Switch Context - debugger VC2008
  133. Confusion over the MIB_IFROW Structure
  134. logf macro in math.h
  135. MSVC and C99
  136. Press Enter Twice
  137. Win32 Clock
  138. Controling Molex Power with C++
  139. OwnerDraw buttons
  140. VS6:bad optimized floating point comparison. Is it a bug?
  141. Display exe at task bar
  142. MP3 Player
  143. Volume Control
  144. how to convert TCHAR[] to const char[]
  145. Why my CRecordset::Open is throwing Exception?
  146. Assertion failure at SetWindowText
  147. A question regarding unhandled exception
  148. Is there any way to tell if "this" computer is a portable system?
  149. MFC Support on Windows Service
  150. Silent Mode Installation
  151. [RESOLVED] Control
  152. Linking problem
  153. Resources ID based on other resources ID
  154. how can find how thread running in my application
  155. __declspec(dllexport) stopped my code from working
  156. Library for loading and saving text files?
  157. need help with c++ classes
  158. Pipes and Windows 7
  159. Resize CListBox
  160. Ownership issues
  161. Why does my graph plot disappear ?
  162. Basic image histogram
  163. [RESOLVED] CDockablePane Background repaint
  164. Reading a character
  165. How to catch all the exceptions?
  166. Desktop Coordinates
  167. Loss of Persistance of Object
  168. need help in C++ functions
  169. Problem with AudioMixer
  170. Using CSplitterWnd OnCreateClient to split window
  171. fastest vector iteration
  172. Heap corruption on deleting a class with a std:vector member
  173. try/catch don't work under release version???
  174. Change entry in .def at compile time
  175. Problem with Microsoft Forms 2.0 Label Control
  176. c++ read file help
  177. gps system
  178. Vector on Stack or Heap
  179. Templates and Inheritance interaction
  180. Global Keyboard Hook
  181. reading files
  182. Newbie to C++ requesting assistance from the gurus
  183. How to show different window layout
  184. A simple answer to adding button to CListCtrl?
  185. palindrome
  186. Encoding Headaches... and JNI
  187. Problem with pointer "this"
  188. Callback (TIMERPROC) to a c++ class function ??
  189. listing folders and files on windows 7?
  190. Porblem while hiding a Dialog Window
  191. Heap corruption detected while freeing memory
  192. [RESOLVED] Refresh desktop like F5
  193. vc++ 6.0 mail
  194. Displaying MessageBox
  195. (Beginner) How to create histogram?
  196. STA conflict warning
  197. What's the best way to process errors in a DLL?
  198. Anyone know how to set a dialogbar within a splitter window?
  199. migration from VC++ 6.0 to Visual Studio 2010
  200. ON_CONTROL_RANGE and right button click
  201. How to retrieve Logical drive info
  202. Guide me thru dis as soon as possible
  203. When recieve WM_DESTROY, why does the program still runes work function?
  204. Read from file optimization
  205. Problem regarding histogram - REFRESHES
  206. How i can make this.
  207. Calculating no. of bytes between first and next pattern
  208. char vs int arrays
  209. Console application - basic question
  210. [RESOLVED] Linked List - Addng entry at the end
  211. data transfer from text file to a single array
  212. How to open a dialog form from a windows form button?
  213. Problem with 2 try/catch blocks
  214. help on control update from a thread
  215. fatal error C1100 on VC9
  216. Problem with VS 2010
  217. Add controls to a drop-down menu
  218. Windows SOCK_RAW limitations
  219. Review of structured exception handling
  220. Problem using pointer to member function
  221. [Wince 6.0]Pointer dereference crash
  222. How can Terminate AfxbeginThread ?
  223. Getting logical drives of all Physical drives
  224. Detecting memory leaks (VC8)
  225. [RESOLVED] NOTIFYICONDATA dwInfoFlags problem
  226. Using system()
  227. How do I make a function deprecated?
  228. Variable type
  229. Is it possible to tell if a network adapter is actually connected to a network?
  230. Error when converting VC 6 project
  231. Precision in C++
  232. ExtTextOut
  233. Call managed .Net from COM dll
  234. CListCtrl: variable columns per row?
  235. Binary Tree copy
  236. Inter Process Data Exchange
  237. [RESOLVED] What wrong with this loop?
  238. Cycle through dialog controls
  239. Can we use CHeaderCtrl directly?
  240. Runtime Error R6025 - Pure Virtual Function Call
  241. Use of /RTC run time checking debugger option
  242. manipulating the text file!!!
  243. Simple Checksum question
  244. How can I redirect error output from a DLL?
  245. Would like info on your experience with 64-bit compiler
  246. Bolding ccomboBox item
  247. How to reset screen saver idle timer?
  248. [RESOLVED] Question for Static control with Notify property.
  249. c++ file operation problem
  250. Why can't I inialize this struct?