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. ODBC Application - base on *.mdb file. Problem with autonumber.
  2. how can i become an MVP
  3. Is a DLL loaded
  4. How do I get a list of font a system supports
  5. Topography control in GUI
  6. listctrl icon not highlighted (just text)
  7. Display AutoCAD drawings
  8. Graphics & 3D drawing
  9. ODBC problem
  10. strange wmf import
  11. find length of array?
  12. Treeview with splitter
  13. Exploring NTFS ....!!!
  14. IE stuck when i active an ActiveX for the web
  15. how to call a player
  16. lsp problem again
  17. Cannot RegEnumKeyEx
  18. Mystery of the Disappearing Bitmap
  19. problem of choice of interface
  20. What is Embedded Software ???
  21. How good is CString? (memory-usage)
  22. how to convert CString to FINDTEXTEXT LPSTR ?
  23. HELP! How to save 256 Colors (8bits) bitmaps in GDI
  24. Database programming problem
  25. CTreeCtrl Auto-Selecting when Collapse
  26. CDocument
  27. Change Height of the dialog dynamically
  28. using gcc instead of cl.exe
  29. deleting a service
  30. Edit control
  31. CWindow highlight state
  32. having trouble with FINDTEXTEX
  33. Windows Service Questions
  34. AfxMessageBox show massage
  35. How to make CRgn-based window not movable by mouse drug?
  36. Hooking the File System
  37. Access violation redux
  38. Handle Delete message, but don't delete text.
  39. CStatic Problem
  40. I need to obtain the UNC of a remote disk
  41. child window resize and delayed rendering
  42. Can any1 help me or not with this ListBox control?
  43. Simulate Keyboard Input Alt+NUMPAD7
  44. Icon loaded ....questionS
  45. multiple classes build one DLL file
  46. Hiding controls in the CFileDialog
  47. DirectShow, Direct3D conflict
  48. checking if just a file name or including path already
  49. newbie quesion about document view
  50. I'm mad about Crystal Reports 8.5
  51. Automatic configuration and automatic proxy
  52. Prevent dialog BG from drawing
  53. Writing a Windows service in C++
  54. Add ActiveX Control to an activeX control
  55. How to detect a USB Mass storage or Digital Camera connection?
  56. Calling the superclass
  57. No keyboard focus
  58. offscreen to onscreen draw/paint problem
  59. difference between service and registry
  60. WaitForSingleObject problem
  61. Hiding controls
  62. Custom Window Appearance
  63. Using ZLIB
  64. Alternate ways to access hWnd
  65. Directx - Sound
  66. Forcing popup window to stay on screen
  67. Ownerdrawn ListCtrl - select subitem
  68. Get hash value for string?
  69. rotate ellipses
  70. How to Dialogues
  71. Why windows destoyed my ATL object when the reference counter is not 0
  72. STL List Sort
  73. Multiple constructors
  74. self extracting exe
  75. CimageList Without A Transparency Color
  76. Using Crystal Reports .NET
  77. How to convert a CString to a char* in unicode?
  78. Populate DataGrid with Array
  79. 3d Graphics Question: .3ds File conversion
  80. how to settle this problem?
  81. closing help file
  82. win32 progress bar with text
  83. How to release the memory of CObArray and CSring
  84. IE-programming (WebBrowser control): how turn off clicks when navigation starts?
  85. Image Printing ... please help !!
  86. CMenu::LoadMenu() raises assertion?
  87. wave/in problem with TAPI
  88. Accessing methods and member variables in CFORMVIEW from a modeless child dialog
  89. is there anything constant
  90. How to get the button CRect
  91. share data with thread
  92. ActiveX Controls and Serial Communication
  93. Button handle
  94. un normal window appearance
  95. Move all my controls in a frame
  96. Non_Client_Area ???
  97. VC++ references for Engineers
  98. Menu in the Dialog???
  99. Drawing a bitmap with more than 16 colors on a dialog
  100. Win2k DDK problem
  101. Problem with usb->RS232 adapter
  102. calling exe-file as popup
  103. A registered function is lost when back from other application
  104. VC++ Database questions..
  105. listctrl icon not highlighted (just text)
  106. registry program
  107. HTML multiple views
  108. Add Version number in Registry
  109. Cd Drive Serial Number
  110. dialog popup by a thread can't be activated
  111. Selection State Of Buttons
  112. #ifdef - shortcut
  113. VC++ macro question
  114. DataGrid:"cannot Initialise databinding"
  115. is this pointer still alive?
  116. CreateWindowEx and Microsoft Web Browser
  117. LPARAM for CListCtrl items
  118. desparate help needed in making a param array
  119. String problem
  120. How can i
  121. ATL - Sending params wih Invoke()
  122. How Windows recognizes a DLL in memory?
  123. How do I use a dll thats not a type library
  124. get HWND of ActiveXControl
  125. GetCurrentHwProfile behaviour
  126. How to reboot system?
  127. An error in my MFC app that i just don't understand ...
  128. GetDCEx fails
  129. showing simplified solution?
  130. Problems with keyboard layout indicator?
  131. double[][]
  132. tapi messages
  133. named pipes. more than 255 clients...
  134. Blank host screen
  135. CDataGrid
  136. Resource file, second \n
  137. Disabling Exit on Esc in MFC dialog app
  138. Property Page with icon.
  139. network with lists
  140. Caret Positioning
  141. Property sheet with XP look
  142. RSA / DES Encryption
  143. Has USER typed in or was it SetwindowText() ?
  144. Required : Dummies guide for passing STL Vectors ...
  145. ??read from a Url (remote file)
  146. Drawing a bitmap over another bitmap
  147. Receiving Fax through a Program
  148. IR devices - unique device id's
  149. Convert int to String
  150. internet explorer toolbar icon
  151. Writing a Word document from a Win32 console application
  152. CEdit control + CString
  153. Interview Questions !
  154. How to tell if the connected USB device is a Digital Camera or Removable Drive?
  155. C++ class issue
  156. debug symbols
  157. Suspend program
  158. DLL not statically linked
  159. Understanding error logs
  160. Debug assertion Failed
  161. ADO Connection fails
  162. Create Certificate using Public Key
  163. MSFlexGrid ComboBox
  164. MFC or winAPI. where to start?
  165. MFC - problem with MDI Views
  166. Which message...
  167. Flat looking dialog box with caption and close button
  168. writing to registry
  169. Minimize program to toolbar
  170. Program Remain Running?
  171. Getting full path to my application - How?
  172. Output text to Rich Edit Control
  173. complete folder list
  174. How valid is...
  175. Creating a Setup
  176. I am a mess please help
  177. Printing a bitmap
  178. How to get filename off the batch file
  179. Help MCP
  180. draw arc three points
  181. Urgent: Is it possible to create a single document template from a dialog based proj?
  182. UIThreads- Creating a dialog in Run() with Create and ShowWindow
  183. size of error ?
  184. debugging a dll
  185. TreeCtrl - TVN_GETDISPINFO ?
  186. Printing multiple graphics on the same page.
  187. CFormView borders
  188. OnSize height is wrong
  189. appendig using CFile
  190. Is it bad practice to return from the middle of a function?
  191. Tetris C++ code
  192. Multi thread query
  193. Please Help!!!!
  194. visual c++ vectors????
  195. Creating Gantt Chart
  196. creating a child to a child in MDI how to?
  197. Excel Find a String
  198. MSDE problem on Windows 2000.
  199. Help: Outlook 2003 Bete 2: Junk Senders, Adult Contents Senders storing location
  200. GUI problems
  201. Server closes connection with proxy
  202. Change workspace settings using Appwizard
  203. Help: Load toolbar icons from files
  204. call form form another form
  205. How to Destroy a System Modal Dialog..?
  206. Registry Keys in HKEY_CURRENT_USER
  207. Windows logon interface
  208. How to make correct sizing of childs of dialog ?
  209. string parsing problem??
  210. Problems with Full screen in DirectShow
  211. ListView with backgroud color
  212. outlook style rollout panel
  213. Is there external OutDebugString() messages viewers?
  214. CPropertySheet: Window size problem
  215. Urgent :(
  216. filename of MDI-Child?
  217. Recent file questions
  218. What dll's need for Atl Dll to be registerd?
  219. Design issue
  220. @@??@@how to use WinInet in VC 6.0
  221. Please HELP!!! How to convert GDI+ 24 bits bitmap to 8 bits bitmap?
  222. [Property Page Problem]
  223. Memory Leak
  224. Read the current number of private bytes allocated
  225. Message loop -> Bad graphic consequences
  226. Copying RTF string into an Excel cell using clipboard
  227. UpdateAllViews() is not triggering OnUpdate() of my other view
  228. HTML problem
  229. Problems posting wm_vscroll message
  230. Sorting a CTypedPtrList
  231. Mouse events
  232. CFileFind and wild cards
  233. using the CRegKey class
  234. Help:How to set background for Rebar?
  235. defining a structure for CommConfigDialog
  236. Hit Test
  237. end process
  238. Drawing to client area (Dialog App)
  239. Appwizard open a file
  240. Winsock question:
  241. Vpn?
  242. help me to decode DEBUG output
  243. CDROM in "VC++ MFC Extensions by Example" by John E. Swanke
  244. MDI but still I get single doc !!
  245. Please help
  246. Confused over #includes
  247. member variable
  248. Autosize Virtual CListCtrl
  249. Function similar to OnOK with CPropertySheet
  250. Painting in CView - derived class