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. Application Background
  2. word plugin in outlook
  3. AntiSpyware
  4. How to create textbox in MFC activex control wizard?
  5. Keylogger Detector
  6. Where can I get Technical Documentation for MFCXX.dll
  7. how to add a button to winlogon.exe
  8. Changing caption of a button in DLL
  9. Working with String Processing AND search/sort
  10. How to hide an SDI window?
  11. Serialization issue
  12. Storing data in Grids of ListCtrl in Structures
  13. How can I select a row in a DataGridView?
  14. Problem in DLL
  15. LOGFONT lfHieght & CHARFORMAT yHeight Conversion...
  16. Help with OpenCV / or How to determine if a set of pixels are connected ?
  17. adding a toolbar to a dialog
  18. default parameter in ATL function
  19. Get HTTP 1.1 Settings of IE
  20. Drawing an image inside the CRichEditCtrl
  21. Handle Mouse Events in Child Window
  22. Conversion Hex
  23. Change syscolors for one application
  24. How Convert From DXF To Bmp
  25. When was my app built?
  26. MS word automation problem
  27. Using VC++ to access a LDAP Server
  28. [RESOLVED] odbc msflexgrid display
  29. Use a DLLs, which uses mfc as shared dll, from App. that uses mfc as static dll.
  30. CImage duplicate pixel!
  31. Infinity Symbol inside of ListView
  32. Add a button to the "Right Click" memu?
  33. need help converting
  34. Why this occurs?
  35. adress
  36. How to delete the OK button in Propertysheet
  37. help needed!
  38. draw over draw flickers
  39. MenuBar names?
  40. atl/com
  41. map of vectors -vs- multimap
  42. Prevent malicious user from capturing screenshots
  43. How to do this ?
  44. Video Streaming
  45. char
  46. Currency to double
  47. Read data from MSFlexGrid control
  48. tree control question
  49. change font color + size + type??
  50. Save MSChart control into bitmap format
  51. drag the datapoint(MSChart)
  52. converting int to std::String
  53. Fatal Error.
  54. Heap Error.......
  55. press button
  56. Distructors in Dialog Class
  57. CMap ??
  58. problems while showing data on bitmap at run time
  59. How to get the hard drive serial no,not the volume no
  60. Probs in DATEtimePicker in VC++,MFC
  61. Grade my code
  62. Focus on Activex in a Dialog
  63. copy Dialog from one project to another project in VC++ MFC
  64. Transparent brush
  65. _bstr_t AHHHHHHHHH
  66. MFC/ATL COM server
  67. Colecurrency, 2 sig digits
  68. how did u unvisible the radio button?
  69. Memory problem COleDateTime::Format()
  70. Dll not found error.
  71. How to change windows audio settings?
  72. Creating scrollbar along with window
  73. Launch applications with ShellExecute
  74. integrating two VC projects
  75. IMF message filter SDK sample problem
  76. to change the color of Data on Bitmap
  77. Automating function copy from a c++ file to another
  78. Draw in StatusBar Pan
  79. Repainting Dialog
  80. Displaying and Destroying a ToolTip "like" window
  81. About Visual C++
  82. How to draw a rectangle in CRichEditCtrl
  83. trying to insert my own icon into a Windows Forms application
  84. Wish to access previous CDocument items when a new one is opened in MFC.
  85. lib for image map?
  86. how to: pointer to multidimensional array as function argument
  87. New lines in schema.ini file
  88. 2d dynamic array usinc CArray
  89. HTREEITEM expand/collapsed-icon
  90. GDI painting performance penalty with a second adapter attached
  91. decode urls and file paths correctly
  92. C++ HTTP Question
  93. Call window list functions
  94. How to update the display?
  95. Creating alerts like yahoo/msn or outlook
  96. How to get data member from different class
  97. One application stops another one
  98. Another Invalid Address specified to RtlValidateHeap
  99. include path problems
  100. ADO : error reading an empty field
  101. [RESOLVED] Client vs. logical coordinates
  102. friend function issue
  103. serial communication; reading length of buffer
  104. Access form members from global functions
  105. CoCreateInstance failure...
  106. Error which came from nowhere!
  107. defining the number of decimal places
  108. Microsoft outlook contacts
  109. Path Name
  110. MFC ActiveX ControlWizard
  111. global variable for a SDI application
  112. I have spent some days in exporting my Dialog Class in a MFC Dll,my dialog contains a
  113. TAPI 2.2 - DTMF recognition
  114. RTF (Rich Text Format) Problem
  115. First-chance exception (KERNEL32.DLL) 0x000006BA
  116. How can I export a Dialog class in MFC regular Dll or Extension Dll?
  117. Creating dialog box for dll
  118. new Operator
  119. Retrieving HTML source code for an internet page
  120. How to attach scrollbar on my window?
  121. CodeComment-WebReport: Can I classify my classes to be in folders?
  122. Desparate:Displaying data
  123. Creating Window in MFC dll.
  124. Modal dialog and outside mouse control
  125. how to write the regular expression
  126. detect email attachments
  127. Saving COM-object references/pointers to arrays
  128. How To Expand The HTML Page Over The Dialog
  129. COM exe Server and its c++/MFC client
  130. SetWindowsHookEx question
  131. Debug on the remote computer
  132. HELP!!!Beginner Help with GetDlgItem and ComboBox
  133. Help me to print content of my dialog
  134. Super Class Query not MFC
  135. Edit box...please help
  136. going mad on mdi childwindows
  137. keyboard hardware
  138. Problem in DLL
  139. desperately needs help....!!!
  140. exe to work ???
  141. printing a prn file
  142. what are DLL
  143. Error
  144. How To Expand The HTML Page Over The Dialog
  145. "If, else" vs. "?, :"
  146. using a function pointer in another function
  147. Create CPropertySheet in CFormView
  148. how to convert BSTR to LPCTSTR
  149. Coding Name of MenuBar Debug menu?
  150. Com Question ?
  151. How Can I use KeyBoard Hook In WinCE???
  152. structue or class
  153. transparent color
  154. Changing menu items
  155. Need help for painting a background
  156. Adding a Class to Dialog Application
  157. Image processing in VC++
  158. Need help with DoModal
  159. WinInet HTTP Post assistance req'd
  160. ActiveX Control created in Visual C++ 6.0 on the web
  161. Saving loaded icon from aplications!
  162. Help for some who is knew
  163. property page / modeless
  164. Acrobat File
  165. CView height??
  166. Openiong a Doc file
  167. CTabCtrl question
  168. SQl query to get DATE (from VC++ MFC)...?
  169. Getting the caption of button on focus?
  170. Anyone heard of CVPACK ???
  171. problem in malloc()
  172. Toolbar Prompt Issue
  173. Mp3player
  174. How to differentiate numeric and decimal in ADOX
  175. Release build compile problem
  176. Disable the series line of MsChart
  177. add bitmap to Dialog
  178. How to handle these Exception with MS ADO?
  179. Adding a property or Object to the JavaScript window object
  180. chroma key... does it have any function in VC++
  181. Is creating and registering a proxy/stub dll required when the server component and
  182. linker errors
  183. TextBox
  184. dll and exe
  185. Reading a file
  186. new to mfc...
  187. Problem with ShowWindow(...) Function
  188. How to include SHCreateStreamOnFile
  189. mscomctl.ocx:StatusBar,ATL
  190. Reading pdf header
  191. WM_WINDOWPOSCHANGING Message Map Function
  192. CDocument
  193. timer , threads events
  194. Sql Query Generator
  195. popertysheet wizard on japanes windows to large
  196. How to delete a class from project data base in VC++ 6?
  197. Display buffer contents in child window
  198. excpt.h and stdarg.h errors -+- HELP!
  199. Displaying a xml in VC++6.0
  200. How to get the handle for the drop down button of a Combo Box Control?
  201. What is the syntax to get a function from different class?
  202. A COM question
  203. question about XOR encryption
  204. Automate Fast User Switching
  205. Saving icon to file(*.icon)
  206. DoModal fails to display
  207. call derived function from base
  208. How to get the current mouse position?
  209. Template
  210. got different variable value by adding output code
  211. Convert to bitmap or JPeg format
  212. this scares me
  213. How to get client window's dimension
  214. Problem with ODBC
  215. Zipping a project
  216. DV Architecture ?
  217. Windows CE Messagebox
  218. Problem in CScrollView
  219. Stack vs Heap ??
  220. "Like" string matches in C++ (equivalent to VB)
  221. How do you check if an image exists??
  222. Can someone help me with the modeless dialog box
  223. How to use ResourceDll in the MFC extension Dll
  224. Gwl_userdata
  225. Change Printing orientaion from Portrait to Lanscape in VC++ MFC
  226. Reading a data file
  227. Reading Custom properties of a file
  228. Set initial width of SplitteWnds in OnCreateClien()
  229. Screen resolution
  230. how to run 2 dll in a project?
  231. How to get Window object?
  232. Regular expression replace
  233. network doubts!!!
  234. is there an easy way to process string line by line?
  235. MAPIInitialize problem
  236. GetAsyncKeyState ...
  237. error in compiling
  238. messaging question
  239. CFileDialog Custom
  240. Need to simulate Microsoft Word feature
  241. Load bitmat into SDI applicaiton
  242. Whats the correct syntax of DATA SOURCE for LDAP?
  243. system() and calling an external exe
  244. How to insert a rich edit control within a listbox?
  245. CTabCtrl covers my controls ;/, how to show controls behind ctrltab
  246. CTabCtrl covers my controls ;/, how to show controls behind ctrltab
  247. Tool Bar Button device context
  248. how to write bitmap of width not multiple of 4
  249. Serial COM help, noob
  250. Getting the menu strings on selection