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. Picture in rich edit
  2. Operator overloading
  3. is it possible
  4. Shell programming problem
  5. How to use Jpeg/gif image as splash screen component?
  6. Q corresponding to Threading.
  7. Delete Please.Wrong Post.Sorry
  8. Date and time picker TEXTE EDITING
  9. Embedding Excel Chart: I think this is quite an advanced programming question but I’m
  10. w_char
  11. how to modify the size
  12. Refresh Screen
  13. How to convert LPVOID to CString?
  14. ACCESS a HIDDEN window from the Explorer Bar.
  15. Is the Visual Studio 8.0 - worth thing to move?
  16. Why check-box reacted only after click on form?
  17. virtual functions
  18. Version info
  19. Reading a bitmap file
  20. gdi+ : first parameter (byte *DATA,...) in Union methodof Region clas
  21. Problem with DoDataExchange Function for Edit Box
  22. Why this code is crashing?
  23. Capturing video into AVI file
  24. saving URL as MHTML file
  25. Capturing an AVI file
  26. 47 errors!! Symbol already defined!
  27. CDialog problems.
  28. XP Product Key from registry
  29. Retaining my colors
  30. Annoyance
  31. CTreeCtrl problems with ON_NOTIFY_REFLECT
  32. Set focus to listctrl in dialog
  33. Dock a CDialog.
  34. C1001: Xerces XML and MsXml
  35. Can someone help?
  36. Why defined as static ?
  37. Ports in use
  38. ActiveX controls work fine in Child window unless it's maximized
  39. ASSERTION error on return of PreTranslate Message
  40. Outlook StatusBar
  41. CSocket onReceive works on XP but not my Win 2K Pro machine !
  42. Randomising
  43. .NET won't let me Add a CRichEdit (v.2) to my dialog!
  44. HOWTO: DNSLookup
  45. CListBox-> DeleteString
  46. Can this be done?
  47. Stretch Bitmap
  48. Odd owner drawn menu behanvior
  49. how to get domain name
  50. ToolTips with Dynamically created CStatic elements
  51. CDatabase OpenEx problem in DLL
  52. Speex?
  53. ActiveX
  54. reading and writing a file to be displayed in a dialog box
  55. Problem with new
  56. Visual Studio .NET has lost its mind?
  57. Saving a bitmap file
  58. who can move it
  59. Two programs at the same time???
  60. using GlobalMemoryStatus to get "system resources free"
  61. Accessing Listbox from a Generic Class file
  62. type conversion C#
  63. force shutting down, power off win98
  64. algorithm for display complex graph
  65. Event Handling a Subclassed ComboBox
  66. Import from VC7 -> VC6
  67. CFile
  68. Adding LVS_OwnerData to CListView
  69. Adding sub menus to a menu
  70. Listview update thread question
  71. Very mysterious socket behaviour
  72. PXPerl
  73. Modeless Dialog Stealing Focus
  74. Bitmap morphing/rapid display
  75. DialogBox on SDK platform
  76. Errors please help
  77. how to export/import files from/to internet explorer cache/history?
  78. Multiline edit control ..
  79. How to use IE's cache?
  80. coloring of Dynamic Control
  81. Data via HTTP..VC++
  82. linker error
  83. Should i switch to C#.Net ?
  84. GDI+ boolean operations on polygons
  85. default constructor problem
  86. CListCtrl::HitTest() fails???
  87. Internet findfile
  88. Owner drawn menu
  89. buffer with size variable?
  90. CFormView Problem
  91. ActiveX winsock control
  92. web browser control related question
  93. Message Maps
  94. Linking problem - HELP !
  95. maximize view
  96. String confusion
  97. ActiveX controls: how to implement Drag&Drop between them on a web page
  98. i want to manage some dynamically created modaless dialog in a modal dialog
  99. i want to manage some dynamically created modaless dialog in a modal dialog
  100. ADO Decimal DataType
  101. Is there any difference between transmitting plain text/binary data?
  102. printing
  103. copy constructor or operator = ?
  104. Truely global variables
  105. My program regaining focus?
  106. need a hook
  107. exit & return
  108. Problem with DLLs
  109. A basic question
  110. which one to start with?
  111. compiling problem with inheritance
  112. GDI+ Custom Alpha Colors in SolidBrush
  113. CWnd question
  114. convert into MFC format
  115. EndDialog( )
  116. Detecting host in ActiveX control
  117. classes
  118. How to get the handler
  119. Need Suggestion About Motion Detection Through Image Analysis
  120. Regarding Printouts
  121. Pass Data to form using HTTP..
  122. Assertion
  123. To Which OS should i will upgrade
  124. Directx at End user
  125. Data transfer between executables
  126. Access SQL DB from VC++
  127. lowerpass filter design
  128. What can I do?
  129. How to change the base class for a form view?
  130. Bitmap+display-urgent
  131. Set Caption
  132. Regular Win32. DLL
  133. how can i pass the value from a class to anther?
  134. Convert CDialog to Cformview....
  135. ON_BN_CLICKED + CButton + ID
  136. Unknown SCODE error with Word Application.CentimetersToPoints
  137. focus
  138. Help about using Dll's Functions
  139. Problem with Transparent GroupBox
  140. CImageList Problem?
  141. IPV6 packet generator
  142. CListCtrl change selection behaviour problem
  143. access violation CFileDialog
  144. 24 bit bitmap @ Visual C++
  145. Normal Function without :: Format
  146. Errors
  147. pixels with bitmap???!!!
  148. CreateThread & _threadstartex Problem
  149. How to get the "cmd window" texts
  150. Toolbar: How to Add bitmaps with different width
  151. [RESOLVED] concat files
  152. I cannot display Dialog linked to CRecordset/View
  153. Send Mail Visual c++ 6.0
  154. 2D vector array
  155. controlling tv card???
  156. A Doubt About Books
  157. making a absolute overlapped window, even overlap games
  158. Draw a combobox
  159. Converting from char to utf-8 to write in XML
  160. serialization in CFormView
  161. Help with GetDate function...PLS
  162. Playing a beep under Win98
  163. Help with tooltips
  164. 98 & Me
  165. How to change selected text color?
  166. Problem handling WM_GETDLGCODE when dialog has activex control
  167. subclassing CEdit to customized the display
  168. Button: update data on click
  169. UI Thread - question.
  170. ccontrolbar message handler
  171. hex and decimal help needed
  172. SetWindowRgn for a button
  173. Screen Capture save bmp to disk - NON-MFC code ?
  174. CString Class question
  175. RasEnumConnections fails
  176. Making Executable file
  177. CInternetSession question - using different connection
  178. Dialogs, Messages, and Threads
  179. Runtime error?
  180. interpolation
  181. Struct Declaration
  182. Custom Text on Ownerdraw button?
  183. how to lock and unlock string
  184. Polling Oracle Table
  185. peculiar problem, html help workshop and VC++
  186. Listbox Maximum
  187. file creation problem
  188. How to read .dll file ?
  189. Where to get a good sample of NT Services?
  190. Declare one pointer for all member functions
  191. Help with button
  192. system("dir");
  193. Reg: ENOMEM error in _beginThreadEx
  194. generating output files in a separate folder with different names
  195. Issues I am facing with my NT Service
  196. using of IUPnPDeviceFinder
  197. question about static
  198. Bitmap help??
  199. DLL (plug-ins/non-plugins?), ActiveX, OLE, API
  200. How to set new path to Source Safe ?
  201. Can't read using ListView_GetItemCount
  202. "extern" declaration
  203. link prob: __imp prefixes for symbols
  204. Com
  205. stranger question about clistviewctrl (WTL)
  206. New and Malloc
  207. Problem with SendMessage
  208. List Box
  209. Client info on startup of MFC OLE server
  210. Trouble including globals
  211. How do you send a message and caught it at another class/object
  212. windows service output
  213. Local Area Connection Properties
  214. code sharing
  215. MDI Window and Focus
  216. ActiveX control register
  217. Error Message ive never seen before
  218. Adding data to a file
  219. MFC Combo troubles
  220. NetUserAdd...Unable to create the user account, how?
  221. Weird problem
  222. Displaying a CRecordview form from within an SDI or MDI
  223. msvcr70.dll required
  224. IDL Compilation Problem
  225. Bottleneck
  226. multi-language app in doc/view architecture
  227. ActiveX Installer
  228. HELP using argv[]
  229. C2504: Base class undefined (other posts have no solution)
  230. Random Number Generator
  231. Can I change the entire main menu from another one?
  232. How to show transparent bitmap from CImageCtrl
  233. ActiveX device context
  234. How the heII do you remove a class???
  235. WM_INPUT hook?
  236. Message Box that takes input from user
  237. How to change font size for static text when hovered
  238. class conections!!
  239. How to embed an URL anchor into a dialog?
  240. BOOL vs bool
  241. I want to Update only an edit box
  242. Threading model=Both
  243. Linked List
  244. I Found some nice sprites but need more...
  245. Displaying a Tabbed CRecordview form
  246. how to encrypt and decrypt string
  247. Is DCOM still viable?
  248. variable type from external library
  249. reusing code VC++ multi Directories
  250. Owner draw CTabCtrl