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 to Export and Import data to and form Ms-Access database?
  2. Database Query: On ExitInstance
  3. VB ActiveX within an MFC C++ project
  4. path of program files folder
  5. GetSafeHwnd()
  6. Writing excel
  7. File transfer through Dial Up Network
  8. yes to all, no to all ?
  9. Iterating through the duplicate keys in multimap
  10. Conditional compilation by Windows version
  11. how to attach toolbar to the dialog in dialogbased applications
  12. fill a list in a CTreeCtrl
  13. Changing Background Colors of Dialog boxes
  14. using multimedia timers with activex
  15. I cannot add a custom control to my FormView dll
  16. What type has CONTROL resource ?
  17. create a new word doc and insert existing doc in it
  18. CComboBox Problem in XP
  19. Splitter Windows - Remove "new" question option
  20. Convert type short to type double
  21. My MSDN become looking with Italic font only -why?
  22. Image processing task - str8 line detection
  23. ODBC, Date/Time comparison in query?
  24. Jpeg2000
  25. Docking Windows
  26. Timer How ?
  27. zero fill
  28. Looking for Socket client and Server example
  29. invalidateRect(.....) and invaidate(...)
  30. IsPrinting in ActiveX control's OnDraw
  31. Retreive item image indice from a listctrl
  32. Bluetooth programming
  33. windows hooks
  34. VC7 and 64 bit support
  35. Taskbar Window Button
  36. Thread Dialog
  37. How to determine UNC name for a LAN neighbour
  38. how to draw within a bounded area
  39. How to find out if the object is dynamic and was created on the heap?
  40. Nci
  41. Switch from Dynamically linked to Statically linked MFC
  42. What is....?
  43. Odbc problem
  44. Title Bar Alterations
  45. Problem with unhandled exception in MsVC++ 6.0
  46. VC++ 6.0, save command
  47. Copy a class
  48. MDI application COM server
  49. Odbc + Transactions
  50. Destructor issue!!
  51. How to make TRACE statement work
  52. funky code problem..... please check
  53. MessageBox - MB_RETRYCANCEL help!!
  54. Sorry for this dumb question (define UNICODE)?
  55. Print dailog on Pocket PC 2002 / 2003
  56. how to prevent data lost? CFile, ofstream
  57. BITMAP structure from resource (issue)
  58. What is that ?
  59. Simple about ctoolbar!!!
  60. Clipboard Problem
  61. dialog creates user.exe crash in 9x/me, why?
  62. Pushbutton not responding to dbl click
  63. Edit Box
  64. ASSERTinon error --please help me out
  65. Converting WideChar to Unicode
  66. Getting Unique Name for Unicode Character
  67. LoadString error (err code0x716)
  68. How to shut down a system under DOS?
  69. details of installed devices
  70. Exe form editing
  71. Freeing a module loaded by another process
  72. ASCII char
  73. Help!!!!!!!!!!!!!!!
  74. CSplitter
  75. autorun from USB device
  76. question on scrollbar control
  77. Error from trying to use One project by Another in MyWorkspace in Visual Studio .....
  78. Rotating an Image
  79. WriteFile hangs...
  80. How to execute a 16-bit or DOS application in a 32-bit program?
  81. CSocket object prob
  82. Adding a item in Listctrl
  83. In Windows 98, how can I read/write to hdd disk using BIOS interrupt 13h or 21h?
  84. Making Toggle PUSH BUttons in MFC
  85. Making PUSH buttons invisible in Runtime
  86. why "Invalid Password" under XP ?
  87. Edit control multiline property
  88. DirectX 3D RM & RenderState
  89. Tab control order problem
  90. Debug Assertion Failure
  91. Input focus - unusual question
  92. Need ActiveX to present a jpeg ?
  93. Problems with refreshing the Device context. Please help...
  94. ifstream
  95. LVN_ENDLABELEDIT message for CListCtrl
  96. How to restore minimized window?
  97. AfxBeginThread ???
  98. Tcp Segmentation Offload problem in miniport driver
  99. Menus in a dialog (MFC)
  100. second toolbad & CDialog & PocketPC2002
  101. Super Edit
  102. creating custom ActiveXControl
  103. ATL Event Sink
  104. IP Address
  105. You Ever Wonder Why?
  106. Unable to create a COM server object
  107. Read from microphone?
  108. Problem of linking an obj file
  109. keyup and hotkeys
  110. displaying polygon regions
  111. Bitmap saving
  112. How to associate a file type with my program?
  113. Hard Drive Programming
  114. linkage behaviour?
  115. Problem with program under XP
  116. DestroyIcon() and HICONs
  117. Expert mission impossible
  118. Copying char LoginUser;'s Content to char LogUsr[20];
  119. DirectX Plug-ins with MFC
  120. electronic software!!
  121. returning a 0-length array from a SOAP method (ATL Server)
  122. please help a newbie
  123. GetSystemMetrics wrong size when theme is activated (XP)
  124. Dialog over the ATL control
  125. simple question on reordering pop-up dialogs
  126. Opening Mulitiple Com Ports
  127. nafxcwd.lib
  128. simple COM port eg
  129. 2D Array & random numbers
  130. fast opengl redrawing
  131. Advice
  132. creating an inherited class from existing instance.
  133. Exception Handling
  134. Active Window
  135. Help! cdrom state
  136. newbie question about key accelerators
  137. Tool Developer Seeking Comments
  138. LPVOID to char *
  139. Win64 bit API??????????????
  140. ON_UPDATE_COMMAND_UI() in a dialog based application
  141. MFC using C..
  142. How to send a ctlr+down message to the system and not my app...
  143. DynamicUpdatingComboBox
  144. Popup Menu in ATL COM
  145. Any function that can remove a file in local directory?
  146. Total newbie question
  147. How to fix the dialog on screen ? Please help....
  148. HelP again!!!!!!!!!!!!!!!11
  149. Insert/Delete the Details in Registry
  150. Info on ActiveX Control
  151. Color Coherence Vector
  152. to list files in a contents of a directory.
  153. OCX control-How to pass parameter using <param> tag of HTML
  154. center screen
  155. Info needed for Printer Driver Development
  156. no change of column width in listview
  157. CLIstCtrl::SetCheckBoxes()
  158. Ms- Word Automation Hiding table gridlines
  159. connect to pocket pc using active x
  160. A DLL question (deriving a class within the DLL from an exported class)
  161. CoCreateInstance: when and how?
  162. CMyView pointer problem
  163. How to Load Icons or Bitmaps on Toolbar Buttons ?
  164. Weird Problem on ActiveX
  165. register two file types in a SDI App
  166. Thread count for a Process
  167. removing incall notification using netmeeting sdk
  168. CArchive
  169. Question on FindFirstFile handle
  170. language selection
  171. taskkill event
  172. base64 decoding
  173. Changing button Color Dynamically in MFC
  174. Virtual Harddisk
  175. AfxGetModuleState
  176. File Compression... FCI
  177. Copy CListCtrl Data into Clipboard
  178. OBDC Connect - dynamic?
  179. SDI with Multi Frames and Views
  180. How do I know when application runs as Automation?
  181. how can i change the title of my software
  182. Spell checking method
  183. MDI Application?
  184. Text width using GDI
  185. How to create and Bind MsAccess database at runtime through MFC application?
  186. How to add imagelist to CListCtrl?
  187. Adding Hardware Key (HASP)
  188. Changing the Resolution Dynamically
  189. Which STL is better??
  190. Hide window created by ShellExecuteEx
  191. copy a word doc to new word doc
  192. Visual Studio.Net
  193. CEdit derived class problem
  194. Class View Info problem
  195. Using dialogs from Automation server
  196. combining multiple static libraries
  197. Calling Main Dialog Functions from Popup ??
  198. string concatenation & speed question
  199. VC6 and MSDN compatibility
  200. question about CD-Rom drive state
  201. system tray tooltip
  202. Debugging Question
  203. EnumJobs: page count problem
  204. Object changing itself his adress
  205. Gray window
  206. invisible list control column?
  207. simple line drawing
  208. who could give me an example: attach multi views to one document
  209. Proeprty sheet like apperance using MFC and VC++
  210. Exception Handling
  211. Changing color on display elements (Button text)
  212. Question about backgroud program not a service
  213. Where can I get MSMQTriggers.exe?
  214. Where can I get MSMQTriggers.exe?
  215. ADO Baffled!
  216. EnumWindows Problem
  217. Conversion of CString to string VC++/C++
  218. Strange error I got
  219. Xslt
  220. background peeks through after clipping
  221. Frame grab in DirectX
  222. VC++6 getline() bug fixing
  223. Trying to figure out LCM
  224. About ChooseFont
  225. Retrieving Desktop Icon images
  226. question about wm_char messages in a dialog box
  227. Help with date checking
  228. deleting items in a ownerdraw CListCtrl
  229. Maximize a Window
  230. Win32 experimenting
  231. store report file in database as blob
  232. address bar in non-formview?
  233. Function pointers and classes
  234. difference between two points in time
  235. c++ help
  236. EnumWindow()
  237. Help with logic
  238. Edit box cursor positioning
  239. Interfacing scanner to Vision
  240. How can I read a 'gif' file
  241. DataGrid: How to use SELECT
  242. dynamic interface
  243. Need a Yes or a No frm you guru...
  244. Using MFC to work with Excel
  245. Ap1 runs Ap2
  246. How to export makefile from VS.NET?
  247. Help Meeeee!!!!!
  248. Socket Prob again
  249. Displaying Chinese Chars in CTreeCtrl
  250. How to open a file in binary mode?