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. Problem with Active x control
  2. New to programming- Program communication
  3. Related to Active Window
  4. Problem with hash_map, find function!
  5. Is OnMouseWheel() faster than OnLButtonDown()
  6. Overriding new and delete in DLL sometimes unpredictable
  7. please help with IXMLDOMElement::insertBefore
  8. Font Size problem
  9. Icon on a button
  10. Bool Callback
  11. CArchive Exception Handeling
  12. I have a small problem
  13. Two classes for two panes
  14. Excel 2007 crashes after unloading Add-In
  15. does anyone have sample code for enable/disable using WMI C++?
  16. Weird problem with IDL property names?
  17. ListView Selection help
  18. Scrollbar thumb problem
  19. How to dock a dialog box
  20. Link error
  21. Trying to go to functions(Noob)(easy question)
  22. How to get fast anti aliased bitmap rotation???
  23. Uninstaller
  24. OpenCv lib
  25. Registry Restore
  26. change static control style
  27. Help Me
  28. problem with sdi application
  29. Time Zone Info
  30. catching CException&
  31. Postmessage from a win32 dll to MFC application
  32. Copying from unsigned char * to the CString
  33. listbox & button
  34. Problem with Decorator Pattern
  35. Help for Delay
  36. windows GUI application is terminated
  37. Using different menus
  38. Semaphore and consuming, producing threads
  39. Events
  40. 2D Random Numbers
  41. window search like tool (interface) like in spy++
  42. maximized button
  43. text control with word wrap
  44. How can i display view window
  45. Copy contents from String table
  46. How Can I move MDI child window out of the frame window
  47. Defining Winproc
  48. Is there some tutorial for networking using C++ ?
  49. hot keys
  50. serial port function
  51. Screen live streaming
  52. I Need a Close Dialog
  53. BHO add script tag
  54. Timer start Problem
  55. Question about using interfaces and inheritance from CObject.
  56. xml parser?
  57. SetScrollSizes
  58. Data Table
  59. Input and Output to file - help please
  60. File read problem
  61. VS 2005 : Build with dependency changed from Static Lib to DLL
  62. Getting html control at a given point
  63. mfc document, view
  64. Strings ( Spaces between words )
  65. windows shutdown
  66. Taking user input and passing to Enum???
  67. STL making problem in Static LIB project
  68. Read input from a file and loop it
  69. win32: how do I handle ctrl+shift+f
  70. Using AFX_EVENT!!!
  71. ->text to long
  72. Avoiding Standby/Hibernation mode
  73. scrolling the client area in PocketPc
  74. ODBC CRecordSet::PrepareAndExecute() cann't return
  75. help plz find more other way to do
  76. String sent with sockets
  77. Two different GUID same IID
  78. error C2440: '=' : cannot convert from const char to float ???
  79. Help, C++ Newbie
  80. How to disable a control on a dialogbar
  81. calling a function
  82. How to move a jpg in GUI?
  83. saving a subset of an existing image
  84. Server-side query with MS Access?
  85. use ActiveX executables in Dialog
  86. Quick help:)
  87. Load strings for menu names from string table
  88. MFC missing a WM_ message I need
  89. where are dialog box saved on disk
  90. [Help] Reading info from game port
  91. Convert to double value
  92. Ctrl+Enter to add data in combo box does not work
  93. Message handling of CMenu class(MFC)
  94. Lotus Notes & SafeArray
  95. error throws while closing the main window
  96. Changing the border style of property sheet
  97. CArray
  98. How to detect Floppy Arrival
  99. Re-bar
  100. removing an element from a list
  101. Sorting and Creation
  102. need Help in list control
  103. Creating visible controls based on input
  104. [RESOLVED] Icon for Modeless Parent to MainFrame
  105. Can anyone help me change my program?
  106. Questions on Dialog and threads.
  107. OnInitDialog question
  108. MFC Posting double to Edit Control
  109. Is there API to know screen ratio?
  110. CListCtrl::ApproximateViewRect == What the hell?
  111. Get Line Width/Height
  112. How to skin Labels......
  113. Help newbie C++
  114. Function Help!!
  115. How to know the type of variable at run time??
  116. Beginner help with c++
  117. How to open files with spaces? (Beginner)
  118. Setup project
  119. Help!?!?
  120. need help with errors
  121. Types of DLL
  122. bmpout cleanup code
  123. Displaying all attached SCSI devices
  124. how to display a variable in sdi
  125. Accessing windows object across threads
  126. VC++ 6.0. How I get a device context in static function for to use TextOut?
  127. Using CPropertySheet and CPropertyPage
  128. help debugging downloaded CIB class
  129. overlaped lists
  130. Gradient title bars
  131. Bit values for Bitmap
  132. File write
  133. HELP NEEDED!!! refreshing the registry
  134. Bitmap Array help
  135. Need help on font dialog
  136. CListCtrl help:
  137. [RESOLVED] C++ Online Book
  138. MFC Maximize Function
  139. Why FindTextW fails when RICHEDIT20W ctrl is used...
  140. Cannot change window style
  141. string wont show weird bug
  142. restoring the last state of app like in ShowWindow()
  143. Upgrading compilers
  144. CDialog::Create - lpszTemplateName?
  145. Capturing a PAL video
  146. SQL COMMAND FOR AUTO Increment
  147. Static library vs DLL question.
  148. How can you tell when your program is about to be terminated?
  149. input stored and matched to other values later
  150. c++ problem, need some good help..
  151. Combo box doesn't show on toolbar
  152. Problem about VC 2005
  153. How to skip items in a list?
  154. About CListCtrl
  155. Porting Win XP dll to Win CE dll
  156. Just started C++ a few days ago need some help(hello world)
  157. Compiling acitveX control in a win32 DLL
  158. Int and Unsigned int?
  159. How to parse VBA script file in MFC ?
  160. Vc++(mfc)
  161. Reading a custom image file
  162. Help handling a device
  163. Urgent ....Multithreading for Windows Object
  164. str
  165. Access Violation After Transfer of Project Files
  166. Template Function
  167. PlaySound problem
  168. How to populate a non MFC ComboBox on run???
  169. How to create Bitmap Buttons ona Dialog Bar Like tool bar
  170. Help reading bitmap byte array!
  171. [OLEDB/ATL] Multiple-step operation generated errors.
  172. [RESOLVED] Access Violation During String Formatting
  173. undeclared identifier
  174. Having trouble with free()
  175. Wnt to set the combobox to be non-editable
  176. Need help with radio button
  177. Problem with getstylename()
  178. Problem with converting CString to const char* while using _putenv_s funtion
  179. Problem with checking if another process is still running.
  180. Saving section of a HBitmap
  181. MFC COM Books?
  182. reading an image of a device?! help needed!!!
  183. ifstream does not read the file properly if I don't code ofstream statment befor read
  184. Randomizer for words
  185. string comparisons
  186. How do I locate decimal numbers.
  187. Code Error
  188. Downloading Files
  189. Very basic questions: buttons and events
  190. Simplest way to find power of number...
  191. Creating directory
  192. Various projects in one workspace
  193. Matrix Class
  194. interprocess window
  195. Application failed to start becoz .dll not found
  196. Tree Control
  197. Problem Using cin.getline in prototype vector..
  198. Memory exception
  199. Dialog application
  200. Hide The Application
  201. getting active view of a mdi application
  202. Cases & Accolades
  203. Suggestions Needed...
  204. Address Searcher
  205. How can we prepare PrepCache using Virtual list control
  206. Setting default values in FontDialog
  207. ClientRect of SDI
  208. Need help with radio button ,for default selction
  209. Splitter Window inside a View
  210. how to create a win32 dll
  211. random word generator function
  212. Adress Type
  213. how do I debug a program that crashed...
  214. population of an array of string...
  215. Statusbar text speed?
  216. Problem passing a function string return to a structure string...
  217. calling a defined function
  218. Address searcher d
  219. simple char array access causes crash- why????
  220. Multi Thread?
  221. If you write this code you are the man
  222. Unsigned long ?
  223. Do My Homework
  224. How to insert button in list control
  225. Scanning addresses
  226. Focus the View when we click it.
  227. getting a document pointer
  228. Cursor help
  229. Viewing a C++ generated template code?
  230. strictly weak ordering of i,j,k coordinates
  231. [C - Windows] Create a DOS gui
  232. How do I catch Ctrl+a key in PreTranslateMessage
  233. SQLSetConnectAttr failure
  234. FTP Connecting
  235. ReadProcessMemory
  236. cast byte to int
  237. Command Line Argument-error
  238. CopyFileEx doesn't work
  239. What is wrong? [CListCtrl] help:
  240. Create new main-frame with CreateNewFrame()
  241. Create new main-frame with CreateNewFrame()
  242. Reading ASCII files
  243. InitializeCriticalSectionAndSpinCount
  244. Rich Edit makes dialog close
  245. High Low program syntax errors
  246. Some code problems
  247. CCryptProv failed to initialize
  248. How to insert data into ListBox(Something Different)
  249. game board(Urgent,tommorow must be submitted)
  250. CView derived from CListview