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

  1. GetUserName
  2. Get the workspace name/path?
  3. Removing the main menu
  4. Modal/Modeless dialog overlap
  5. isapi filter to access SQL SERVER code needed
  6. thread app dies at exit...sometimes
  7. Problem to carry over my Soucecode from one PC to another
  8. ODBC Database
  9. Please Help - Urgent - print dialog content
  10. DatePicker Control and Alt/F4
  11. 3d Controls: Not using MFC
  12. new ???
  13. Excel as a component
  14. Caption of Dialog Box.
  15. Strange problem with ClassWizard
  16. Does CColumn::SetDataField() work with DataGrid control ?
  17. SendMessage to Child Window
  18. a question about CL command
  19. PLEASE HELP::CRegKey basics
  20. I cannot show a CListView control
  21. WriteFile() hangs program
  22. Disable items in a ComboBox
  23. Own cursor for only window
  24. VCD to/from MPEG
  25. midl error: Can't be run in DOS mode
  26. Own cursor for window
  27. VERY URGENT VC++ dll called from VB
  28. static CSplitterWnd-Layout
  29. How do you acces the System Registry on another PC on a network?
  30. Question about std. font dialog
  31. Displaying Bookmarks in VC6++
  32. Legalize
  33. Including ActiveX in a normal Window
  34. Having trouble writing to the registry
  35. Multiple Clients
  36. Program Files Path
  37. Global INterface Table
  38. ODBC
  39. VB ListBox Capacity
  40. CustomToolbar with controls - Font problem
  41. VERY URGENT DLLS
  42. Network logon
  43. How can you find a handle of a window that the class and caption change each time the application is
  44. SHGetFileInfo & Win98 compatibility
  45. VC++
  46. Floppy Disk
  47. [Q]:how to use HINSTANCE??
  48. how to execute a dos command in c++ code without a black window shown
  49. Limit of controls in dialog
  50. ToolBar question - splitter line bet toolbar and menubar
  51. Using POST to post values to a ASP page from an ActiveX control.
  52. Registry accessing
  53. interface stepper motor using parallel port
  54. locate mouse position
  55. Setting focus to an edit box & displaying the cursor
  56. Multimedia Wave Audio
  57. How to read embedded objects from powerpoint file
  58. Inserting a bitmap in the document area of a single document based application
  59. system wide hook ocx
  60. Change Priority
  61. LPARAM and bit values
  62. SendMessage
  63. Stack overflow
  64. How to insert items in a CListCtrl
  65. Toolbars
  66. Call function from another file
  67. CString and char
  68. (Simple) MFC- Ctrl + ATL-Object
  69. NT/Visual C++
  70. Office automation documetation
  71. Clashwizard
  72. file transfer via http
  73. How do i print a WebBrowser ActiveX Control?
  74. Is it Ok to call ::Suspend() from the caller thread ?
  75. How do I find the full path of my Exe
  76. Selecting Items in List View
  77. desperate: Thread synchronization
  78. Change of font type?
  79. Chris Maunder's Grid Control
  80. why mouse cursor always flash?
  81. CEdit: No GetFocusID or handle in EN_KillFocus
  82. problem with FILE* as parameter
  83. Catching messages from CAPI interface to a program??
  84. ErroR on ResourcE
  85. File/Shell System Change Notify
  86. Precreate
  87. Change the color of the fucused control
  88. Hide scrollbar in an ownerdraw CListCtrl
  89. CONTROL resource- defination statement
  90. Still trying to highlight a ListCtrl
  91. ERasing
  92. Vector -- add values, without...
  93. Combobox event
  94. Inheriting CStdioFile
  95. How Do I Enable/Disable Message Commands?
  96. SetItemState ?
  97. Reading embedded objects data from powerpoint
  98. How does My app acknowledges the existence of records (DAORECORD/DAORECORDVIEW)?
  99. ISAPI Filters - HTTP #401
  100. ODBC error "data truncated"
  101. Using OnRegisterMouseWheel For using OnMouseWheel Message
  102. Bitmap in CScrollView
  103. Invalid Pointer
  104. "NULL" undeclared?
  105. Creating Splitter Window In DLL
  106. Multiple line for header
  107. realloc madness
  108. realloc madness
  109. COM client and server
  110. How to invoke Hyperterminal from My application?
  111. All time compile
  112. Determining Text Alignment in a CStatic Control
  113. How dragging a control into a dialog
  114. OleDb Consumer not displaying data
  115. Active Documents
  116. Batch Build
  117. Reading Tiff Files.
  118. AVI Creation facilities freely available??
  119. How to get free memory space and drive space
  120. How to open different document templates using button messages?
  121. Emails processing!
  122. OCR - libraries, code, algoritmus...
  123. How to get the status of a printer in NT
  124. How to handle KeyDown in my own CWnd derived class(detail inside) ?
  125. Any very easy way to do Scrolling Text from Right to left in Edit Box
  126. resizing the desktop window in NT40
  127. rectangle selection via mouse
  128. VC++
  129. OwerDraw ComboBox
  130. C with OFFICE
  131. Microsoft Installs US Spy Agency with Windows
  132. Mouse cursor
  133. SendMessage between Parent and Child & Child to Parent
  134. How do I keep a user form resizing a child window.
  135. ContexMenu HELP!!!!!
  136. display bitmap in a CStatic Image Control
  137. Mouse cursors
  138. COM notification on client/server crash?
  139. How to adjust a toolbar size after deleting a button
  140. Toolbar button color
  141. Saving main window look
  142. Using functions in an ActiveX component without showing the dialog
  143. Virtual List Controls
  144. Need CEdit control to format date input MM/DD/YYYY
  145. How to set the SE_TCB_NAME privelege?
  146. Talking to one ActiveX from another
  147. Threaded MDI's?
  148. CListCtrl
  149. Screen Resolution
  150. MDI Apps - Unable to Maximize Main Frame
  151. Bitmap Command Buttons
  152. How to enable or disable a keyboard shortcut key
  153. restore window - again
  154. A TreeCtrl doesn't respond when I press INS key over it
  155. CloseAll
  156. Visual C++ Execution Errors
  157. Serial Comm under MFC
  158. Problems with Excel as a component
  159. Tons of questions
  160. Getting a list of DSN's?
  161. HScroll in TreeCtrl not work, but Vscroll does?
  162. Segmentation Fault upon deleting vector class item
  163. I can enter any more letters in a CEdit
  164. Sorting a CListCntrl
  165. Help! No infoviewer in VC++ 6.0
  166. urgent,.. CPen CBrush
  167. How to print html file without print dialog box
  168. How to open a .lnk file with ShellExecute
  169. Confused with IPersist and OLEDB
  170. Creating an *.mdb on the fly with OLE DB/ADO
  171. Case Sensitive Search in Access DB
  172. Disabling an Pushup entry in an Menu
  173. Maintaining highlight when CListCtrl loses focus
  174. MFCGridCtrl
  175. Disable (popup) menu in Oninit() in dialog !
  176. not sure what to put (it's about serial port input)
  177. Color disappear......!
  178. Network
  179. One more ShellProc question.. (this shouldn't be too hard *hopes*)
  180. pure virtual destructor
  181. VK code for a period?
  182. Newtork scan
  183. Help in ASPI
  184. CToolBarCtrl and dynamic tooltips to buttons?
  185. Conectivity to DSN in VC++
  186. RichEdit
  187. MS DATAGRID
  188. Help - Application Crash
  189. How to control frame rate?
  190. Use of DDX_FieldDateTimeCtrl gives Undeclared Identifier
  191. how can I make the tab key give me 5 spaces in an edit control rather than go to the next edit contr
  192. Timer callback funcation
  193. Another timer question
  194. controling cursor in an edit control
  195. Memory allocation in DLL
  196. Executing Program as if from Command Prompt
  197. Resource Modification
  198. Transparent edit control not working right?
  199. Directories in TreeListView
  200. Updating data in a recordset OnKillFocus()
  201. CListCtrl doesn't insert subitems unless RecalcLayout() is called before, what should I do?
  202. [HELP]Implement WebBrowser Band using HTML control
  203. HELP! - Windows messaging
  204. Compile EXE-files
  205. LocalAlloc vs. GlobalAlloc
  206. why isn't my view updated?
  207. Windows 95 keys
  208. Line and Angles
  209. How do I eleminate a Collision Error
  210. stack overflow
  211. System Tray Icons and Power Management
  212. Plasment of view
  213. DAMAGE: after Normal block (#495) at 0x009F4460 -- What does this error mean? How do I fix it?
  214. How to Get x,y,cx and cy points from Crect object
  215. Consoles
  216. AOL-like program source wanted.
  217. character map
  218. strstream
  219. Doc template
  220. ewing
  221. CListCtrl DeleteItem
  222. Need help writing strings to registry
  223. Color is gone!!!
  224. RAS Client Comman Dialog
  225. How to make a .LIB from a .DLL in Visual C++
  226. Modless Dialog
  227. #import
  228. Dialog question..
  229. How to new a mutidimesion array?
  230. Is there resource size limit?
  231. Play Wave on NT through Telephony
  232. To Bitmap or not to Bitmap, or other ideas?!?
  233. thread
  234. Looking for good books...
  235. Cannot receive message
  236. Downloadable Code
  237. Adding icon to TaskBar
  238. Adding icon to StatusBar
  239. how to know which editbox get the focus
  240. Resizing Mdi Child Window
  241. DAO 3.[5 | 6] - record locking
  242. CListCtrl: prevent selection of an item
  243. MPEG file format
  244. printing
  245. Can I control a Java Applet With my VC++ Application?(help)
  246. CEdit multiline problem
  247. checkbox and radiobutton problem
  248. MessageBox and amount of colors.
  249. MIDL and internal compiler errors.
  250. How to write dword and integers to the registry