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. VC++ 7.x
  2. OnHelpInfo()
  3. getting rtf body of emailitem
  4. Ok gurus, Here's a fun challenge
  5. CAnimateCtrl - XP Manifest Control Mangles AVI
  6. No read from Cache
  7. How to read in ShellExecute output?
  8. Linking in non-debug DLLs in a debug project
  9. Anyone famillair with OpenSSL on VC6?
  10. Is there a "TAIL -f" equivalent in C++?
  11. MSAGENT context menu PROBLEM
  12. 1.#inf00000
  13. Please help!
  14. Problem with calling UpdateDate in an independent thread
  15. Microsoft stops support for VS 6.0??
  16. Buttons in CListCtrl
  17. Recursion Error [vc++]
  18. Putting a slider on dialog box causes error
  19. Problem with RegEnumValue
  20. Setting Decimal Places
  21. Problem - Assign Null to a Pointer
  22. Converting IP in CString form to dwAddress
  23. Controlling Mouse Position
  24. resource id number
  25. update VC6.0 tooltip displaying class members
  26. image displayed only if AfxMessageBox is added. please help
  27. grid control,focus!
  28. auto VScroll in Cedit box
  29. Getting hWnd to a Console App
  30. Localized string resources
  31. How to Pass some state variable while calling DoModal()
  32. How to Change IP using Winsocks
  33. a strrep function
  34. File Properties dialog
  35. Double-Click on ListCtrl Not Working !
  36. EnableMenuItem not working
  37. CMDIChildWnd with a menubar?
  38. _tmain() question
  39. Using third party libs
  40. Getting Started
  41. A Beginners Question
  42. strings and numbers encryption with wincrypt.h
  43. Can't delete when doing in-place editing in CListCtrl
  44. To restore menu items of context menu in IE after adding custom items
  45. how to retrive the numbering in office automation
  46. refresh in Visual C++
  47. F10 key activates Menu Bar
  48. PowerPoint Automation
  49. Thanks Golanshahar,but ...
  50. Item selected but not highlighted in CListCtrl
  51. i can load my dll, but why can't i use it?
  52. Process should not be killed from task manager
  53. Strange problems with CFileDialog
  54. Display text or image in Dialo box (VC++.MFC)
  55. OnMaxtextEdit2
  56. MS Word Automation
  57. Creating a new folder
  58. Porting from Win2000 to WinXP
  59. copy paster a jpeg pic in different resolution
  60. Merging proxy\Stub code in ATL attributed project
  61. CString Concatenation Not Working !!!!
  62. Using XP Look in COM DLL ?
  63. tricky work with listview item - finder the column # when you modify the order.
  64. .Net Custom DDX
  65. Visual C++ FreeType Runtime Error
  66. Extended CFileDialog checkbox problem
  67. using namespace System;
  68. HELP!! Programmin with a binary file...
  69. Modeless Dialog Box
  70. How to solve this fatal error C1001: INTERNAL COMPILER ERROR
  71. ListBox with flat scrollbar
  72. File Transfer links required
  73. CDatabase::OpenEx exception
  74. CFileDialog for choosing a file...for a Directory ??
  75. Memory File
  76. SDI Application menu background appears white
  77. Problem while debugging
  78. pls help!!!!!!!!!!1
  79. Screen Design is distrubed in my program. Why?
  80. question of get info from taskbar
  81. Clean exit from initinstance of a dialog.
  82. HANDLE vs Pseudo-HANDLE
  83. to check radio button in another dialog
  84. Undeclared IdentiFier?????
  85. Use of Narrator and other screen readers
  86. Saving & restoring Files & Folders
  87. Debug error in cpropertysheet::removepage()
  88. Problem with CArray
  89. VC6 and the PLATFORM SDK
  90. Problem with cvBoundingRect
  91. Problem with unicode data
  92. Problem in Radio button and OnInitDialog..VC++ MFC
  93. Manipulating environment variables
  94. OnNcPaint()
  95. How to Save data from property Page ?
  96. A Message-Only Window...
  97. detecting USB cameras
  98. recordlock MDAC (ADO, DAO **** ? )
  99. CTreeView with dynamic Item list
  100. Inserting TimeDelay between statements
  101. Sending Password in an HTTP feild
  102. ScreenCapture and Saving in to .Jpeg file
  103. How can I put some number on the system tray.....
  104. static_cast vs dynamic_cast
  105. dll exitinstance never called?
  106. Bitmap File Size Calculation ???
  107. Movable toolbar
  108. Algorithm for Random number generation
  109. content is change when change type from char to int
  110. CHunk Data Transfer
  111. Property Pages : mixing native and COM
  112. problem while using ON_WM_LBUTTONDOWN() in CHtmlView
  113. BSTR to string
  114. -1.#IND and 1.#INF
  115. Java vs C++
  116. VC6 to VC7 port
  117. C++ DLL - Need Help!
  118. HELP:Error code 716
  119. Binary issues...
  120. error LNK2005
  121. Char pointer help.
  122. Executing command lines using vc++
  123. Please please help
  124. How to wait for a file to exist? to be modified?
  125. C1083 problem using VC6.0
  126. How to create an Excel spreadsheet from a VC++ 6 application
  127. Is there any Thesaurus/Dictionary ??
  128. Linking problem between projects of a workspace
  129. Icon transparency lost
  130. Setting default button for CFormView at runtime
  131. HWND type and COM DLLs
  132. min()function
  133. strsafe.h
  134. Scrolling support on MDI splitter window application
  135. Finding pst files in the system
  136. printing of bitmap client area
  137. ODBC execution
  138. Selecting an item in a CTreeCtrl
  139. Memory Leak.....
  140. how to create dialog based app in win32 without using resource?
  141. resizing a window
  142. PROFILEr woes
  143. Auto run program fail?
  144. Simple question about edit box
  145. TreeCtrl Problem????
  146. CListBox and CListCtrl
  147. Combo box SetFocus() calls OnKillFocus
  148. Help Me With the Tape Backup Problem
  149. HELP:Error code 0x0000716
  150. Synchronize simple question
  151. drawing transparent bitmap
  152. Simple Editbox questions
  153. launching application from html page
  154. OCX link to ATL or MFC
  155. Storing current time into file
  156. Unicode MAPI ****
  157. compiling error
  158. will this correctly read and write unicode?
  159. Resizing Dialogs with Buttons
  160. Full Screen Mode bug
  161. Using bytes
  162. Access voilation error linking my dll
  163. ShellExecute runs in parallel?
  164. How do I append text to a MFC CEdit dialog?
  165. How to handle Keyboard events in CHtmlView
  166. Running proccess EAX info
  167. how to read a file without fscanf parsing whitespace?
  168. Ms_chart
  169. Expand Dialog to Show Additional Controls
  170. Replcaing a part of text in a file
  171. Inserting Newlines in EditBox in MFC
  172. dll loading problem...
  173. How to check if file has been modified?
  174. Subclassing CDialog into Child Form
  175. LNK2019 error, please help!
  176. How to find a CMemFile
  177. I cannot transfer whole .h, .c so I have to solve this error
  178. How to include .rc file in another .rc file
  179. Link error in VS .NET 7.0 for WSAStartup
  180. CListCtrl and GetItemCount
  181. Handling an interrupt request
  182. strange errors
  183. Cannot select item in CListCtrl
  184. Detect MFC error, then rebot
  185. How to close the exe program?
  186. keep getting error
  187. Preventing child windows from maimize or minimize
  188. How to randomly sort big arrays
  189. help with this code snippet
  190. Debug mode ok, but Release mode fail
  191. project 352
  192. dynamic SAFEARRAY
  193. error C2664 with InterlockedExchangePointer
  194. Messenger type text control
  195. Funny, cannot detect CInternetException
  196. Printing image?
  197. How to dock a dialog to SDI window
  198. printing a captured bitmap
  199. Delays under 1ms
  200. How to get the systems audio volume value
  201. when application considered to be hung?
  202. Help required on generationg random number
  203. how to draw a barchart in splitterwindow
  204. changing text color in virtual list controls
  205. Access Violations...
  206. Limit to Application Single Instance
  207. Printing centimeters
  208. CBitmap resolution...?
  209. HWND handle
  210. CToolBarCtrl::AddBitmap() gives me trouble in afxcrit.cpp
  211. Getline Using Multiple Delimiters
  212. bring window to top
  213. How to minimize Modal Dlgs to the taskbar?
  214. How to make a SDI always on top application
  215. File | Edit | Help menu removal?
  216. MS CHART Help!!
  217. undeclared identifier..!! after copying !
  218. Setting readonly attributes and file access time
  219. Using zlib.dll in Visual C++
  220. debug assertion error
  221. CComboBox list doesn't show?
  222. Dialog variables and Arrays
  223. Regarding keeping window always on top
  224. How can i use IMsmMerge, mergemod.h?
  225. Converting SDI to MDI
  226. Changing a mouse pointer over static text
  227. Calling VB
  228. HANDLE problems
  229. CoCreateInstance fails returning class not registered
  230. Toolbars and Dialogs
  231. basic question
  232. Please please Help me
  233. Reading from file using fgets while VBScript has it open?
  234. Selection Change in ListBox Not Working !!
  235. Searching Files and folders
  236. how to excute cursor/fetch with mdb?
  237. Disabling a Tab in a Tab control
  238. How to release the allocated memory?
  239. change menu Font size
  240. enable/Disable Hardware devices
  241. data[-100] = 1, no error !!!???
  242. Resource in dll problem
  243. MFC reporting tools?
  244. Override any function in DLL
  245. Get information from a RichText
  246. memcpy causes crash
  247. getting all pixels in a bitmap
  248. If Application is Closed do smthing
  249. Missing constructor at linkage
  250. Remove DAO calls