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. win32 dll with toolbar bitmap
  2. How to get non-swapable memory
  3. Problem with controlling password ni Chinese Windows
  4. How can i find whether a system is connected to a domain or a workgroup?
  5. problem with release and debug modes
  6. How to use XP styles in ATL OCX control?
  7. Using internet explorer
  8. problem using a dll
  9. ADO error catch
  10. MFC Dialog Based App with cout
  11. Searching for a standard dialog to choose a path
  12. question
  13. Multi-Threaded Server
  14. Win 32 App with no DOS window
  15. interfacing Exchange server with an MFC app
  16. why my dialog box won't show up?
  17. break point
  18. User Switching Notify w/ Dialog app
  19. Getting 'Error in OMF type information'
  20. Access db (URGENT!)
  21. how to print Long pointers in dbgprint
  22. How to add UNICODE configuration
  23. Overwriting or deleting data sources.
  24. No static text in dialog
  25. Remote Registry Read (+/- domain)
  26. Exchange (Outlook) Rules Wizard-Custom Action with MFC
  27. Get last log on From AD
  28. Getting all windows associated with the main window
  29. How to show a modal dialog in multithread app?
  30. a special page from my CPropertySheet
  31. OnKeyDown
  32. Detect a Control-Break from Keyboard
  33. Cycling with Tab Key inside ActiveX controls
  34. Minimize / maximize question
  35. new to visual C++.. need help urgently!
  36. Color of Text in the status bar
  37. Size of a Media File(Video)..?
  38. COLORING a point...
  39. Installshield for VC++
  40. Bitfields and chars alignment for unions
  41. Browser Helper Object
  42. Creating deep directories
  43. socket programming
  44. Statically link CRT
  45. Implement word wrap
  46. COM Problem
  47. Debuggin VC++ project in Terminal Session
  48. MFC or MSVC problem
  49. Benefints of registring an app or dll or ocx in win registry?
  50. Debug Exe with multiple Dlls crashes.
  51. activex problem
  52. how to write and save ini files like some apps do with their ini's
  53. function does not take 3 parameters
  54. Drag and Drop question
  55. Making Second Dialog to appear first during run time
  56. Printer context retrieve
  57. Problem with time function
  58. Compiling for ACAD 2004
  59. call executable
  60. include?
  61. sockets - FD_CLOSE
  62. A stupid question on CArray
  63. Hei How Do i get TabIndex value from Handle (HWND)..
  64. Changing icon of item in listview without deleting it
  65. Visible
  66. new dial connection
  67. Using Tab Controls
  68. Problem with RASENTRYNAME
  69. Combobox with country names
  70. Dfue
  71. Mem finder
  72. Owner Draw ListBox Debug Assertation
  73. How to send a NM_CLICK message to listctrl
  74. How to send BN_CLICK to a window??
  75. Am I Missing The Simple Solution?
  76. using a sheet of excel
  77. How insert Character Greek in Dialog?
  78. delete allocated space
  79. ListView + TreeView
  80. retrieving path from the registry key handle
  81. container based on two keys
  82. How to write to parent CMD window from Windows App?
  83. How to get rid of linker warning ? (LNK4089: OLEAUT32.DLL)
  84. dlg.DoModal()
  85. Is STL stringing me along ?
  86. How can i create a template class ???
  87. How to check if port is available
  88. Problem with CSocket Receive()
  89. LVN_ITEMCHANGING - The message from ****
  90. CMemFile reset content
  91. A Question on strings and char*
  92. how to create and delete directory?
  93. Detecting when scroll bar is shown/hidden
  94. HELP!!! Control Activation in SDI
  95. Hei How do I access the Properties..
  96. SetImageList() in OnEraseBkgnd() giving problem
  97. How to detect ..Instance already running
  98. A Question regarding the #pragma optimization
  99. CListCtrl LineColor
  100. how to register a dll ??
  101. how to get threadID and processID
  102. video conference
  103. Some Property Sheet Questions...
  104. Resizing Text
  105. How to draw/plot contours: MFC - SDI on View
  106. TRACE macro causes hang-up of the application
  107. Can I acess the global variable in all the threads?
  108. Show who is connecting
  109. Access Violation exception only thrown when breakpoint is set on next line
  110. Getting the size of a File from the Internet?
  111. watching esp
  112. Owner draw combo box showing big size
  113. Need to Program an email extractor
  114. Creating/Copying a file
  115. IHTMLTable interface
  116. Problem with file Open
  117. Socket problems on XP
  118. #include problem
  119. COleDateTime <---> DATE
  120. Need help with this
  121. _RecordsetPtr::AddNew()
  122. Weird CString error
  123. How many regularly use MSDN?
  124. error when using resources + direct show
  125. Program distribution
  126. Intercept Mails from Outlook
  127. replace popup menu with bmps??
  128. pragma pack and pop
  129. setsockopt - recv timeout set wanted
  130. sending messages to a thread, a little problem
  131. Debug error
  132. Reference
  133. passing variable between dll and exe
  134. How to convert an MFC View class to Active X?
  135. Packing structs in C++
  136. how to convert to logic cordinates
  137. how to cast it right
  138. Create new task with ITaskScheduler- Next Run Time is Never. Why?
  139. Problem Compiling when shift to new workspace
  140. Owner Drawn menus
  141. Russian text info
  142. Fatal Error
  143. Mathematical Expression Builder
  144. How to catch or Identify process.
  145. Using USB like Com : Receive/Send data
  146. Error Desc Lookup
  147. problems with cl.exe
  148. read excel
  149. abt encryption algorithm
  150. What about VK_PERIOD?
  151. CStatusBarCtrl
  152. Show symbols greek in static text
  153. DirectSound - Windows handle
  154. Dynamic IP Address
  155. Read My GPS
  156. Format text in a read only CEdit
  157. Control System voulme from UI ??
  158. Check if a window already exist [newbie question]
  159. Get Relations Betwwen The Tables
  160. title in task bar???
  161. Problem with singleton classes
  162. memory leak?
  163. Supporting Source Control from my application
  164. Message Box at the center of the desktop.?
  165. declaring an array of unknown size
  166. What algorithm does SECCompressFile use?
  167. How to access mailboxes in exchange server using VC++
  168. Random Directory name
  169. Interface inheritance
  170. About Memory Alloc
  171. How to make debugger halt on C++ exception?
  172. Member Variable storing Incremental values in each object
  173. Simulating CTRL+ALT+DELETE
  174. About GUID
  175. Change Zise of Listbox in program
  176. C "struct" problem in c++
  177. How to get button state??
  178. CTreeCtrl imagelist problem (black icon background)
  179. OnKeyDown in dialog based applicn
  180. IDISPATCH Custom properties ?
  181. LNK6004 Warning
  182. Add Windows common controls!
  183. Printing
  184. A Multithreading Q...
  185. MFC- how to close a file opened by the user?
  186. Image file reading !
  187. Problems with vc98\include
  188. Registering BHO
  189. New and Delete (newbie)
  190. Keyboard Focus - Custom Control
  191. Sending messages to a dll (difficult)
  192. debugging memory leaks
  193. StretchBlt versus paint
  194. wndproc
  195. Timer Threads?
  196. how to handle recent files?
  197. ocx, dlls, etc
  198. Duplicates entries in listbox
  199. Windows LongHorn : a future nightmare?
  200. VIsual C++ Service Pack
  201. How to use a Toolbar in one DLL?
  202. terminate application
  203. up and down arrows
  204. Can not print in SDA:URGENT
  205. Lock Window
  206. CHtmlView can't open ms word document
  207. ftp tool?
  208. Position of the Listbox/Window
  209. Handling key strokes in the most appropriate way ...
  210. Reflect
  211. Check Box
  212. default value for parameter in IDL
  213. List Box
  214. Send/Receive Data To/From USB
  215. STL error in DLL ?
  216. Maximizing Child frame
  217. looking for a software to manage project
  218. Listbox Sized to text inside
  219. How To Set Default Browser?
  220. any assembly gurus out there!!
  221. Ending GPRS connection - eVC++
  222. Using makefile
  223. Generic Parameter
  224. problem with an activex control
  225. Drag and Drop question
  226. hw to publish the application....
  227. BSTR to LPTSTR
  228. Variable in view class being shared among instances!
  229. Convert to word 2002
  230. running a mp3 file using default player from within an application
  231. Memory exception following return from multithread
  232. Write 0 to a text file in VC++
  233. How to know the user, Group and Domain/ Wrkgroup in which the process is running?
  234. Textout in Win32
  235. Video for windows
  236. project name
  237. RAD tools for VC?
  238. Urgent help needed
  239. Listbox and double clicking
  240. Ftp
  241. Finding an Attribute
  242. Default parameter not working?
  243. Changing the Font on a Static Control
  244. MFC - changing fonts on common controls
  245. MFC: Creating Multiple Seperate Windows
  246. Will someone please show me the exit ?
  247. [RESOLVED] Type Redef Errors.
  248. Communicate with IE
  249. how to modify system path?
  250. how to create shortcut of a file from MFC