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. Does anyone have an example which creat a CoolBar
  2. File Handling
  3. Help needed desperately
  4. data exchange between two applications
  5. Menu-bar Resource ID
  6. How to remove the other application's icon from the system tray?
  7. How to use IHTMLTextAreaElement?
  8. Help me from Serious memory leakage
  9. Fax probs
  10. How to use IHTMLTextAreaElement?
  11. Treeview item delete
  12. windows 2000 and SetForegroundWindow
  13. How to read the configuration area of a PCI device
  14. CListBox
  15. DoVerb OLEIVERB_UIACTIVATE
  16. How to compare the file contetnts of two binary files?
  17. How to send a file to an FTP server?
  18. System tray Icons
  19. System tray Icons
  20. problems with using unrar.dll
  21. Message Handlers
  22. Serialization
  23. Problem with WinMain
  24. Problem with WinMain
  25. STL List question
  26. ComboBox Dropdown
  27. Hyper line on about dialog
  28. Error when launching application by clicking on file
  29. Mouse Wheel support in Windows 95
  30. How to use TreeView in Doc/View archi?
  31. Memory Leak in VARIANT and SAFEARRAY
  32. CStringArray
  33. snmp protocol
  34. CToolBar in a CPropertySheet
  35. Firing events from a custom class
  36. CharSet
  37. Serialize calls to a COM object
  38. HTTP Request
  39. Urgent - please help with date/time picker problem in a form view
  40. Circular Log File
  41. Is there a standard Dialog for formatting disks etc
  42. Making one Form visable and hiding the other
  43. How to change the Background Color of a Date Time Picker Control?
  44. Using HTTPS on WInInet (INTERNET_CERTIFICATE_INFO)
  45. MAPISendMail & recipients?
  46. Need to delete a record out of the middle of a file.
  47. mail popup
  48. Function call "WaitCommEvent" fails in NT / 2000.
  49. SAFEARRAY (BSTR)
  50. Coloured Checkmark Bitmaps In Menu?
  51. CFileDialog - pathbrowsing only
  52. Really need help with program.
  53. TimerProc
  54. MFC:access to a class variables from another class
  55. Getting values from dialog into list control
  56. Problems accessing CodeGuru Discussion Boards...
  57. Help! CDialogBar button enabling (again)
  58. Unicode reading from a file
  59. Bitmaps
  60. how to print
  61. How to find a valid machine??
  62. How can a listening socket get incoming IP before accept?
  63. printer defaults - "Scale to Fit"
  64. Folder DIrectory
  65. Open Dialog
  66. Copy a large DIB into the clipboard?
  67. Making MFC Apps use systray.
  68. FTP Putting
  69. Control switch between two applications.
  70. C++
  71. CString::FInd()
  72. Winsock, Threads, and Classes
  73. Winsock, Threads, and Classes
  74. Mouse Control in a MCIWnd window
  75. List Control
  76. One program works great in windows 98 and doesn't in windows 2000. Why? Any way to resolve it?
  77. c database connectivity
  78. proc
  79. Exception Popup in unattended Server
  80. dbgheap.c
  81. Knowing the IP of a client
  82. A question related with clipboard
  83. Displaying 20000+ rows in a ListView Control
  84. Preventing a dialog from being shown
  85. List Control
  86. How can i play a mpeg file ???
  87. Wininet Leak??
  88. Catching Enter Keypress
  89. Virtual Memory leak problem??
  90. EXCEPTION_ACCESS_VIOLATION
  91. dynamic_cast Problem while downcast
  92. 1 more systray question
  93. string to CString?
  94. CAnimateCtrl
  95. Passing pointers
  96. Flashing Colors on Controls
  97. Sending data from device driver to application
  98. Win32 API
  99. Saving from a program's input to a file...
  100. File name comparison
  101. CAnimateCtrl
  102. array of structs
  103. Question about reflected message handler
  104. How to Draw a BitMap in a CButton
  105. Remote Control Method
  106. learning COM
  107. modifying command line
  108. GetDlgItem(help)
  109. C++ to HTML to Browser
  110. CreateProcess and EnumChildWindows
  111. CPropertySheet
  112. Unknown / Wierd Messages
  113. clicking, dragging and moving rectangles
  114. Exchanging data between property pages
  115. what is C runtime functions ?
  116. CDialog Visible
  117. Multiple Inheritance
  118. Drag & Drop from CListCtrl to a CListBox
  119. WM_SETCURSOR
  120. Loadlibrary error when loading VB compiled EXE on Win98
  121. GotoDlgCtrl does not work!!!!
  122. webbrowser control
  123. DrawIconEx, m_hDC, Print and PrintPreview
  124. WinClus
  125. Registration of IN PROCESS COM Server
  126. Insert a menu to a Rebar's band
  127. Looking for help with wave files and fourier transforms
  128. How to make my DLL smaller?
  129. Messaging
  130. Messaging
  131. Rename in tree ctrl
  132. What to do with this error message???
  133. Palette problem
  134. beginner
  135. OleCreatePropertyFrame
  136. SetWindowLong across another process
  137. IPicture interface
  138. CSocket file transfer
  139. Time Function
  140. How to get ODBC source name
  141. Behaviour of GetFileAttributes(filename) NOT JUSTIFIED
  142. Interface isn't registered error
  143. How to accelerate texture mapping in opengl?
  144. Get Address Book records
  145. Get File Information ?
  146. How can I set CFileDialog icons...
  147. Timer in self created class
  148. How Can I connect to an ODBC-database from a Dll?
  149. Any idea
  150. Anyone have MsgWaitForMultipleObject function example
  151. INI file writing
  152. GUI using VC++ : SetFocus using TAB key press
  153. Seeking for a MS Character Map-like control
  154. Shutdown computer
  155. How do I get LRC?
  156. cursor
  157. can't get treeview working.TreeView
  158. Connection Points
  159. Virtual List View
  160. adding methods and properties in VC++
  161. Minimized
  162. Detecting logoff
  163. Minimized Icon On Taskbar
  164. Can I send CPoint coordinates with a PostMessage(WM_LBUTTONDOWN, ?, ?) ? so that I can force the Lef
  165. TAPI
  166. TAPI
  167. Changing the directory (not file) creation time.
  168. non-activatable dialog box
  169. how I can change the Icon On double-click in CListCtrl ?
  170. Client Server Project
  171. Need help with developer studio/debugger please!!!
  172. detecting enabled/disabled state of a buttun in a tool bar
  173. Calendar control - pick multiple dates but not sequential?
  174. How to get PID of certain objects.
  175. Loacting process.....?
  176. Putting a Picture on a button.
  177. Urgent disable back button in property sheet wizard
  178. Autorun.exe
  179. How to stop the view from display upon startup of App?
  180. CEdit and the like
  181. HTTP request class?
  182. HTTP request class?
  183. Tab key not working in window created with CreateWindowEx
  184. without left arrow key
  185. detecting installed hardware
  186. CAsyncSocket using DGRAM with OnReceive
  187. How do I know when a PropertyPage lost it's status?
  188. Password Protecting a CDaoDatabase
  189. Disabling Recent Files
  190. How to activate a window and put it on front of the others in W2K ?
  191. !-=<(|)>=-! Play MP3 !-=<(|)>=-!
  192. The infamous LNK 2001
  193. JPG (Simple Sample Needed)
  194. UuidFromString not working as expected
  195. IDataSourceLocator interface
  196. Font
  197. Bitmap size
  198. Return & Throw Interaction
  199. Removing an Active X Control
  200. Win32 Serial Communications Problem
  201. CreateProcess
  202. Finding Start Menu folder
  203. sheet based application
  204. Is there a toolbar class that does this...
  205. Doc/View with default Maximize attribute
  206. LocalFree causes fatal error
  207. fileExists
  208. Animation in Dialog(easy source)
  209. Disable ActiveX Control
  210. NT service and DOS
  211. Disabline a Menu item! Help
  212. Registering Exe
  213. TabStop in ActiveX Controls
  214. Edit Box Update Problem
  215. Edit Box Update Problem
  216. creating random file size
  217. Printer defaults
  218. QuickQuestion
  219. CFileDialog: Selecting Multiple Files AND Directories
  220. string conversion
  221. References or pointers?
  222. Drawing Colored Rectangles
  223. need help for an ADO wrapper
  224. MATLAB in Visual C++
  225. Windows dialog initialization (SAP!)
  226. Translucency Effect
  227. Inserting a validation rule and validation function into MS Access 97, 2000
  228. start menu samples
  229. Write to an HTML file
  230. Equivalent to GetObject
  231. Custom OLEDB Provider
  232. CButton::Create doesn't work???
  233. Automation VARIANT type problem
  234. How do to build a 16 bit DLL?
  235. Mapping File in ISAPI
  236. dialog-based accelerator keys
  237. Serial Communications
  238. Need example-> Read a JPEG and Place on a CButton
  239. Close() function doesn't write buffer to disk ?
  240. problems in programming
  241. Custom OLEDB Provider
  242. use of classes in dlls
  243. Socket Wackiness
  244. use of classes and objects indlls
  245. DCOM Server with UI
  246. DCOM Server with User Interface
  247. Is it possible to set some letters in a particular color in a Edit Box Control ?
  248. Loading Bitmaps Into MFC Programs
  249. Structure Alignment
  250. OLEDB Provider