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. Getting Application Path from HWND
  2. ITaskbarList does not work in windows xp...
  3. display a listbox items like folder explorer bar items
  4. VB activexcontrol not able to insert in vc++
  5. MS Agent Balloon text box problem?
  6. VC++ exe and NT Service mode.
  7. How to dialog box control from other class?
  8. How to convert 1/2 to ½ in RichEditCtrl
  9. C++ NULL versus C NULL
  10. shell extension invoke command send file name to mypgm
  11. Convert CDC::GetCharABCWidths() to inch
  12. body parsing in chtmlview almost working
  13. AlphaBlend + TextBox = crash??
  14. Can I restrict a class not to have more than 2 objects?
  15. deleting non local heap pointer
  16. Load the Resource Dll which include a *txt file resouce,but I don't succeed
  17. Converting vc++8 into vc++ 7.1
  18. how to add a perfect in place editor for a list control
  19. Executing Makefile
  20. Compatibility issue in automation
  21. Urgent:How to display a certificate using the basic cryptography functions
  22. Neutralize the "enter" KB from the code?
  23. UPdate in Table
  24. Problem in taking conventions
  25. Is SYSTEMTIME valid?
  26. Crashing in Debug Mode........
  27. Menubar background color
  28. Difference between new & malloc?
  29. How to set the Orientation for Document from VC++
  30. Experts Only!!
  31. How to get the TEXT in parent dialog from child dialog in VC++ MFC
  32. Linking dialogs together
  33. (Beginer Question) Can you make Vectors into a Multi Dimentional Array?
  34. How to draw lines smoothly.
  35. Windows Internals
  36. GDI on widescreen (16:10), problem
  37. How To convert an application to UNICODE
  38. create exe from SDK sample.
  39. Using CDateTimeCtrl and DateTimePicker
  40. how to keep default folder
  41. Ddk
  42. Set path to Intellisense-DB (ncb-file)
  43. Check if the odbc connection is established?
  44. d:\PICShellApp\Output\walker100\basicic.h(88): error C2061: syntax error : identifier
  45. Dialog locks up
  46. How to programatically navigate on local network
  47. Not able to refresh my View
  48. My dialog's close button not working?
  49. Using SQLXML, Bulk Insert XML with IDENTITY Column ...
  50. windows temp folder
  51. dll not registering
  52. Access violation with std::vector
  53. ReadString function
  54. Passing Pointers
  55. Need help with beginner problem
  56. Beginner C++ Help
  57. Mutex - ACCESS_DENIED
  58. Drop list does not work properly
  59. Change Menu Text
  60. class wizard
  61. look'n for colaboration for C++ MFC
  62. CFileDialog to open bmp files
  63. FlushViewOfFile does not Flush??
  64. Urgent - password user interface
  65. Searching a Matrix for a Column of Zeros
  66. Error C2555
  67. _itoa(), why it doesn't include the 'dot' and character following it ?
  68. Very Very Urgent Please Do Help
  69. Calling Functions from DLL
  70. how can i make IHTMLElement->put_onclick(VARIANT) take effect?
  71. How to Validate Date & Time in the format YYYY-MM-DDThh:mm:ss
  72. late binding & early binding
  73. Install sheild
  74. BSCMAKE error
  75. Problem in calling PostMessage or SendMessage
  76. How to convert DC to HBITMAP
  77. Create a printerDC without dialog
  78. Default Page in Default Web Browser
  79. [Resolved] Dialog not receiving message
  80. I want more information about Cppunit
  81. how to break the while cycle by clicking mouse
  82. How to Get the handle of the child dialog ? in VC++
  83. Disable debug is working whereas maximize speed is not working
  84. Dialog box size
  85. MFC caption
  86. Gradient Transparent Shadow for Dialog
  87. Attaching an application to the desktop
  88. Styles???
  89. to find cursor position in MDI application???
  90. VS 2005 help and documentation
  91. Sorting ListView
  92. class name parameter in CreateWindowEx
  93. Kernel Exception error message
  94. Problem with CFile::Open and sharing
  95. BMP to Grayscale conversion
  96. How to increase the CFileDialog size in VC++
  97. Getting the volume of a sphere....
  98. Exception within dll
  99. Check if an application is running
  100. Resource script syntax rules/definition?
  101. Doc View
  102. How to resize dialog form
  103. Redistribute DAO 3.5 and DAO 3.6 library
  104. Debug Error: Damage after normal block
  105. Spinner Control on a rebar
  106. ATL COM object and MFC question
  107. Lnk1106
  108. Message Sent When "Return" Hides Dialog
  109. help on implementing helpfile
  110. LNK2005 after moving from VC6 to VC2003
  111. Changing the background color of CEdit "read only" control
  112. HELP.......enable save button when property page is modified
  113. memory leak problem
  114. Fuction caller
  115. negative offset
  116. playing videos with frame capture
  117. Problem about catching WM_THEMECHANGED
  118. From java to c++
  119. Declaring Varibles Help
  120. Pointers to structures
  121. making an abort
  122. C++.NET performance question
  123. Simple program-Read,Store,Display
  124. Get character width...
  125. How can I know the system has install a keyboard hook?
  126. Urgent--status bar using c++
  127. borderless Modeless Dialogbox
  128. Need Urgent-VC++
  129. How to replace a function in a library
  130. MFC and OpenCV
  131. chplot
  132. size of structure
  133. Using stacks
  134. Plz tell why this 1 line code doesn't work?
  135. Child Popup Menu
  136. How to get the file handle of executable file from Process Handle
  137. convert results display to text file
  138. still string ?
  139. problem in services in Windows Server 2003 second edition OS
  140. How to send notification messages to Combobox control in vc++??
  141. AtiveX register in EVC 4.0 got Result code: 0x80040154
  142. How to add a stingray tree to a dialog
  143. Print Preview - MainFrame Vs Child Frame
  144. find a bug about edit control
  145. Virtual keys
  146. Access Violation || Stack Overflow
  147. interface???
  148. need to make a simple app to make any window stay on top
  149. CDHtmlDialog and bitmaps
  150. Runtime error 216 at 00002D68 on Windows 98
  151. Creating Windows Applications?
  152. BITMAP bmBits returns Zero
  153. Search for a work in Edit Box.
  154. Mouse Over Button Problem
  155. 64 bit compile
  156. Reading Directory Content
  157. template static member..
  158. Dll Initialization Failed
  159. Program exits in dlg.DoModal()
  160. Design question for UI library
  161. Great demo program won't compile!
  162. Writing to Excel spreadsheet
  163. Position to line in txt file
  164. verify valid file path
  165. Writing a Windows Service in VC++
  166. How to download a web page from a secure server?
  167. Please help me, trying to write a class oriented program
  168. Divide By Zero Exception on 64 Bit Math
  169. how to add property and method into automation interface by vc++2005?
  170. Create a File executable for Windows and Linux
  171. Can't change background color of group box
  172. Getting coordinates in terms of inches - MM_HIENGLISH
  173. How can I make CRichEditCtrl send only '\n'?
  174. Cleaning up after an exception
  175. How to convert a .wav file into mp3 format and vice-versa?
  176. ::keybd_event(VK_PRINT,,,,) problem for capturing the sreen shot
  177. dll problem
  178. Links within an CHtmlView
  179. Is there any way to block RichEditCtrl to go to next line automatically?
  180. make combo box update data?
  181. Global variables in Visual C++ 2005
  182. some unknown SDK ...
  183. Prompting user for filename to open
  184. how to draw properly
  185. Buttons in CListCtrl with LVS_ICON style
  186. kill process
  187. long path to short path
  188. Modify a lib?
  189. VC++ 2003 intellisense problem
  190. CFileDialog to save image
  191. Read BMP File
  192. run script
  193. To change registry key thru programs
  194. get the local paths
  195. VS .Net 2003 IDE Problem: No class view
  196. Get other process output
  197. CFileDialog can not select the files in the desktop.[Code attatched]
  198. Include a .h file from outside main library
  199. strange behaviour with buffer operations and altered strings
  200. LVS_OWNERDATA and LVS_OWNERDRAWFIXED in CListCtrl
  201. Derived from CStrig : Copy Operator?
  202. MFC help with file attributes?
  203. What is (unsigned)(c+1) <= 256 error ?
  204. memory leak from some mfc file
  205. Compilation Problems w/VS2k5
  206. Several classes into a DLL
  207. incompatibility among different windows o.s. versions
  208. ActiveX Control with Static Functions
  209. first C++ .NET program
  210. Painting Error Query
  211. is there such header??
  212. Regarding Converting of an application to Unicode.
  213. Event handling for Button cntrl.
  214. Colecurrency.Format():
  215. Only one excutable running
  216. StatusPane Text Hazzy
  217. The
  218. Cookies/Temporary Internet Files
  219. error LNK2005
  220. RS 485 communication problem
  221. typedef and #define
  222. How to implement connection points across boundaries?
  223. How to filter a curtain type of files in CFileDialog freely?
  224. Problem with atof() in Release Mode
  225. Declare a member variable of type CMyClass2 in CMyClass1 and Viceversa
  226. get anchors
  227. Memory Leaks from a lib
  228. Draw button in class derived from CWnd
  229. How to give Focus in form using DLL inside other DLL
  230. Find status of File
  231. My application crashes in debug mode.
  232. Embedded programing
  233. IE Control
  234. Call a member function with templates
  235. Dragging an image and BitBlt
  236. conditinal expression in for loop
  237. Code Generation (single v multithreaded etc...)
  238. Radio button
  239. Icon Caption Transparency
  240. just want you to check pleaaaaaaaaase
  241. How to let the build environment links to the IP Helper Library?
  242. IE Intercept Events
  243. Programmatically adding sites to the "Trusted" Zone in IE
  244. Speed of image processing in vb.net vs c++
  245. Pointers doubt
  246. Passing pointer to COM obj?
  247. use a CALLBACK function inside MyDialog
  248. Loading a DLL into a ActiveX Control
  249. Help: Random Name Generator.
  250. HWND, Parrent, Child, Control? How do they work together?