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. ToolTip Control and SetDelay Message
  2. IDispatch error #3105 by conntecting to SQL Server Express DB
  3. Optimisation regarding rhythm game
  4. Data encryption software package recommendation needed
  5. SDL access violation
  6. Stuck on a while loop (beginner C++)
  7. Mouseover tab
  8. Problem silently printing an MsWord doc using ShellExecute
  9. Problem using (OLE) automation to print an MsWord doc
  10. char conversion of hex values
  11. Stop a certain part of loop from repeating
  12. problem in redirecting the .aspx pages by VC++
  13. WIDCOMM and VC++ 6.0
  14. CInternetSession Caching
  15. Getting ID of control i PreTranslateMessage
  16. [RESOLVED] "Program Stopped Working" window on Vista
  17. Video delay
  18. API for getting year range
  19. How to specify the SaveAs Format parameter WORD Automation
  20. Unresolved Symbols
  21. Ignoring Keyboard Input: MFC
  22. RichEdit and .doc file
  23. e-mail and vc++
  24. Getting a timestamp that cant be easily changed?
  25. Onwards with C++
  26. CToolTipCtrl Balloon Style
  27. preallocated memory manager
  28. Calling C dll from unmanaged C++
  29. code to model a group of objects (same type) with many-to-many associations between t
  30. Problem in opening application
  31. Runtime exception in Release Mode
  32. Excel::Range
  33. [RESOLVED] unicode characters in string class
  34. Creating MFC ActiveX Control
  35. How do I know if the computer has the Outlook installed?
  36. Active Directory problem
  37. As the static build with MFC
  38. Verifying if a dll is compiled debug or release mode
  39. How can I use CRuntimeClass for casting appropriately ?
  40. Vending Machine Simulation Successfully Executed, but Logic Errors?
  41. BLOB and CRichEditCtrl or CWeBrowser
  42. Rtf
  43. Worker thread not working fine with CReportCtrl derived listctrl.
  44. Where did the profiler go?
  45. Check if file is a video file, independent of file extension?
  46. question about computing bignum
  47. There is no source code available for the current location
  48. problem while using filestream in VC++ 2008
  49. Need to Concatenate and convert hex array values
  50. C++ Help - Not sure what forum to put in
  51. How to have the filesize of the old file to be same as the new file size? HELP!
  52. how to plot histogram of image using visual c++
  53. Question regarding excel files
  54. TokenPrivileges for RegSaveKey()
  55. File again
  56. ATL Com App Wizard in VS2005
  57. Memory Leak Detection
  58. Is there any vCalendar related sample code?
  59. CDhtmlDialog and win version
  60. MFC: Enumerating Processes
  61. Problem with syslink control in VS 2008
  62. Questions about right structure.
  63. Regarding late binding
  64. anyone wana test there coding skills?
  65. Need help with 2d array o.O
  66. MinGW and Allegro Help!
  67. Ratios(begginer)
  68. Is this possible?
  69. std::for_each(vector.begin(), vector.end(), operator*);
  70. CListCtrl::FindItem use find item in 1 column,How can i use this for finding other th
  71. Picture control not refresh in CPropertySheet
  72. How to display (XML) UTF-8 arabic text in VC++ 6.0 dialog based app
  73. can someone help me with my program?
  74. Need help with program. Please.
  75. LoadLibrary("*.dll") vs LoadLibraryA(".dll")
  76. Where to initialize CRITICAL_SECTION in a singleton?
  77. operation overloading
  78. Allegro port
  79. Template Inheritance
  80. Precompiled header include order
  81. No thread shown
  82. Use functions in memory
  83. Program name for Firewall
  84. C++ and reflection
  85. need help > the typical infix statements to postfix
  86. Get PROPERTYKEY from Name
  87. I need help!!!!
  88. Overloading operator new[] and operator[]
  89. where can i put input file so build and debug will load it?
  90. Read memo field from database ( MS-Access)
  91. IAT hooks
  92. Press space key in CListCtrl object
  93. Passing objects to data structures
  94. Understanding Backslash and Yen
  95. Help- New to VC++
  96. taxi driver
  97. ConnectionPoints and Threads.
  98. How can I dynamically set a user password
  99. Enable Cookies
  100. quick question on my definition
  101. How to use sp_oamethod to return string data?
  102. a win32 dll that calls fortran
  103. [RESOLVED] Set icon at build time
  104. Extracting data from the webpages using MFC
  105. How to terminatethread explicitly and safe
  106. Mutex and seaphore
  107. MFC Custom Control in a MFC DLL
  108. Adding a Class
  109. system() default directory?
  110. Dom Document and XML
  111. Ampersand ( and system call
  112. What does this mean??
  113. Prining a * from a user input integer Loop Help
  114. Some help needed.
  115. Adding libraries to Win32 Console Application
  116. How to scale histogram in visual c++
  117. Scope of Names
  118. Adding answer table in factorial output
  119. Use PeekNamedPipe for to intecept another app's output
  120. Visual Studio 2008 not rebuilding on CTRL+F5
  121. Writing UNICODE CString to SQLServer UCS-2
  122. Quick SQLException related question
  123. _strtime_s problem
  124. Multiple threads in Windows Form program
  125. [RESOLVED] Int Array *Simple Question*
  126. How to access the registry remotely?
  127. Convert C# to C++
  128. Virtual inheritance error
  129. how to convert a string to integer with C++
  130. Using a File and Reading a File with a WHILE LOOP
  131. Tracking or monitoring the file/folder copy
  132. How to write a program to transfer a bitmap file onto the DICOM file.
  133. Xml dom
  134. Appending text file
  135. Trayicon Popupmenu Problem
  136. Need help its urgent
  137. Edit box cursor
  138. Needed Programming urgently for an assignment... Help Out
  139. output a string
  140. client machine
  141. CFormView
  142. Please give me some idea, to create a program look like this...
  143. passing array of instances to function
  144. C pointer to arrays - remove all Remove Specified Characters.
  145. Sleep: from the INSIDE
  146. Help needed
  147. Quick True/False Class Question
  148. How to compile NotePad2 and add custom syntax highlighting
  149. C++ error
  150. Float 'n Dock
  151. IWebbrowser: Toolbar handling and event for modifying content?
  152. Need Help...
  153. Send enter key
  154. char* to LPCTSTR
  155. Time Condition statement
  156. How to add a image?
  157. Cstring..
  158. imgage histogram
  159. C2065 error: undeclared identifier
  160. CDialog::OnOK();
  161. Static/Dynamic casting and references/pointers
  162. Urgent: Reading from text file
  163. Parse text file - speed
  164. Keyboard focus in Edit Control
  165. Reading shortcut keys of an application
  166. file reading.
  167. Am I crazy?
  168. Write files in memory
  169. Composition/Combo Matrix?
  170. Ascending Order using Value-Returning functions
  171. Abt Binary Search Tree
  172. Using a class from another "h" file
  173. Int, cstring
  174. Visual Studio plugin
  175. assignement of a struct in VC++
  176. Urgent:fstream error
  177. Working Directory for the executable
  178. Add days to a date
  179. Need help with classes
  180. pass struct to a function
  181. Urgent help needed: Using array of instances
  182. Recursion function, sum of elements in vector
  183. Linking edit control and slider control
  184. Using MFC in a static library, and com port errors
  185. Auto Resizing CListCtrl columns as Dialog is resized
  186. AVL Tree: Delete Func.
  187. [RESOLVED] using setw
  188. Batch Faxing Help?
  189. 64 bit compilation in Visual Studio 2008 Professional
  190. Need help in arrays!
  191. Newbie Help In C++
  192. Binary Tree
  193. malloc memory
  194. starting off with histogram EQUALISATION
  195. C++ string problems
  196. memory exception
  197. How can I know wether one file is accessing by other process or not?
  198. Compiler change leads to err?
  199. Disable image file download in CHTMLView
  200. How can i execute a .WSF file silently?
  201. How to create visualization using c++
  202. How to intercept print-jobs from spooler ??
  203. [RESOLVED] Problem in C++ console app. Lil Help Please
  204. Visio Database Propertise
  205. Deleting a line (record) from a file.
  206. Array of pointers
  207. Difference between two time values
  208. Strange error messages with my Win32 Console App
  209. Linked List deleting Help
  210. Virtual Table??
  211. MessageBox
  212. Standard typedef name
  213. C++ help
  214. Compiling linux based static library in Windows
  215. character declaraton
  216. C++ Assistance
  217. Help with Functions
  218. Mouse control in Windows
  219. integer^power without math library functions
  220. Dynamic memory allocation
  221. Microsoft Visual Studio 2008 HEROES EDITION
  222. Docking - Floating
  223. Pascal's Triangle Using For Loops
  224. string comparing
  225. Static Text in dialog box shrinking after clicking any control (edit, tab, button etc
  226. error LNK2001
  227. Using GenerateConsoleCtrlEvent to exit a console app
  228. Probelm Regarding Fonts
  229. BOOT Failure error.
  230. PreOrder Binary Tree HELP!
  231. Image processing help needed,urgent Pls
  232. Practically Empty Project Problem
  233. Remembering c++ and pointers fun
  234. Image processing help needed,urgent Pls
  235. Dialog on top of form?
  236. Dev c++ help
  237. Completion port, few quick questions
  238. need help with array
  239. How can I add a product key entry page to a setup?
  240. C++ and MS Visio Help
  241. help with overloading
  242. Taylor Series Function
  243. reading a single byte from memo field
  244. Need help with prompt. If statements and set precision.
  245. Regarding visual C++
  246. Work with modem'Extra initialization commands
  247. cout question
  248. need help
  249. Class Definition
  250. Need help plz