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 resolve the warning
  2. Help require in CAsyncSoket .....please...
  3. AnyBody know how to change the Toolbar Color
  4. How to delete a Section in .INI File?
  5. Help needed Urgently????
  6. How to get WiFi wireless card details
  7. If VC++ has a similiar function like Doevents() in VB?
  8. if VC++ has similiar timer control like in VB?
  9. WAVEFORMATEX,increase the volume
  10. Tab and var:
  11. How to add a rectangle to an existing Metafile?
  12. How to get treectrl's gap
  13. Prompt message when using dialog button
  14. what is CBRS_GRIPPER?
  15. tree control problem
  16. Using CAsyncSocket in Win32 application
  17. ADO AddNew
  18. Ownerdraw checkbox
  19. Modal dialog created via CWnd::Create(...)
  20. PPViewer
  21. When will be OnDraw() called?
  22. Wrong Memberfunction is called
  23. Problem of Memory
  24. _doint() en _rax
  25. debug mode errors : C2059, C2091, C2809
  26. STL and Dll's
  27. URGENT: Creating ActiveX in a DLL from two diferent threads.
  28. Converting a long hex string to a decimal
  29. Runtime dll Loading
  30. about timer
  31. Scrolling mechanism in a dialog
  32. standard string to variant bstr
  33. fn pointers for callbacks
  34. Assembly in VC++ 6.0
  35. ScrollWindow()
  36. How to set row hight in List Box?
  37. Run time OLDEDB datasource detection
  38. problem with list view
  39. vertical Owner Draw Toolbar
  40. Debug VS Release
  41. regarding subclassing: general question
  42. Modifying file access permission/rights.
  43. ADO without COM <:)
  44. vb-like property grid
  45. CListControl with color
  46. Debug Assertion failed
  47. MFC DLL Settings Code Generation run time library MultiThreaded
  48. Help Again been looking at this for a few days (Urgent)
  49. Timer
  50. Image Library
  51. CProgressBar in Modeless dialog
  52. How to add a button to toolbar dynamically
  53. Passing NULLs to VC++ ocx through property
  54. THE BEST CLISTCTRL with COLOR help
  55. Screen blacks out
  56. change title
  57. Determining File Type
  58. Tool Window
  59. Simple right click question..
  60. Project dependencies?
  61. SMTP email using CSockets
  62. How to detect and so get rid of memory leaks
  63. Which files does OpenGL need to run?
  64. STL -- contructing the list of the list
  65. question about callback functions
  66. Help with problem.
  67. Asynchronies dial up connection
  68. Timer inside CListCtrl-derived class stops after once
  69. Get titlebar ICON from ANY process?
  70. Socket using MAC Address
  71. How to deal with "First-chance exception in MyPro.exe ..."
  72. Object creation in runtime
  73. DeleteDC, DeleteObject issue.
  74. Certain controls with strange ClassNames
  75. Detecting an instance of another application
  76. CFile::Open() is inconsistent
  77. How to Implement DllGetClassObject??
  78. CustomDraw TreeCtrl
  79. getting a kernel32 access violation using GetSystemTime (XP)
  80. resizing a window
  81. Knowing which day a given date occurs on
  82. 16bit bitmap problem
  83. Using CArchive:WriteString with CSocket
  84. A really hard question!
  85. Image Procssing Help
  86. Problem with libraries and windows functions
  87. Problem with CScrollView in Windows Me
  88. UpdateData()
  89. Hooks and stuff
  90. Basic debugging question
  91. Visual Studio Style debug window !
  92. Rounding up a date to the nearest given day and getting the result
  93. Transmitting a List Causes Hangups
  94. Japanese and English encoding in IE
  95. compilation setting problem
  96. CButton Change Text Color with XP styles
  97. How to display system menu in system tray?
  98. How to determine wich TabCtrl item was clicked with right button?
  99. Creating a dialog in a separate thread in a DLL
  100. Help me, Full Owner Draw CEdit Control
  101. Accessing third party resource from ocx control
  102. CAdodc::OnWillMoveAdodc
  103. XP Style Problem
  104. Should I use multithread in my application?
  105. a dll problem
  106. Setting title in MDI ?
  107. ComboBox and ListBox
  108. Why Serialize?
  109. Activex MFC thread
  110. Distributing MFC and MSComm.ocx
  111. GetFieldValue and Thread ...
  112. Dynamic Open the File.....
  113. Please donot yell at me, I am just looking for some help...
  114. i want to make a basic 2d one on one fighting game can someone explain what to do...
  115. Dynamic CSplitterWnd panes
  116. MDI Child Window Problems
  117. How to make tab control keep selection?
  118. A MessageBeep() problem.
  119. creating .hlp file question
  120. DEBUGGER displays WRONG values ??
  121. Winsock
  122. Obtain Private Key from Pfx(PKCS #12)
  123. Web Browser control (questions)
  124. Question regarding file streaming
  125. Text Object Model(Urgent)
  126. using Mouse Wheel...
  127. button and a web page
  128. CEdit simple question
  129. Can someone examine this code for me?
  130. Are Meyers and Stroustrup WRONG about static const member vars?
  131. painting a window over a direct/opengl window.
  132. how to make a edit box just like outlook's
  133. Does "iter++" equal to "iter+1"?
  134. how to get asm from machine code ?
  135. Access Violation
  136. radio button problem
  137. Program entry within a class like MFC
  138. Multiline CString
  139. How can I convert a binary to Hex in VC++?
  140. DateTime Picker Control
  141. send structure from application to another
  142. OPC Server & Client
  143. a sort of OnMouseOver, OnMouseOut possible?
  144. CListCtrl/ReportView tooltips
  145. A problem about shell extend menu and shortcut icon
  146. Brush from WMF file !
  147. How can I malke a bitmap
  148. ActiveX and BYTE *
  149. LPARAM confusion
  150. tree data's save, load
  151. Handling timeouts in WinInet
  152. Convert HICON to HBITMAP
  153. How to capture keyboard strokes inside a modaless dialog in an ActiveX control?
  154. Setting recording volume
  155. Asynchronous http connection
  156. odbc driver: server side or client side install?
  157. Nearest Panel
  158. Empty combo box. Why?
  159. How to pass an array of COM-Objects
  160. use char* with new and delete....
  161. SetWindowsHookEx and Unicode problems.
  162. Class Wizzard and CView
  163. service in vc++ 6
  164. Register dlls only for specific users
  165. Free GUI Libraries
  166. Does Windows identify each "restart" or logon ?
  167. web button
  168. Checking if an app instance already exists.
  169. how do i know whether an interface is createable or not?
  170. Enabling RichEditView Horizontal Scorlling
  171. allways on top
  172. Diff between GetSelectionMark() and GetNextSelectedItem()
  173. Clipboard to Bitmap
  174. 32 bits icons on XP
  175. Change the Background color of a CButton Object
  176. Set start address of a dialogbox
  177. COleSafeArray::CreateOneDim problem
  178. Getting user information
  179. selecting an item in a CTreeCtrl
  180. SendMessage from .exe to .dll
  181. How can I print a content of RichEditCtrl???
  182. Database Problem
  183. Regarding streams: Can you use a ios_base::seekdir when a streampos is expected?
  184. DLL acting differently on different NT4.06a machines
  185. check if a file is copied or not?
  186. Problem with CArrayRowset from OLE DB Cons. Templates
  187. How can use MSWord Type Help in my MFC program ?
  188. How to make the package of my Application ?
  189. CComboBox & ToolTips
  190. how to hide or disable toolbar button
  191. Sets Data Structure
  192. Is this True
  193. Msflexgrid
  194. drive msword with vc++
  195. How to cast CRect from MFC to a Rect from GDI+?
  196. ATL Host
  197. COleSafeArray::CreateOneDim problem
  198. image processing of tiff images
  199. SQLServer restoring in VC++
  200. SDI without Menu
  201. Resizing the controls of the window
  202. How to protect specified file?
  203. Export GDI-Objects to BitMap
  204. storing defferent objects in a list
  205. Direct X Problem
  206. Multiple program instances failure
  207. Why do I get "error C2011 'EnumName' : 'enum' type redefinition" from .tlh file?
  208. AddPage is not a member of
  209. MFC Project Release version Error
  210. How to save bitmap with data
  211. Opening a remote Windows XP SCM using OpenSCManager
  212. Saving Program Data
  213. UI Thread help
  214. Flicker-free drawing
  215. How to export class from regular DLL & import this class and use in cleint applica
  216. How to draw a transparent ocx control
  217. I wonder if array can be function return?
  218. Speed: CArray vs Standard C arrays
  219. XMLDOM and &quot;
  220. Menu problem
  221. populating treectrl from list of file paths
  222. The fastest and easiest way to trasfer some data from DLL to an APP?
  223. CPropertySheet Problem
  224. Detecting what window the cursor is over
  225. Problem displaying a dialog box. Help please.
  226. find out
  227. math in VC
  228. Am I in a heap of trouble, or what?
  229. How to prevent users from installing software
  230. Automation Word: Get properties such as author, company... of a document
  231. bitmaps in CWindowDC?
  232. Need Help putting a logo on a menubar
  233. landscape print from dialog?
  234. TAPI 2.x over Panasonic platforms
  235. GetPrinterDeviceDefaults() fails
  236. Joining movie files
  237. VK_F10 with PreTranslateMessage not work?
  238. ExitProcess() crash on WinXP in Release mode
  239. Closing Window...??
  240. cannot access public member
  241. How:Put Unicode To COM in _MBCS-App
  242. Using crosshair to find screen coordinates
  243. How can i implement What is this type help ?
  244. playing with RichEditCtrl
  245. retrieving directory for profile
  246. Word wrap in CListCtrl
  247. Who is it? :)
  248. Viewing Files
  249. ico to gif
  250. threads