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. How can I do away with the delay of RButtonDown?
  2. Languages
  3. Replacing strings in textfiles
  4. Method for image loading
  5. How delay can be introduced between two commands?
  6. List Ctrl Selection Color
  7. Thread Synchronization :: MFC
  8. Help!!!!!Problem with creating binary file.
  9. RichEditCtrl interpreting HTML
  10. Interesting Multithreading Problem :: MFC
  11. Compiler error ‘C2810’ and ‘C4584’.
  12. A button within a button by Mihai Filimon
  13. Linked List
  14. Change exe icon
  15. IE address translation (%)
  16. How to use Internet Connection in an application
  17. Overiding default CRichEditView's behaviour
  18. Converting a string into an integer
  19. how to create dynamic web pages..
  20. OpenGL: seg fault
  21. Extracting files from a .CAB
  22. Arrays
  23. Virtual Key Codes unknown?
  24. Joystick interaction
  25. raw socket dll
  26. Verisign certificate Please.
  27. Prob easy: Can't convert a void * to const unsigned short *
  28. Why CONNECTION_POINT_ENTRY compile error?
  29. Advanced ActiveX Property Page Question
  30. Learning group?
  31. how to assign values using a check box
  32. MapViewOfFile
  33. Closing Windows Application
  34. CPU
  35. how to design a modeless dislog as the Outlook receive/send mail dialog?
  36. Very very desparate - PlaySound(), MCI commands
  37. Load Bitmap
  38. .bmp structs
  39. Point Plotting
  40. How to print a char to a file and save that file as a Bitmap?
  41. Using String and CString (urgent)
  42. How to scale large dib smoothly?(Urgent)
  43. Doc-Pointer in Mainframe
  44. Monocrome Memory DC
  45. Any form dialog
  46. Child dialogs?
  47. A short question
  48. Multiple TAPI control
  49. Why did the program just ignore my unexpected-exception handler that was set by 'set_unexpected()'?
  50. Problem when closing document
  51. Mouse
  52. HELPS: MSHTML on POcket pc
  53. Problem when closing document
  54. Get filelist in a directory
  55. Socket Thread
  56. MACRO
  57. Sort coordinates
  58. Copy a rectangular region on my CFormView to a CBitmap object
  59. Convert CWnd to CBitmap
  60. How to remove the Close Icon from a CMDIChildWnd
  61. Class Problem
  62. OnCommand
  63. Alter Menu
  64. Local Network Config
  65. Problem about thread communication use PostThreadMessage and PeekMessage!!!
  66. Counting words
  67. C++ Tibits : The pre-incrementer operator
  68. Return CString
  69. C++ Tibits : A problem with \n and \t
  70. WaitForMultipleObject() and threads synch
  71. Ms Word Automation, Tables slooooooow
  72. Dialog query
  73. DateTimePicker
  74. SAPI event Probs...any speech engine experts??
  75. Diskless systems
  76. Invoke VBScript from COM
  77. Encoding Option
  78. WTL + ADO + Shape
  79. WSAAsyncSelect trouble :( returns data in stack-like order)
  80. Creating BMP file
  81. ReadFile() and a Pipe handle
  82. Reverse Engineering using Visual modeler
  83. EXE<->DLL total Spy
  84. CFile - Open or not
  85. CTreeCtrl->DeleteAllItems()
  86. DMLERR_MEMORY_ERROR
  87. SDI app
  88. Japanese resources
  89. Time Conversion
  90. popup menu into an other popup menu
  91. Direct copy to printer port under Win NT
  92. vc++ and access
  93. CRichEditView :Turning off WordWrap
  94. How to get it into the program
  95. how to set database param Null
  96. Add a foreign key
  97. Network Down
  98. Pointer Warnings
  99. C++ client for a WebService
  100. Progress bar that will change color at certain levels of progress
  101. ADO count affected
  102. CListCtrl: sorting elements.
  103. How to add a minimized_box in my dialog?
  104. How to add a minimized_box in my dialog?
  105. nt/2000
  106. Refreshing a blank window during a procedure.
  107. GetLine
  108. Accessing Data in Owner Drawn Listbox?
  109. Reading the Registry
  110. How to get network shared resources?
  111. How to enable buttons in my view ?
  112. Hotkeys and Popup Menus
  113. OLE DB
  114. Hotkeys and Popup Menus
  115. Combine system imagelist and custom images
  116. OnInitDialog message not pumped
  117. CAsyncSocket
  118. Heap Functions
  119. CAsyncSocket
  120. how to modify PE file add my dll in import table?
  121. Heap pointers
  122. Serial Communications
  123. how to searching another process' memory
  124. EndUser4gl project "Open Source"
  125. Data type conversion
  126. CreateDialogIndirect()..Nothing happens! What am I doing wrong?
  127. Bitmaps
  128. com port redirection
  129. Creating Bounding Rectangles for Bitmaps
  130. show property page of an ATL ActiveX Control in runtime mode
  131. PropertySheet
  132. warning c4024
  133. FlexGrid Control
  134. Recieving from an EditBox
  135. Automatic jumping between edit boxes when they are full
  136. MSChart Control
  137. Question about memory clean up?
  138. scroll bar on dialog box
  139. CreateProcess
  140. running program at startup
  141. MSDN=NO HELP! DLL? Only a true Code GOD can help!!
  142. How to open a notpad or wordpad in vc++
  143. Edit box Focus
  144. Dll CDCOM component on a remote machie.
  145. Message pumping in custom UI
  146. Database question
  147. Owner Drawn Listbox and Dir Method
  148. function for file compare
  149. time out
  150. Accessing generic View class functions from Doc class
  151. MS Explorer using up handles
  152. drawing to a dc
  153. Finding Application Path
  154. FileSave standard dialog in ATL based project
  155. Printing a ListCtrl
  156. File Attributes...
  157. CListCtrl as grid cells
  158. WS_TOOLWINDOW ?
  159. Dynamic array allocation
  160. help with using resources in base class
  161. Save on Database
  162. How can I get current user dir ?
  163. taskbar problem
  164. Combing two or more bitmaps into one
  165. SendInput won't work
  166. assign an edit box variable from another edit box variable by using a check box
  167. Inserting SubMenu
  168. mscomm32
  169. using VARIANT
  170. How to get the resources of Shared network Machine
  171. Drama with CAsyncSocket
  172. Finding string width
  173. CListCtrl Icons
  174. Error LNK2005
  175. add items into a combo box
  176. Programatically connect to FTP
  177. how to import information from php to c++
  178. Mouse cursor changer
  179. list control - key press quick search
  180. Low Level Graohic... C or Asm??
  181. Purpose of String Table Resource VS Defining Strings in File
  182. When adding values to the registry, the data has "..." appended to the end.. why?
  183. Why did the program just ignore my unexpected-exception handler that was set by 'set_unexpected()'?
  184. Snapshot of hidden window
  185. Speeding Up Display Time in CEditView :: MFC
  186. The use of the Function SetupDiGetDriverInfoDetail
  187. GDI's & Device Contexts
  188. edit boxes
  189. About RegKey
  190. Problem: Database need to be repaired
  191. WebBrowser control
  192. Short Cut Key
  193. How to get unlimited file selection from an Open FileDlg box?
  194. How to use seticonspacing in listctrl?
  195. Bitmap problem Pls. help
  196. Toolbar problem?
  197. insert / display / update a lot of item in CTreeview
  198. Resizing problem
  199. Changing printing defaults in C (not AFX)
  200. State of a process
  201. MprAdminPortEnum
  202. How to check if a directory Exists
  203. Using CFileDialog with a template
  204. calling DLL
  205. Client area size
  206. GetModuleBaseName function
  207. Closing application in InitDialog()
  208. Detecting row index of the item clicked on CListCtrl
  209. a few questions about a dialog based app...
  210. Anti Alias
  211. pointer to a multidimensional array
  212. Multi-dimensional CStringArray
  213. ADO Foreign KEY???? please help URGENT
  214. Running Embedded sql with vc++
  215. PreTranslateMessage
  216. VC++(URGENT)
  217. byte conversion
  218. how using DuplicteHandles() to maintain handles?(to' Andreas Masur' and others...)
  219. Word Automation
  220. Need Help: dragging Object in the client area
  221. COLORREF
  222. Adding data to a List Control via win32 messages
  223. Post message to thread!!!!
  224. Win32 Services
  225. Read PDF files
  226. Can i get handle to MSXMLDOMDocument from IDispatch of get_Document of IWebBrowser2 ???
  227. Print & CRichEditCtrl
  228. Dialog Print
  229. QHeaderCtrl problrm
  230. Change background color of MDI
  231. Problems with serialization of embedded objectss
  232. Positioning
  233. String table
  234. Tooltip on taskbar
  235. Dialog gets minimized
  236. MsComm problem
  237. Thread function!!!
  238. RegQueryValue
  239. Peculiar problem
  240. hough transform
  241. memory leak in oletyplb.cpp
  242. changing the CFileDialog
  243. MsComm And error 1001 (wirh GetCommEvent)
  244. Populating a ListCtrl from a threaded function
  245. Populating a ListCtrl from a threaded function
  246. Indirection warning
  247. Not able to see Dial-Up Adapter\BytesRecvd in HKEY_DYN_DATA
  248. Deployment problem
  249. I can build debug version, but can not build release
  250. sorting CArray of int