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 FIGURE IP ADDRESS OF CLIENT M/C?
  2. Class Export from DLL (This should be simple right?)
  3. How to disable ...
  4. Recommendation: DB programming method to use
  5. Image for a dialog background
  6. How to create just four child windows?
  7. COMMAND PROMPT PATH...
  8. Display image as dialogbox background
  9. Copy application
  10. copy string from memory
  11. ISP Dial up
  12. app already launched
  13. gluTessVertex in a nested loop, the holes don't show up!
  14. OpenGL-tessellation, gluTessVertex in a nested loop, the holes don't show up!
  15. AfxBeginThread() vs. _beginthreadex()
  16. Where to download Stadio.NET beta 1,except Microsoft.
  17. Want ActiveX has menu
  18. VC++ Piracy
  19. Namespace
  20. Splitters
  21. CToolBarCtrl
  22. Getting out of FS mode in DirectX8
  23. my computer icon
  24. WSAECONNREFUSED (10061) Connection refused.
  25. SetFont on Edit or Combo Box
  26. cpp-files
  27. CListCtrl-Problem!
  28. How to use sharing memory block?
  29. DirectDraw Urgent
  30. Regular Expression
  31. overlaping controls & tab control
  32. cmonthcalctrl
  33. CCombobox autocomplete problem
  34. How to know if a third party exe is launched ??
  35. Spliter window, Scroll bars
  36. EnumWindows
  37. How to Debug Borland Style
  38. Separate Splitters
  39. German Books for Game programming
  40. Alpha Chanel
  41. active programs
  42. dialog box enable/disable
  43. BCB to VC DLL
  44. Q: Please help!!!
  45. 256 color bitmap saving
  46. Popup menu
  47. iswindow fails, but it is a window
  48. Login Dialog
  49. What a C can do
  50. Swapping between two dialog 'faces' in a program
  51. image on back of editcontrol?
  52. Sendingmessage to a child window?
  53. retrieving parameter info
  54. library OC603a
  55. How to use CDatabase::ExecuteSQL
  56. Exluding the mouse cursor from an area of a window
  57. DirectInput mouse control
  58. how to make a querystring for backup my database in Component
  59. Help needed with error message while returning _RecordSet
  60. how to grab WMV video frame
  61. Patch maker/applier
  62. For whoever asked.....(String generation)
  63. Using SafeArray in Automation
  64. What's the different between NEAR and FAR function?
  65. How to connect two computer
  66. Slider Control
  67. Adding Classes to a project
  68. How can I link .dll to my project ?
  69. Urgent: Need a source of msgina or awgina.
  70. Mouse port detection
  71. build install.exe
  72. Using date in ADO
  73. VC++ 5
  74. How Can I pass the "string" to my decom server ?
  75. Why I am denied ?
  76. Sending Mail through Network
  77. Pointers died prematurely!
  78. Urgent : Font related
  79. how to delete a class?
  80. play a sound resource
  81. Ho do I change menu font to Non-English languages
  82. How to copy data from CString to character pointer
  83. UI thread question with CDialog
  84. Mysterious mailslots ?? !!!
  85. About TreeCtrl
  86. Storing an image in an access database file
  87. Shortcut
  88. My app. need notification when other apps print.
  89. ATL Problem
  90. WebBrowser in full-screen mode
  91. Problem with CRectTracker in CScrollView
  92. Size of Icon
  93. a question about Dll
  94. Overloaded functions in derived classes
  95. Icons in listctrl?
  96. How to change color in a toolbar-icon ?
  97. How to get the body of a picture ?
  98. Problem with the GetLocalTime()
  99. onscreen keyboard
  100. Fontentries in WinRegistry
  101. Application directory
  102. Exception using when releasing dispatch
  103. TVHT_ONITEM and ScreenToClient
  104. Interrupt
  105. Splitter
  106. Transfer from MFC to ATL.
  107. what the diff between OnContextMenu and OnRButtonDown ?
  108. How to use a JavaAPI in C++?
  109. Please help me debug my CMenu-derived class...
  110. Property sheet
  111. compiling on w2000, running on NT4
  112. space bar event?
  113. display Japanese on French OS
  114. incompatible of API SetWindowRgn() in Win95 and Win98
  115. Forward declaration doesn't work...
  116. Splitters
  117. How to get the shortdateformat of the user?
  118. are ctime() and ftime() thread safe?
  119. HOWTO? catch an exception that isn't a CException?
  120. Does anyone know how to DIABLE a menu item?
  121. Difference between DEBUG and RELEASE
  122. Preventing Document From Closing
  123. When did user loged on?
  124. Window Handle
  125. HOW CAN I GET NET ERROR MESSAGE DEFINITION ??
  126. HOW CAN I GET NET ERROR MESSAGE DEFINITION ??
  127. Help & Suggestions: MDI Application which uses DLL plugins to create views
  128. Displaying change os state on a StatusBar
  129. Change Disk ID
  130. RichEdit - DLL Creation - Exporting Functions
  131. Working together VC++ 5.0 AND VC++ 6.0
  132. Open a database
  133. Printing problem
  134. Wrinting REG_MULTI_SZ type in registry
  135. Help in COM that modify an array for VBasic
  136. Different shaped buttons
  137. Image processing
  138. How can I slow down the mouse movement?
  139. ODBC Timeout - How do I use SetQueryTimeout in my situation?
  140. data storage in an exe
  141. Can anyone suggest IRC channels/servers to visit to talk about VC++ coding and the like?
  142. CListCtrl : How can I select item?
  143. regarding key press events
  144. CComboBox
  145. How to restore my desktop?
  146. Command prompt path..
  147. How to use de debugger
  148. .pdb file in use
  149. "CreateProcess" function
  150. Getting a CLSID
  151. grid control.(128 X 9)
  152. Link Error
  153. Remote process
  154. Center Modeless Dialog
  155. Multipage document
  156. unexplained "Switch to" from COM app
  157. first column
  158. Transparent controls
  159. Advanced RTTI
  160. I hate memory leaks
  161. dynamic call of dll
  162. ODBC
  163. Log file
  164. testing a dll problem
  165. CDialogBar in a CDialog
  166. PostThreadMessage
  167. CListctrl
  168. Small quiz for Profi
  169. minimize to system tray
  170. Checkbox in a List Control
  171. Checkbox in a List Control
  172. using Web Scripts with a Windows App
  173. Adding a Horizontal Line , Bold Font
  174. Protected Export from DLL
  175. Win NT
  176. cannot access classwizard info???
  177. Database Error
  178. Creating Libraries
  179. Creating Libraries
  180. Encription
  181. UNICODE conversion of TCHAR[] to BSTR
  182. How to...
  183. Retaining Selection in CEdit
  184. Size of an owner draw CComboBox
  185. Conversion of Unix's MAKEFILE
  186. Characters like MSAgent?
  187. Title of Common Dialog
  188. Help:Where can I get richedit.h for using Rich Edit 3.0?
  189. a question about int86
  190. How to change the text color ofÂ*menu bar?
  191. Help with tab control
  192. Clearing the DOS terminal
  193. ask advice
  194. .exe file for DOS
  195. Which is better:Create() or CreateWindowEx()?
  196. CPropertyPage OnOK or OnApply pressed ?
  197. Locking records (ODBC)
  198. Taskbar icon...
  199. How to import resource to another project?
  200. critical issue
  201. VC++
  202. Getting an exe to run at 3am
  203. im definitely gonna rate this and it is a quite a challenge
  204. UDP on localhost
  205. To capture text from DOS window
  206. How can I change the password for accessing a database in my Program?
  207. print preview
  208. Intercept tco/ip package
  209. Device Driver
  210. Graphics
  211. Printing bitmaps in Win3.1
  212. Problem with an exception:
  213. Reterive data using OCI
  214. Link problems
  215. MFC automation?
  216. Counting all the records in recordset
  217. Format of 16-bit BMP
  218. question about customized browser
  219. Concatenating null-terminated strings
  220. Shaped buttons
  221. code explain urgent while??
  222. graphic resolution
  223. playinf with files ?
  224. CToolbar In a Dialog
  225. How to make a application run as a Service
  226. Bold text in pushbutton?
  227. Help!!! Urgent assistance needed
  228. How can I change text color in Edit control?
  229. Serial Wave driver
  230. CListCtrl functions called from another nonDlgclass..
  231. Port Type,Driver,Version
  232. Help (about help)
  233. Application wrapper?!
  234. Do I can win32 code into MFC ActiveX ?
  235. Dialog Based App--> Accelerators
  236. what's the matter for my activex control in IE?
  237. Changing picture control image at runtime
  238. calendar control wanted :)
  239. CListBox - Tooltip for each memebr in the list.
  240. Testers required
  241. CFile
  242. Ms office version
  243. Memory reservation
  244. Using _asm in VC++
  245. font in mdi
  246. ATL
  247. Client name
  248. Column header will not resize (ListCtrl)?
  249. fsream
  250. A strange library that i need !!