// 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. double right click context menu
  2. Converting CString to const unsigned char *
  3. Problem with files over HTTP (not using WinInet). Better classes? Or BlockingSocket practice?
  4. Drag and Drop
  5. Segmentation Fault on call to delete
  6. MFC CListCtrl not displaying item
  7. sound
  8. From VC++5 to VC++6
  9. How to find the programs folder
  10. C++ history
  11. UPDATE_COMMAND_UI message
  12. Why the Combo Box doesn't drop
  13. Recursion
  14. rotate a WMF picture
  15. where is the color???
  16. Fonts As Resourse
  17. where is my color?
  18. where is the color gone??
  19. How do I disable tree node collapse
  20. Microsoft Comm Control
  21. Adding to CEmployeesPtrArray - -
  22. interfacing parallel port
  23. Type Conversion
  24. Adding an icon for my application in the desktop window through programetically
  25. Visual C++
  26. reference counts and shutdowns
  27. Timer Event isn't triggered, who can explain me this?
  28. MP3 decoder
  29. Adding my Application Icon to the System Tray.
  30. How to Handle Outlook data in C/C++
  31. auto_ptr as class member
  32. auto_ptr as class member
  33. Problems with CListCtrl->DeleteItem
  34. Having trouble writing DWORD values to the registry
  35. GetWindowText() I need a little Help with this please
  36. I can't find it anywhere!!
  37. complete newbie: how to add dependencies to a source-code file?
  38. How to handle the Dial Up Network in VC and VB?
  39. FTP & MBCS
  40. How do I get the commandline-arguments?
  41. case insensitive search
  42. How to get a name of a workgroup
  43. Scrolling Text
  44. Convert a binary no. to a string.
  45. mouse coordonates
  46. mouse coordonates.
  47. mouse coordonates,
  48. Debug vs Release mode
  49. How to close another application?
  50. How to get the short name of a directory ?
  51. Unable to read value in registry .
  52. Freeze final video frame
  53. How to output a String in an OpenGL window using VC++
  54. CListCtrl focus
  55. About malloc
  56. I need syntax highlighting algorithms
  57. Intergraph/Microstation (.dgn-Files)...How to read?
  58. Size of a directory
  59. Messagebox on Exit...
  60. System Tray
  61. Converting modal dialogs to modales dialogs
  62. General Design Question
  63. creating thread
  64. Sending Left button message to parent window...
  65. Access Table Descriptions??
  66. Visualization
  67. WinSock
  68. 24-bit Bitmap files
  69. Save Document on default path name
  70. Full screen application (OpenGL)
  71. Can't print bitmap
  72. Label edition with CListCtrl
  73. CDialogBar - Hide
  74. How to Write Text in OpenGL window
  75. DateTime_SetSystemtime && NT 4.0 Y2k ???
  76. Copying chars to CString
  77. All Propertypages should get updated by the same timer
  78. CObject
  79. How to customize the print dialog box
  80. import data form xls format
  81. Execute a program
  82. Bitmap & CDialog
  83. ToolTip
  84. Web Browser navigation functions...
  85. ON_MESSAGE problem with release version...
  86. Get the size of a directory ??? (C++)
  87. Toolbar missing bitmaps bug (?)
  88. S: Info about MPEG1WAVEFORMAT
  89. MAPI - Saving Messages from Public Folder of MS Exchange locally
  90. Export symbols
  91. Digital counter next to toolbar
  92. Frames in ISAPI extension
  93. moving controls at runtime.
  94. Sound card programming
  95. Updating view in real time
  96. Seeing if window is the top parent window
  97. WSAStartup and close
  98. Get a pointer to a fix physical memory address
  99. Job offer
  100. List Control
  101. 0xC0000005 Access Violation !!!
  102. Crystal Ocx
  103. How do I spawn Notepad?
  104. Web Browser
  105. Tree Control
  106. Update Recordset
  107. It has a horizontal scroll bar but it's not scrolling..
  108. where can I get the package like gdbm in VC++?
  109. Problem with Transparent Window
  110. Wondering if submitting this to CodeGuru would be benificial to you guys.... (input?)
  111. CRichEditView with multiple views
  112. CRichEdit default font size?
  113. CRichEdit default font size?
  114. If anyone has ever used a ShellProc hook...
  115. Visual Basic database connection
  116. Display a bitmap
  117. Hook in service
  118. Problems with other files than HTML over HTTP
  119. How to make a animated animator like Word, Excel etc.
  120. Modal View
  121. Database + Listview
  122. CFHookProc for CFontDialog
  123. Play midi file .
  124. How to convert float to CString?
  125. Changing dialogbox captions programmatically
  126. Convert 56 chaecter hex string to binary registery value? Can it be done?
  127. Resize of CMDIChildFrame
  128. How to Calculate the Window size of Menu,toolbar,status bar associated with a MDI MainFrame Window
  129. SendInput / Linking
  130. [HELP] Submit query to search engines
  131. files
  132. Are Rebars customisable
  133. about MIDI
  134. Button on TaskBar
  135. Putting charts in XL using OLE
  136. Spawning a program from within another
  137. Spooling multiple print jobs
  138. How can I make View in ' Full Screen Mode '???
  139. Generate Bitmap from memory. Urgent, please help.
  140. Support proxy
  141. Virtual Key -> Ascii
  142. Quick question re the DateTimePicker control
  143. How can i change MouseMove time interval?
  144. Switching to full screen
  145. Handling the reacordset readonly exception
  146. What function when I choose options from the combo box
  147. Converting the following code into a recursive algorithm
  148. Messages are not being sent by the following email program
  149. RDO : Getting result from Select statment
  150. Serial Port Device
  151. How to insert files into RTF
  152. Custom menu
  153. interfacing parallel port
  154. interfacing parallel port
  155. A dialog destructor isn't called when application finishes
  156. gdi mfc ogl
  157. Highlight entire window....(like spy++)
  158. help with memory leaks..
  159. memory leaks
  160. RES problem (exponential growth)
  161. Problem with ToolBar
  162. What can I do? My dialog becomes disordered when I change the small Font to Large Font in win98.
  163. How can I begin the downloading at the position ended last time when I begin the ftp next time?
  164. Press Escape to close app.
  165. How to work with toolbars?
  166. How to know the Application path after installing myApp ? Help !
  167. ADO & Oracle 8i
  168. ON_BN_CLICKED and ON_BN_DOUBLECLICKED
  169. undelete file from Recycle Bin
  170. How to get the size of a pointer for LPSTR?
  171. Help!!! Process Creation time in win95
  172. Internet clients
  173. Mapi Reading Mail Messages
  174. Back color of CComboBox when disabled
  175. ide: is here 'go next error' key combination? Im tired of using mouse..
  176. Multithreading
  177. persistence of client/server relationship
  178. Regarding Mapi
  179. changing registry values for screen color's
  180. COM INSTALL PROBLEM
  181. popen
  182. Using 3D MAX objects in mfc
  183. How to check if a File / Directory exists?
  184. title and icon in status bar
  185. How to get menu item?
  186. Unable to Access Calendar Control in MSOutlook.
  187. CDatabase::OpenEx(...)
  188. ASF (advanced streaming format)
  189. Help for Serial communication!
  190. REal time Video Processing
  191. dgn-Files Intergraph/Microstation...I need Informations
  192. bitmaps from video
  193. RasComman Dialog
  194. How to enumerate network disks which are accessible with current user name
  195. Setting focus while mouse moves....
  196. TreeCtrl
  197. Alphabetical sorting
  198. start application with file type
  199. IShellFolder::SetNameOf
  200. to return a CString
  201. Send data directly to printer
  202. Printing in text mode instead in the graphic mode
  203. ActiveX Controls
  204. Bitmap in memory DC
  205. Visual C++
  206. Createing my ownd Explorer
  207. Multiple EXEs
  208. Errors in Microsofts "winsvc.h" Header File?
  209. How to hode mouse cursor?
  210. How to hide mouse cursor?
  211. VC++
  212. Memory Leaks
  213. How to disable Landscape option in print dialog box
  214. How can I use the File Open dialog
  215. HELP! Wrong function executed on runtime
  216. ShellExt
  217. Help -- Editing Items in TreeCtrl
  218. Where does the no of copies value is stored in CPrintInfo structure
  219. How can I create HTML code for an activeX with picture properties?
  220. VC++
  221. MFC start
  222. PCL to DIB conversion tools
  223. Is there a system registry entry that indicates type of memory and motherboard clock speed?
  224. ISequentialStream BLOBs
  225. CAnimateCtrl and CPropertySheet
  226. Custom source interface fails via stack problem on event callback
  227. How to best run app located on server?
  228. Getting page info from Stock property pages
  229. Resazing CMDICildWnd
  230. BITMAP FROM VIDEO
  231. How Can I send Return/Enter to an edit control?
  232. Interface with C functions
  233. Delphi & IE WebBrowser Control
  234. Adding a new Toolbar ( button) to Internet Explorer
  235. Edit control - GRRR
  236. CFileDialog with TYPE select
  237. CFont question
  238. The UI under DCOM
  239. Print output
  240. Dynamic with out message maps
  241. How to determine if a user is in a group
  242. VC++
  243. Outbar in CMyclass::CView?
  244. Voice Modem Commands
  245. Capturing Clipboard Commands
  246. CEdit bug in Numeric-Mode
  247. PenStyle and Path functions
  248. CString to integer?
  249. Capture scroll position with the scroll box
  250. How resize CChildFrm initialy
//JP added flex table