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. IDE: Debug 2 exes
  2. Query on Singleton classes
  3. Creating and Development Newbie...But good Questions
  4. Yet another rookie Document View question
  5. "delete" causes a crash
  6. CopyFileEx and XP service Pack 2
  7. SetCapture does not work
  8. Where to do some initialization in CMainFrame
  9. Namespace Extensions C++
  10. Passing arrays to functions
  11. COM question
  12. Libraries
  13. Fonts and MFC
  14. Command line building question
  15. Dialog OK button
  16. how to create a pdf file from C++ dll?
  17. How to check if Outlook is running programmatically
  18. Popup menu doesn't display properly
  19. using the code written in borland C ++ in VC++
  20. the propertysheet is overlapped, how to fix it?
  21. how to get values in edit box?
  22. A puzzle in automation?
  23. retrieving data, how?
  24. Define Errors
  25. Programatically updating the window
  26. How to pass data to and from two forms?
  27. How to distinguish the Windows versions?
  28. Issues with VB and other application
  29. Slider which function like the slider in the windows media player???
  30. Slider function as the slider in the windows media player??
  31. MS Grid
  32. How to trace the Handle leaks
  33. Toolbar button state
  34. DTS package with input parameters for VC++ application
  35. dll-directory
  36. oracle OCI select query coding?
  37. "GetDlgItem" call Fails......
  38. Data(base) replication framework like Bayou?
  39. deleting members, functions, or classes?
  40. weird: changing of characterset behaviour differs
  41. string to long conversion
  42. Assertion error & Your Opinion for my application
  43. #define-ing an MFC type
  44. Creating a Folder
  45. HELP: usb communication
  46. Messaging between applns
  47. Clipboard code error ?
  48. BEGGING for help with this ... PLEASE
  49. Sending key events to windows application
  50. Toggel button with menu
  51. How to convert a header file to an Xml file
  52. How to run the Macromedia Flash file from clicking menu item in MC appl.
  53. Creating a Visual Form in C++
  54. the error message for my post.....
  55. File Mapping question
  56. friend and overloading << operator
  57. Different techniques to handle license control
  58. Two Timers in App w/ Different Event Handlers - How do I know second event occured?
  59. Date & Time
  60. Want to restore XP to Same State on Boot
  61. Localized file size
  62. How to wake up monitor ?
  63. CListCtrl - select any column
  64. Tutorial for creating an FTP server?
  65. BI_BITFIELDS masks
  66. CreateProcess and WaitForSingleObject problems
  67. Safer Timer Thread Termination
  68. Dialog repaint with no flickering ...
  69. Stack Overflow? CBitmapButton??!!
  70. something like the auto "Save, No, Cancel " dialog?
  71. Remotely reading registry
  72. CDialog::DoModal() Question
  73. VC6 to VC.net 2003 project problem
  74. Creating limited headers from a dll
  75. Strange bug with SHGetFileInfo - Urgent help needed
  76. ::SetForeGroundWindow Gives Access Violation
  77. Detection of 64-bit OS
  78. Easy question, (homework)
  79. Need help! QueryInterface/CComPtr Question
  80. save hotkey
  81. MFC process
  82. check and uncheck a control
  83. How to Load a bmp on a Dialog?
  84. write a directshow filter---link error
  85. Maximum Size of resources in vc++?
  86. GDI resoure problem
  87. MFC: How to get the Document from the Application?
  88. how to pass variables to a dialog?
  89. Cstatic
  90. Help needed about UNICODE String Replace
  91. How to convert long to short?
  92. Help me about local hook
  93. vc++ string compare problem, help!
  94. #include problems, any help?
  95. Can you explain the folowing error ?
  96. Ctrl moving popup window
  97. about change views
  98. ADO international
  99. How to draw a transparent ellipse?
  100. How to get the object where the mouse on , when use MSHTML
  101. CTime & daylight savings
  102. VisualC++6.0 fix it,please!
  103. activex in dll
  104. refresh windows
  105. How to void grouping of windows icons of my application in taskbar
  106. Performance (?) problem with low level Mouse Hook
  107. Create email account
  108. Picture Compare Program!!! Help Needed!!!!!!
  109. What is wrong with my code!! trying to call from one form to the other and back
  110. 'abs()' - what have I done???
  111. Problem with MFC
  112. using just the source files i need?
  113. two questions in listctrl
  114. Getting FONT height in from LOGFONT
  115. volumn control
  116. Zoom in and Zoom Out
  117. When one clicks file in file explorer my app. starts and execute func1 of my project
  118. How to communicate with DLL loaded in address space of Internet Explorer ?
  119. X.509 Certificate Creation in VC++ ?
  120. Folder path
  121. Play .wav in Dialog
  122. Why MoveFirst() fires an exception when called 2 times in W2000?
  123. How to draw the graph in the dialog box
  124. Remove a Class in Visual C++ 6
  125. XML and VC++
  126. CListCtrl, click on left column to insert score on the right column
  127. CMonthCalendar
  128. Possible to create a hIcon from a DC?
  129. Force an interface update in MDI
  130. DMO linking ?
  131. URGENT! Need a Step-by-step of how to register an ActiveX
  132. How to convert char[] to CString?
  133. Placing dialog bar in splitterwnd
  134. Resizing CDialogBar programatically
  135. Component does not work from COM+
  136. dll files
  137. stepping into gdi functions when debugging?
  138. ListCtrl and non client area
  139. _TCHAR not being properly converted??
  140. Finding "shadow" variables
  141. Stupid Virtual Keycode inconsistencies
  142. VC6.0 to VC7.0. how to converrt look of resources?
  143. CStdioFile opening problem in Unicode build.
  144. template question (what is wrong with this?)
  145. Microsoft Forms 2.0
  146. CArray and MFC
  147. Please Help. C++ Class/COM Interface question
  148. shellexecute with output to a file
  149. speed tests???
  150. Adding functionality to CIPAddressCtrl
  151. HELP: WriteFile - Seems to stop once first null is encountered
  152. How to get Mouse-Coordinates over Systray
  153. CListCtrl - Onclicklist: check for item
  154. How to detect LBN_SELCHANGE for a child window of CView?
  155. window z-ordering across threads
  156. file updated by 1 thread at a time
  157. How can i get the monitor screen size ?
  158. Maximum Controls on a Form
  159. How to customize the titlebar of all windows
  160. Good Book Recamendation? Please...
  161. dll ****, 0x0000005
  162. fstream.h where's it gone?
  163. VS7 Data Grid Problem
  164. A Problem concerned with CSpinButtonCtrl
  165. The problem with fprintf
  166. About cancel button
  167. How to get data which is sent directly to parallel port?
  168. Rendering a HTML page in a Dialog
  169. media link transfer???
  170. weird ICON activity in VC++ hmm???
  171. How to create right hand side submenu/ POPUP menu ?
  172. Import data to Variable not String
  173. how can i used this struct.
  174. Maximize MDI Child window when Main window is maximized
  175. Parser
  176. MFC dll debug assertion
  177. USB port
  178. dll and accelerator or hook or ...
  179. new to visual c++, confused about destructor and onClose
  180. combo list box
  181. ADO: error in updatebatch with stored procedure
  182. Noob but want to learn.
  183. dialog box
  184. a quick question - how to use CDC::operator HDC
  185. Providing tooltips in a toolbarCtrl
  186. Get the x and y pixelsize of the screen?
  187. Check Browser windows opening
  188. Notepad in Dialog Based Application..........
  189. Find out type of class
  190. Non rectangular button using region...
  191. Access Web folder with MFC dialog
  192. Problems with CRichEditCtrl
  193. Vertical ScrollBar does not send WM_VSCROLL
  194. Problem in Reading the data from serial port in VC++.
  195. Way to convert Exe to Dll
  196. Modal Dialog loosing focus
  197. VC++ and XML Parser
  198. Created customised draggable components
  199. Extending a 3d party ActiveX with VC6.0
  200. UNICODE with CString...
  201. email via VC++?
  202. accessing class in document
  203. Create virtual drive
  204. Excel automation - closing excel
  205. Use my own scrollbars to scroll listctrl
  206. Bizarro behavior in double assignment
  207. Solve DLL **** Issue?
  208. XML Document always empty... why?
  209. what does these errors mean?
  210. Converting COleVariant to CString
  211. controlling window size
  212. File transfer over HTTPS
  213. Help i want to learn.
  214. Picture Box Control
  215. How to get C++ Object from COM Interface?
  216. Mschart
  217. visua c++ program to open jpeg gif and bmp file and display them
  218. newbie question
  219. CListBox not behaving...
  220. How to store CListcontrol items into a file?
  221. Help in EditBox
  222. Binary Class Template
  223. Can Html text be viewed in a view?
  224. dialog on top
  225. Overlapping controls
  226. write to file, access violation
  227. get users account
  228. maybe it happen that wparam is equal toSB_BOTTOM or SB_TOP when scrolling happens
  229. How to Create user defined Status Bar Identifier's ?
  230. some easy noobish questions.
  231. how to store an array in access database?
  232. How to Get Date and Time by using COleDateTime class?
  233. CDO in C++
  234. Mirrored Displays...
  235. setup.exe is giving problem
  236. web browser control
  237. programming a new parallel port card
  238. casting from struct to struct error
  239. finding a ?missing? activex control
  240. executing code in a btn handler
  241. accessing class member
  242. how to make window flicker
  243. Spy++
  244. Eternal loop on WM_ACTIVATE. Help!
  245. Help with system time needed
  246. helphtml api
  247. Linking OBJ file
  248. Stack Overflows
  249. help! I'm in header h-e-l-l
  250. statics in a union in a struct