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. UDP sockets -> select() not working .. Please HELP!
  2. mfcapp.exe "invalid format" on Windows Me only
  3. bitmap background for a dialog
  4. Point me to an example please.
  5. Prime Number pgm generating too many lines
  6. class pointer or member variable? confused about it.
  7. getting FULL controll over an opened file, maybe with CFile, maybe not???
  8. Converting c code in VC into asm code and compile using MASM
  9. Regarding OSCAR protocol
  10. Icon number ? Icon index?
  11. help...C++ Lift Simulation
  12. ERROR: unexpected end of file while looking for precompiled header directive
  13. how do i get around this one!!
  14. why is it taking so much time??
  15. Changing the title[URGENT]
  16. clw error?
  17. dll and CreateThread
  18. ClassWizard
  19. checkboxes, radiobuttons
  20. finding non-active connections
  21. ActiveX VC 6.0 + MFC custom properties?
  22. Frequently updated CListView and flickering
  23. Abilities of ClassWizard
  24. Cross Button of Dialog Box Not Working
  25. listbox creating column...
  26. Isolating Memory Leak
  27. Property sheet buttons
  28. CPrintDialog derived class's OnInitDialog() method problem
  29. Registry Access at startup and DLLs
  30. C++ complete binary tree using an array. Unexpected end file
  31. Thread that executes a function every 'N' minutes
  32. warning C4028
  33. Tabbed Dialog Problems
  34. set the window size to last preview size
  35. Command line
  36. Change Icon for a .exe file
  37. Include .LIB in a .h or .c file
  38. ADO: Getting Milliseconds
  39. Set/Change edit box value
  40. Keeping CwinApp running
  41. quick debug output question
  42. Error executing link.exe.
  43. Overriding operator new
  44. Need help : Complilation error C2078
  45. Formatted Text
  46. Html into CString
  47. crash using pointers
  48. class of a class of a class
  49. Message Boxes/Dialog box
  50. STL: Avoiding compiler warning C4786 (debug info truncated to 255 characters)
  51. Inter-character spacing in RichTextBox
  52. A CPoint question.
  53. non MFC Trace?
  54. ActiveX UI Only Works On Development Server
  55. Infix To Postfix Evaluation
  56. a problem with OnUpdate()
  57. small console project, rebuilding a visual based, maybe not possible? Any help please
  58. how to return an array of string from ActiveX to javascript?
  59. Question about borderless printing
  60. Searching for words in a text file
  61. Converting to hex value
  62. CPropertySheet and CPropertyPage
  63. vc++ programming with Brew os
  64. SetLocale not chaging language to English
  65. how to pause the display in console?
  66. Font & Script
  67. activeX control causing assert...
  68. Help!!!
  69. GetUserName Problem!!
  70. Automatic Compilation
  71. Question abt edit box
  72. Problem w/ code...
  73. How to know the user rights info?
  74. BSTR problem
  75. How to change TAB order
  76. how to put a picture AS background in an MFC form
  77. To maximise the output screen at start
  78. How capture CPrintDialog's properties button clicked event
  79. Owner drawn Tree Control !!!!
  80. file loading
  81. Need help with code and header. Thank You Very Much.
  82. Returning interface pointer
  83. questions about bmp of an opengl windows in a bmp file
  84. text file in resource
  85. Problem with a node access
  86. How can I kill the task bar parasite
  87. Multiple-Select & choice ComboBox with colours
  88. CreateProcess using UNC Path
  89. DLL build problem
  90. Framework help
  91. va_list help, please ...
  92. longjmp/setjmp and c++
  93. Go to the begining of the txt file after using getline()
  94. error LNK2005:
  95. Please help... gonna kill my self!
  96. copying text from cricheditview to cedit
  97. ShellExecuteEx in service not working
  98. linking errors
  99. Merge Cell in MSFlexGrid?
  100. Control Position question
  101. Printing the Contents of a Dialog Box?
  102. vc++ 6.0
  103. accessing static methods without instance of class
  104. weird loop exit
  105. Problem with Hash Map
  106. float pad
  107. mfc dialog app error:
  108. Insert a Carriage Return in a CRichEditCtrl?
  109. RS232 test program-urgent need
  110. Creating "ANIMATION" using delay timer
  111. Menu
  112. radio button
  113. CFileDialog-urgent
  114. copy stl list<...>
  115. Dinamicaly add icon to Picture Control
  116. How know the menu option handle method
  117. Too many RegKey handles of Eudora - When calling ShellExecute.
  118. coding
  119. How to access MS WORD from my VC++ code..
  120. Button Control
  121. power point to flash converter
  122. TAPI lineOpen weird error
  123. how to use pascal class files in vc
  124. Display expression
  125. Detecting Recycle Bin Events
  126. IE:file download dialog
  127. MAPI support for MFC application
  128. Fitting logical window into a CView derived class
  129. Com object
  130. how to come out of Infinite loop in MFC?
  131. database problem
  132. EM_GETSEL problem
  133. Scraping data from web page
  134. Prevent MDI childs from beeing maximized
  135. plotting a graph1!
  136. How to change project name?
  137. how to delete class?
  138. save bitmap in rtf document
  139. Floating Point EditBox
  140. Is there a way to check if an email profile exist?
  141. invisible command window
  142. CMenu related
  143. Problem with communication between classes
  144. Problems with the project settings
  145. Api
  146. a simple question
  147. Drawing a small arrow
  148. Changin the color of a static control
  149. Performance of Multiple threads accessing the same file in a process
  150. windows firewall warning even after getting signed
  151. Dialog Message After Dialog Has Been Drawn
  152. Tray Icon problem
  153. MDI child frame button bar
  154. Internal Compiler Error
  155. Ownerdraw ComboBox
  156. Check command line at start
  157. OwnerDraw problem
  158. activex
  159. Loading Bitmaps in ActiveX Control
  160. Program is crashing, please help
  161. Html Email
  162. Safe Exit
  163. CPropertyPage validation
  164. a question about views
  165. saving text in a view to a file
  166. whats best to use instead of a command promt window? ListBox, custom CWnd class etc?
  167. Driving me MAD! im not used to working with structs and cant figure out the following
  168. accessing a base class' public member in class definition
  169. How to create an internal memory using visual C++
  170. Need basic file I/O help please
  171. How to parse the data read from the serial port
  172. Multimenus?
  173. Simple file path question
  174. Displaying bitmap images of varying size
  175. Positioning edit control over flexgrid ctrl
  176. Conferencing in AIM(Oscar Protocol)
  177. how to get the class pointer
  178. Simple question
  179. Redirecting stdout to a textbox
  180. Prints ActiveX control object.
  181. Word Automation
  182. serial communication
  183. Newbie in search of some advice
  184. Switching between two ruuning programs
  185. how to find Interfaces supported by a OLE/COM class
  186. the dumbest of all questions Line Numbers
  187. no mdi-child windows state
  188. design question - when you dont want a defualt constructor
  189. Really simple problem
  190. How to debug an automation server
  191. dialog is loosing xp look
  192. visio and Visual C++
  193. CreateFile
  194. Sending EMail from IIS-Extension
  195. How to get file path from file handle?
  196. Menu handle from a floating menubar
  197. Getting Project Setting value programmatically in VC++
  198. Displaying a bitmap that remains
  199. How do we enter a null termination character in a edit control?
  200. Placing Dialog bars, without docking
  201. Problem in CDialogBar!
  202. increase array created with new
  203. First-chance exception (no name) with CFileDialog class
  204. atof() with CString (Windows CE)
  205. CList and performance??
  206. Serial Port and app wizard
  207. Removing obsolete activex controls
  208. Font Linking
  209. Hide the menu bar on a child window
  210. Multiple Wnd in Splitter
  211. Open a webpage
  212. doc/view question
  213. Declaring a function inside another function
  214. Macro Guards and headers
  215. CHttpCOnnection::OpenRequest
  216. Mouse loses focus
  217. MSComm receive
  218. altkey problem
  219. iam not able to view the images in the tree
  220. NT Service problem with SQL Queries
  221. Drawtext with japanese character
  222. RCLICK(Context) Menus in Dialog Box ??? is it posiible
  223. CRichEditCtrl FindText() not working
  224. multiple files open
  225. help with circular structrue dependency
  226. C++ to windows?
  227. Bigger grid line
  228. Main App Window offset when Media Player running
  229. What does this #define directive do ?
  230. Visual C++ Windows Z Order does not work
  231. DoModal Problem
  232. Unmanaged C++ applications controlling .NET applications
  233. Static Control with Tooltip
  234. retrieving text from a SDI view
  235. Length' must have class/struct/union type
  236. Noob question: changing image
  237. add property sheet(s)
  238. Switching Screen saver on and Off
  239. MDI: open tiff files in child windows...
  240. How to make callback function in COM object?
  241. COM Interface related Question..
  242. What is difference between Service and EXE...
  243. Identify a printer
  244. Immovable AFXMessage box
  245. Visual C++ and C mix problem?
  246. Last Message Ever Sent
  247. Please give me a sample code of play AVI file
  248. Retrieve 2-digit date info
  249. Problem Positioning DialogBars
  250. why wont this compile?