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. urgent plz !!!!!!!!!!!!!!
  2. MSCOMM without a dialog
  3. CComVariant Problem
  4. How to set title text in Main window in MDI?
  5. ExcelRTD in C++ COM
  6. Writing a VPN connection
  7. mci sound temp file
  8. BIG problems with CRecordset...
  9. Sending mails using MAPI...
  10. Converting to a Unicode Application
  11. Menu merging in Access
  12. vc++ creates *.cpp.bak files
  13. Memory Leaks
  14. Group box colors
  15. CToolBar Questions
  16. How to use new style FileOpen Dialog?
  17. using bulk
  18. PrintProviders..........
  19. MFC Dialog hWnd Problem
  20. CSocket 10038 error
  21. filtering text image in VC++ 6.0
  22. Discovering DLL exports
  23. How to convert wmf to bmp ?
  24. double format
  25. Changing notification behavior of sys tray item
  26. CRichEditView
  27. Programmatically UNselect CListCtrl items?
  28. can i create MDIChildWindow inside DLL by passing Application MDIFrameWnd as parent.
  29. If I could ask the Microsoft VC++ Team any question....
  30. A question about GetDCEx.
  31. how to use activex control in a dll appl.
  32. SHGetSpecialFolderPath
  33. executing a query and adding data
  34. putting bitmap on screen
  35. Confused about screen and logical inches
  36. GetBindString to get HTTP headers in namespace APP????????
  37. erro using bulk
  38. How can I make UpdateAllViews() virtual?
  39. Using MFC
  40. How to prevent heap fragmentation
  41. GetIcon doesn't work
  42. Memory Leaks
  43. NewB question about event handling
  44. CSocket Unknown Error While Accessing File
  45. Print tutorials?
  46. Saving and retrieving HDC properties
  47. What is the best way to determine on which region the user has clicked?
  48. Shell Scripting Site?
  49. Server is Busy when Macro is executed
  50. Worker thread
  51. CRichEditView
  52. dynamic generate combobox in a customise toolbar
  53. A question about spawn
  54. lost Focus....
  55. CStatusBar Truncating Text
  56. Assetion error in dialog
  57. CEditView setting line text
  58. sql statement
  59. ATL property page.
  60. WaitForSingleObject, "doesn´t wait .... "
  61. xml parsing
  62. How can I get the color of a pixel in a CBitmap?
  63. Camera CapDevice
  64. pls. look at this
  65. Scrolling two list boxes at the same time..
  66. putting createprocess output in a file
  67. HELP PLEASE!! dynamic generate combobox in a customise toolbar
  68. xml parsing smart pointers, urgent......
  69. MDITile()
  70. Socket Space Carnage
  71. Determining program's directory/path
  72. CString to BSTR
  73. Thanx
  74. Identifying multiple pointing devices (mice)
  75. CList<CMyClass, CMyClass&>
  76. GetFileSecurity
  77. error library <afx.h>
  78. CFileDialog Modification
  79. map network drive dialog
  80. ASSERt for CListBox::AddString()
  81. How to delete rows in an Excel file?
  82. How to change CListCtrl Gridline Colour
  83. Updating Document data from Dialog
  84. help!!
  85. Problem Calling CoInitializeSecurity
  86. Spl file
  87. Wrapping variable argument function
  88. disabling IE's active scripting
  89. Errors, help!
  90. Problem Using CoInitializeSecurity
  91. Tab Control
  92. Printing items from a CListCtrl
  93. List Box with the list of files and folders (use of DlgDirList & DlgDirSelect)
  94. template function mystery! or shall i say misery
  95. How to replace icon in an executable?
  96. ComboBox Edit coordinates
  97. Maximize/Minimize-Window-Message
  98. richedit20.dll error "afxwin2.ini"
  99. _write creates a readonly file when used in a DLL
  100. Console App to Service
  101. Context Menu location
  102. Getting data from an access2000 database require access2000 to be installed on my PC
  103. Is it an MFC bug?
  104. Hi Guys
  105. Printing problem
  106. Cwnd
  107. ScrollWindow
  108. strange acces violation in my destructor ?
  109. Squared meters, cubic kilometers
  110. MFC in the DLL
  111. title of Property Page
  112. Determining text alignment in a CWnd
  113. Rotation in GDI+ ???
  114. a problem of access violation
  115. How to keep the proportions of a Window while resizing?
  116. Web based Client
  117. uppercase
  118. LoadFrame problem
  119. Help Context (third episode)
  120. OpenGL and the Mouse
  121. MFC Programming
  122. help How implement faste batch operate in sql server7.0 like "bcp" command!
  123. CProgressCtrl
  124. How to free a memory associated with the toolbar buttons?
  125. ErrorLogFile-Suggestions
  126. Subitems incorrect sorted in listctrl
  127. Tool Tip in CTreeCtrl
  128. Eval() function in c++
  129. DialogBar
  130. Multiple CDialogBar
  131. JDBC & Visual C++
  132. CAsyncSocket, server send to client?
  133. Mapi
  134. how do you control the font in the ctreectrl items?
  135. urgent plz !!!!!!!!!!!!!!
  136. CPropertySheetEx
  137. Help me please : Get Bios Information
  138. dlls and VC 7.0
  139. Need help with MS-Word automation (specifically printing)
  140. If you have some problems see www.secbooks.prv.pl
  141. How to keep the ratio of a window when risizing it?
  142. changing value of a node using xml parsing, please urgent
  143. hmm I think I may have a memory leak...
  144. BIOS Manufacturer string
  145. Array of different data types
  146. CSplitterWnd problem
  147. draw text in a cview stretched to a length
  148. I don't want that my program need msvcr70.dll
  149. How does one send a message simulating a column click for sorting for a CListCtrl
  150. CListCtrl
  151. HELP: Setting include libs and predefines in custom appwizard
  152. Getting ASCII Array for Shifting
  153. Interface based programming: Unhandle Exception
  154. Executing exe from C++
  155. Put text/drawings into Menu-bar
  156. setting the order of tabs
  157. pFormatetc
  158. Removing an image from my ListCtrl
  159. Increasing size of HBITMAP-Urgent
  160. Vector problems
  161. Vector problems
  162. PPK: DS and encryption
  163. Newbie Land: How to take DOS program arguments?
  164. Function to get the 'My Documents' folder for all the users on any Windows Operating
  165. RAS Problem
  166. LOW speed in opening Access database !
  167. IE 5.5 problems
  168. Explorer troubles
  169. Using Dialog Boxes
  170. CRichEditView without doc/view...
  171. Using Dialog Boxes
  172. Using Dialog Boxes
  173. Using Dialog Boxes
  174. trying to see if my program has focus
  175. Rotating text on display and printing
  176. key press in Dialog CListBox
  177. Gurus,Help newbie with C++ program,please!
  178. Not able to update view
  179. How to show button is disabled?
  180. Random number generation
  181. ATL/MFC...a bleak future or rebirth?
  182. How to associate file to application?
  183. MBCS, DBCS, Unicode
  184. Unhandled Exception & Winsock :: Winsock
  185. rotation of DIB using bilinear interpolation
  186. Catching Word 2000 events
  187. Catching Word 2000 events
  188. Catching Word 2000 events
  189. Thread help ...
  190. Switching between installed languages !
  191. Dlg Background Bitmap not top left?
  192. Dialog/Document problem unsolved
  193. Saving HTML as Bitmap
  194. am i dreaming
  195. CComboBox problem
  196. Adding records to a database
  197. CTreeView in a splitter?
  198. DC beyond Screen?
  199. ToolTip !
  200. Colorize CSrollbar. How to do?
  201. ResizeParentToFit and splitters
  202. help How implement faste batch operate in sql server7.0 like "bcp" command!
  203. C++ Help Needed!
  204. Find's "Mark All"
  205. CArchive CFile limits
  206. Passing Dialog Date Into Program Var
  207. HOw do i implement GIF FIle
  208. how to get count perpage in Listcontrol after resizing?
  209. RichEditCtrlView problems
  210. Exposing a resouce from a DLL
  211. Playing a wave or mp3 file in my program
  212. Change background color in Dialog
  213. Dll in VC++
  214. how to get count perpage in Listcontrol after resizing?
  215. PropertySheet
  216. Tool Tip in CTreeCtrl
  217. Nested "structs" in ATL - how do you do it?
  218. How do i handle the minimize/maximize button ?
  219. Can I access a VB compiled DLL from a C++ project?
  220. Can I access a VB compiled DLL from a C++ project?
  221. Is there a fast method for doing this?
  222. help How implement faste batch operate in sql server7.0 like "bcp" command!
  223. Trap messages of another application
  224. Using MFC
  225. help How implement faste batch operate in sql server7.0 like "bcp" command!
  226. CListCtrl without labels
  227. Output-File Problem
  228. Source of GetPrivateProfileString() ?
  229. Resize event of CSplitterWnd
  230. GetVolumeInformation
  231. Capturing Network Packet
  232. How Implement faste batch export data from SQL Server to dat file in VC?
  233. Start a class from WinMain
  234. How do i display Bmp into my Dialog !!!!
  235. Very darn rare bugs : should we fix them?
  236. How can I maintain the selection in the ListCtrl?
  237. start up application through dde
  238. ClistCtrl
  239. Tree Control - Right Side Branch
  240. Thread Local Storage
  241. CListCtrl question
  242. How to get last functions return value without assignment?
  243. getting COM error string for given HRESULT
  244. This beats me ...
  245. exit thread
  246. Comipling and Linking from the command line!
  247. CScrollBar subclassing
  248. Serial Port Device Drivers....
  249. finding programs running or not running
  250. Tooltip & toolbar