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. Icon
  2. Key Event
  3. SetScrollRange
  4. unrelated topic on web servers
  5. Preventing Window Resize
  6. double column in CListCtrl
  7. File/Folder Renaming and controling ..
  8. Folder/File renaming ideas .
  9. FindNextPrinterNotification()
  10. Displaying Windows NT services programatically
  11. Highlight text in RichEdit (I'll rate you)
  12. Listview sorting problem
  13. WinNT Task Scheduler
  14. static splitter
  15. VisualC++
  16. Windows VC++ and Graphics Images
  17. Quotation Marks in a string
  18. Removing close button from document
  19. Form Views
  20. Sizing windows
  21. Buttonless MessageBox
  22. Buttonless MessageBox
  23. API call for ping
  24. Using DLLs without Headerfile
  25. URGENT!!! dynamically changing CSingleDocTemplate
  26. CTypedPtrList losing value
  27. Background color of an SDI application
  28. FAR, PASCAL and screenshot taking
  29. HotBar
  30. SetTimer, KillTimer
  31. CListCtrl Invisible??
  32. switch FrameWnd
  33. doc/view question!
  34. Byte Aligning
  35. HotBar
  36. Wav Sounds`
  37. Saving Bitmaps
  38. New question on ToolTips
  39. Sending strings between classes
  40. RePost - MAPI conflict with iostream.h?
  41. Serializing classes with pointers
  42. deleting object not created with new
  43. HOw to ADD Graphical FUnctions DOs based Applications.such as..
  44. Serialization
  45. Printing object in Memory
  46. What is gateways
  47. Check box colour
  48. Mixing MFC and C++
  49. Lost in my own design
  50. why my printed picture only has 2 colors?
  51. Ada to C Converter
  52. why my printed picture only has 2 colors?
  53. how to communicate between windows program and console program via socket
  54. Use a bitmap in the background of the top toolbar
  55. Help with Save As ( *.*)
  56. Running other programs from Visual C++ enviorment
  57. Maximize a CFormView
  58. serialize my struct
  59. Heaps and threads and frees, Oh my!
  60. Dial-Up Adapter
  61. No Arch or Detail Design Docs
  62. How to resize a dialog bar with a button push
  63. Need your help.
  64. Send message to window aplication without mouse or keyboard
  65. CObject Class
  66. retrieving the name (label) of a drive
  67. MFC initialization of Thread State.
  68. MFC as event source
  69. Heart Polygon?
  70. Calling another program
  71. running another exe from vc++
  72. running another .exe file from vc++ program
  73. installation file
  74. Quit Excel
  75. Map as in cities, roads etc
  76. PSt Password
  77. How Does Microangelo Replace Icons in .Exe's?
  78. CSliderCtrl
  79. How to get blocking/non-blocking status of a socket?
  80. Drawing a thick line
  81. Dialog box onpaint problem
  82. OpenGL Scripting
  83. Please help: Dialogbar + Color ComboBox
  84. How do I share a class between two other classes
  85. New dialog box
  86. The Structure Of An MFC App
  87. DLLCanUnloadNow
  88. drag & drop in dialog
  89. string variable overlap
  90. The convertion of Chinese Data when send through COM port and socket
  91. CString && string
  92. _wfopen
  93. CTabCtrl........
  94. int[8] to int
  95. Port app to laptop
  96. CComboBox.Dir() always returns CB_ERR
  97. "Error '3445':Increect Version of the dll file 'MSJET35.dll' was found".????
  98. _int64 to short
  99. Web Browser
  100. application crash in Release version
  101. Data type for hexadecimal numbers
  102. Excel Automation - copy an array
  103. Serializing & Adding to a file?
  104. Why I can't goto definition of a template class' member function?
  105. Int to int Array
  106. Problem
  107. 7ETezI
  108. Get User IP, ISAPI
  109. CPropertyPage !!!
  110. char to int
  111. Parser in C++
  112. MessageBox problem
  113. What can I do in this case(Linker errors))
  114. CFileDialog
  115. Assign integers
  116. Timestamp fields in MSAccess
  117. CDialogBar
  118. Any Triggers in Access
  119. how can i get the list of tables associated with a dsn
  120. socket problem lost telegrams
  121. ActiveX & WinExec
  122. How to create a DLL
  123. How can I controlled other program
  124. How to get filename from file pointer?
  125. LCID!
  126. random array
  127. Problem with CL application.
  128. CSocket::CancelBlockingCall
  129. UPDATE_COMMAND_UI with DialogApp
  130. Stack Overflow
  131. How do i word wrap in a listbox control
  132. Visual Studio Installer + Shortcuts
  133. using of MsComm control ...
  134. real time applications in windows
  135. WS_POPUP-style window and taskbar
  136. [VC++,COM] Do VB "Implements" in VC++
  137. Where can I get a free open source word processor ?
  138. VC6 Project Conversion from NT to W98
  139. Can an HTML doc communicate with an application?
  140. FIFO
  141. Cookie Setting
  142. rich edit box, runtime error
  143. Insert CheckBox in CListCtrl
  144. Converting 8bit RGB to 24bit True color
  145. ToolTip to StatusBar
  146. MapObjects
  147. linking error: library conflict
  148. CE MFC Dialog problem
  149. Palette for owner drawn buttons.
  150. PropSheet-Bug ?!
  151. file operation
  152. Serialising the clipboard
  153. MS Outlook Login Control
  154. Class initialization
  155. Wanted: Source to Windows GUI FTP client
  156. Wierd resolution problem
  157. CComboBox
  158. Redraw window
  159. Serial Communication
  160. Please help : problem with distributing ActifveX control
  161. Big Endian -> Little Endian
  162. Bold type of an item menu
  163. DirectDraw+OpenGL
  164. Dialog Box
  165. CRecordset and multiple tables
  166. RichEditCtrl
  167. Selecting Common Control Language
  168. Edit boxes
  169. Proxy setting for Netscape Browser
  170. combining toolbars...urgent!!!
  171. Printer Monitoring
  172. Must click on view to print?
  173. multi dimensional arrays
  174. Adding BMP to Button of Toolbar
  175. Templatized Member Function
  176. Exec DOS program with waiting
  177. How to change the color of item inside List control box?
  178. OnSetFocus() for CFormView??
  179. String Tables
  180. windows 2000 service
  181. use a C function from a C++ program
  182. Adding my own images to toolbar
  183. Help! LNK2005 still unresolved!
  184. use a C function from a C++ program
  185. CString.h
  186. anybody can recommend a good online training center to prepare for the MCSD Certificate using C++?
  187. Baffling behavior in queue?
  188. Activex control and MSComm
  189. How can i add my own imaged to toolbar buttons?
  190. Bitmap in a toolbar button on the right
  191. Using Interfaces
  192. Undo
  193. Tabs
  194. Arrays and Strings
  195. Webbrowser control inside an activex control!
  196. Replacing CEdit ??
  197. GetClipBox
  198. Function
  199. Size of main window
  200. ADsOpenObject
  201. link Splitter with CTreeView
  202. service using come with atl
  203. service using come with atl
  204. Printing - Please Help !!!!!
  205. using DLLS to load resources
  206. char[ ] / CString / void* help
  207. value returned by a process
  208. unresolved external symbol "public: static struct CRuntimeClass const CChapterView::classCChapterVi
  209. How to determine if a dialog is open?
  210. visual c++ edit window
  211. CLIstCtrl
  212. How to send data to serial port
  213. increasing font size on static label
  214. GetModuleFileName()
  215. OnNcLButtonDown/Up quirkiness
  216. CRichEditView background color
  217. Font problem
  218. Arrays and possible memory leak
  219. Beginner FindNextFile Problem
  220. CALLBACK !!!
  221. Can Class Wizard derive a new class from CRichEditView
  222. Reding and writing in RTF files !!!
  223. adding a Toolbar to a dialog app?
  224. The message is lost?
  225. memory DC to reduce flicker?
  226. Diff. between C++ and VC++
  227. web based chat
  228. DirectShow frame step backward ??
  229. how do you initialize a DC?
  230. What is telnet ?
  231. Handling pointers
  232. What happens when you leak cached memory?
  233. ClassWizard to redefine class
  234. GetProcessTimes() functionality on Windows 9x
  235. DoModal in callback from threaded DLL
  236. Grabbing time
  237. where is the correct place to put CDocument::AddView calls?
  238. IIS Administration Thru Programming
  239. new line in the CEdit box
  240. KILLIING ME, PLEASE HELP! Can't Associate Views of SplitterWnd with Document
  241. need book on ISAPI
  242. how 2 use a var as global in all objects of the project
  243. Validating Floating Point Number
  244. Time error
  245. Calling DLL from DLL Assertion Failure
  246. Pass string by reference
  247. PowerPoint Viewer
  248. Can someone provide an example using the GetComputerName() api
  249. Right-Mouse Click in Explorer
  250. Getting text from a List Control