// JP opened flex table

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

  1. Multiple views with SDI
  2. Excel add-in in C
  3. Debug Error
  4. Array
  5. DrawServ sample
  6. Copying Graphics to Word, PowerPoint, etc
  7. LineTo
  8. Filling a ListView control with fields
  9. argument
  10. API to defrag memory
  11. ActiveX Control
  12. hiding toolbars
  13. Print, Print Preview
  14. IE ActiveX Control and Javascript
  15. Registry
  16. Visual C++
  17. Internet Communication
  18. Minimized Window
  19. Converting CStrings to char*
  20. ICQ style app
  21. How to change the light position?????
  22. component gallery, howto?
  23. PlaySound
  24. Need advanced CRichEditCtrl help...
  25. CToolTipCtrl in Windows 95/98
  26. SMPP application
  27. VC++ Add Ins and NT User Rights
  28. Calling Excel from C program
  29. RichTextCtrl Questions...
  30. MFC
  31. Empty String after Editing Listtrl
  32. unresolved external symbols
  33. CComboBoxEx
  34. CComboBoxEx
  35. Time out in MFC Sockets
  36. Find Semaphore owner
  37. How to print grid in View
  38. Win95 - multimedia timer
  39. Tooltips and other problems with earliest win95s
  40. Browser Application vs Client Server Application
  41. Focus
  42. How to use glBitmap for set position.
  43. How to create 3D text on screen with OpenGL?
  44. Minimize/Maximize Win32
  45. How to specify location of a folder when opening a file.....
  46. How can I serialize a CFont object?
  47. CreateProcess()
  48. "aux.dat" as a file name
  49. Adding controls in a Brower
  50. Displaying a database record in CEditView
  51. Getting Color of a Pixel or Region
  52. Charset : Glyph to Bitmap
  53. How to recieved ON_UPDATE_COMMAND_UI
  54. How to set path in console application ?
  55. How to read/write CString from/in CFile ?
  56. How can I do multi-line tooltip
  57. How can create Push Button on ToolBar
  58. Serialize a collection
  59. DirectShow and RenderFile
  60. How do I create a bitmap from the screen in MFC?
  61. What (*&) means?
  62. Dial up connection
  63. Linking tables with Jet Ole DB Provider
  64. Force Desktop Window To Refresh
  65. Menus
  66. creating a simple window for text output
  67. MFC: CTreeView/Widgets
  68. Text editor with line number display.
  69. C++ class
  70. How to add tooltips to my own control?
  71. Standard File Open dialog as a Property page
  72. Programming MCI
  73. C++ arrays and friends
  74. get window handle of control
  75. Child windows?
  76. Writing JPEG files
  77. selection in clistctrl
  78. Progress control
  79. visual C++ direct programming
  80. How to programmatically hide a main menu item
  81. How to get ThreadHandle from ThreadId?
  82. CFileDialog: problem with resource ID. I am desperate, please help
  83. PropertySheets and DLL's
  84. CBitmap
  85. Column Header
  86. How can I get frame from net
  87. How to make my control <B>Invisible at runtime</B>
  88. Prefx for binary?
  89. Control panel
  90. How to recieve ON_UPDATE_COMMAND_UI
  91. AutoPC
  92. Combo Box
  93. Communicate with UNIX
  94. Compiler error C2679 for Serialize function ar>> operator.
  95. How to view export functions of a DLL through VC++ code - Samantha
  96. Edit Control
  97. Fax API
  98. Programming System Timer in Windows
  99. LVIS_CUT style
  100. copy, cut and paste with CFormView
  101. Screen Saver lib
  102. i want to make changes in the stranger dialog box. Anybody know how?
  103. ListBox (Scrollbar)
  104. Ado and com in c++(returning recordset ptr)
  105. DLL required to register the Microsoft Regstered Active-X Control.
  106. Visul C++ cant find my class.
  107. User interface thread - memory leak - IMPLEMENT_DYNCREATE
  108. How to implement copy, cut and paste for edit controls in a dialog box in VC++5.0
  109. visual c++
  110. chang color menu
  111. drag and drop
  112. Stored Procedures which return structures
  113. clipboard format
  114. Getting Server name dynamically from downloaded ActiveX
  115. Cbitmapbutton
  116. COM Object Communication
  117. Windows and multiple CD-ROM drives
  118. Passing Objects as arguments to a Method in an ActiveX control
  119. Q: GDI text and the associated alpha
  120. Q: GDI text and the associated alpha
  121. Hiding the Application in the Task Bar
  122. A DLL with modeless dialogs and ActiveX!
  123. Adding button to a toolbar in Microsoft Outlook or Outlook Express
  124. SetWindowRegion
  125. How to create a DLL
  126. Get login user name 95/NT
  127. How to create more tasks in windows?
  128. CJ60 document
  129. Q: how to get SHBrowseForFolder to return ...
  130. Property pages... How can I know when one page has never been showed ?
  131. WinHelp
  132. Active Document InProcess.
  133. Q:How to prevent opening more than 1 docuement of the same type?
  134. CListCtrl, Why doesn't this work?
  135. Activating child CFrameWnd caption
  136. Keypad plus and minus keys
  137. Why PSP_PREMATURE gives a compiler error... ?
  138. DCOM
  139. How to create multitasking in the window?
  140. Accelerator and Editbox
  141. extern "C"
  142. Converting Characters to UNICODE!!!?
  143. Converting Characters to UNICODE!!!?
  144. Basic question about constructors and initializers in VC++
  145. Consistent Copying to Word & PowerPoint
  146. Crystal Reports Help. I need documentation!
  147. OnCloseDocument + OnFileNew causes assert failure
  148. Converting BSTR to CString
  149. VC++ 6.00: How set the landscape printing mode?
  150. Password protecting a program
  151. how to mimic key strokes in a application?
  152. Subclassing CCombobox (problem)!!
  153. Menus
  154. LoadPicture Dialog
  155. ListCtrl MouseDown message
  156. validate user
  157. Is it bad coding practice to use #defines for string literals ?
  158. How to pass pointer to string character
  159. IE5.0 has problem with MFC?
  160. Using Splash Screen
  161. CDialogBar
  162. Taskbar with a Dialog app
  163. Anyone know how to handle CD-ROMs under Windows?
  164. Help! SetActiveView problem
  165. Nonmodal Dialog
  166. Charset : Glyph to Bitmap
  167. CTreeCtrl Data in/out model ??
  168. get the window message?
  169. Accelerators
  170. I need help serializing different versions of an document.
  171. Communication
  172. Displaying Integers in List Box
  173. How to dynamically add the caption for a Dialog
  174. How to overwrite OnFileSaveAs?
  175. Logging into Web site programmatically
  176. Static Text Control
  177. DirectShow and MFC
  178. Version Problem
  179. Calling Release() in NT Service Destructor
  180. CWinApp::GetProfileXX and CWinApp::WriteProfileXX
  181. Help for shared printer please.
  182. Spin Control
  183. When to USE controls from the control toolbar and when not to??
  184. Download patch from internet
  185. Showing Chinese Characters in English NT
  186. Question, Help!!!!!!!
  187. Books
  188. OpenGL
  189. How to maximise window when application starts
  190. How to stop flickering when window resizes
  191. WinInet proxy Setting
  192. Converting strings
  193. Set WinInet Proxy
  194. how to disable paste in CEdit control
  195. How exchange data among properpages
  196. Change the icon of a dialog
  197. Multimedia Timer
  198. NT Services and MFC
  199. Editing icons in AppWizard project
  200. Creating Child Frame in an extension DLL
  201. Interview
  202. Disabling a Button, and executing other progs...
  203. modeless property sheet
  204. CSocket & CArchive
  205. Help: About NT DDK
  206. Converting Color BMP to Mono BMP
  207. How to print grid in View
  208. HELP!!!__BUTTONS
  209. HTTP Client
  210. Comport logger
  211. Dev Studio Like Output Area-URGENT!!
  212. MDI as one pane of the main window
  213. Opening different filetypes
  214. mail attachment extraction
  215. urgent help!!
  216. MFC dll's - compatibility
  217. CPropertySheet, change the order of the pages...
  218. Column Editing
  219. [ADO]OpenSchema faile
  220. coding double type in binary and hexadecimal ?
  221. CFileDialog W2000 style
  222. MouseMove in TrackPopupMenu
  223. Changing the dialog template resource file of a class based on a generic class with a different temp
  224. Is it possible to derive Dialog ?
  225. Converting CString to wchar_t*
  226. Control Panel & MFC
  227. Viewing Html documents
  228. CDplayer autopc /nt
  229. Scanning barcodes
  230. MFC COM VB Colection
  231. Converting from CPropertyPage to CDialog...
  232. Printing problem: Changing font ??
  233. Detection COM Ports
  234. Resize my Dialog
  235. OCX from class
  236. Painting
  237. Distrubute ADO
  238. Cant see the resources
  239. Opening one instance of a filetype
  240. How can I Execute Browser What I want..
  241. URGENT HELP..
  242. MFC C++
  243. BroadcastSystemMessage Problem in Win95
  244. Help with CBitmap::GetBitmap fails with NT?
  245. Finding out the system date
  246. How to close Popup-Menu ?
  247. Problem with Excel 97 and Ole Automation
  248. Last Bootup time
  249. System Bootup time
  250. Changing the caption on a modal dialog
//JP added flex table