Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kartoffel
  • Order by date
  1. kartoffel

    Compact Flash - FAT file system: starting sector

    Edfair Actually, the Boot Sector (or reserved sector, or 0th sector) starts at sector 32. Is that the same as the Master Boot record? By the way, the file system used is FAT16. Thanks a lot for your help! alex
  2. kartoffel

    Compact Flash - FAT file system: starting sector

    Hi there I just formatted a Compact Flash card using Windows 2000. With a little application I wrote, I'm now trying to read the entire content of the flash card, sector by sector, in order to understand the FAT structure as I want to be able to format the card myself using my application...
  3. kartoffel

    Update MFC Activex Display

    Hi I have a C++ MFC activex with some colored shapes. I included my activex in a Visual Basic form and change it's color through a command button. When I click the button, the control's color wont change unless I minimise the form and then maximise it again. I know it must be some sort of...
  4. kartoffel

    Update MFC Activex Display

    Hi I have a C++ MFC activex with some colored shapes. I included my activex in a Visual Basic form and change it's color through a command button. When I click the button, the control's color wont change unless I minimise the form and then maximise it again. I know it must be some sort of...
  5. kartoffel

    Import VB OCX component in VC++ project

    Hi I would like to know if it's possible to include an OCX component, coded in Visual Basic 6, into a VC++ project. I tried using Project->AddToProject->Components... and selected my OCX file. I get this message: "The ActiveX control is not properly registered, or its type library version...
  6. kartoffel

    File association problem

    Hi there After I run my application for the first time on a new computer, the file type associated with my app adds itself to the "New" submenu in the desktop context menu (this is the menu appearing when right-clicking on the desktop or in the Windows explorer and then clicking on...
  7. kartoffel

    Problem with context menu ­­"New document"

    Hi there After I run my application for the first time on a new computer, the file type associated with my app adds itself to the "New" submenu in the desktop context menu (this is the menu appearing when right-clicking on the desktop and then clicking on the "New" submenu)...
  8. kartoffel

    Undesirable Save File popup when closing app

    Thanks a lot victorv! It works just fine now
  9. kartoffel

    Undesirable Save File popup when closing app

    When I close my application, it asks me if I want to save the current file (in a popup window). How do I specify I dont want this popup window to appear? (I simply dont want to be able to save the file.) Thanks
  10. kartoffel

    Error when closing ChildFrm window

    Hi there I am working on a MDI application and when I close a ChildFrm window (i.e. a document currently loaded in my application), I get an error and my application closes instantly. What could be the problem here? Thanks
  11. kartoffel

    Accessing Edit Box content (MFC)

    hmmm... still doesn't work I really dont know what the problem is... Thanks anyway for your help!
  12. kartoffel

    Accessing Edit Box content (MFC)

    Thanks for the tip cra. But now it seems I have another problem. When I try to retrieve each line of the edit box, I get empty strings! Here is my code (inspired from an MSDN example) ======================================= CString strCurrentLine, strLine; CEdit* pmyEdit =...
  13. kartoffel

    Accessing Edit Box content (MFC)

    Hi I inserted an edit box in a Dialog, using the Ressource editor. The user can write some text in the edit box and I want to access the content. From within my Dialog CPP file (say Dialog.cpp) I wrote the following to access each line of the edit box: for() { ...
  14. kartoffel

    String formatting

    How can I specify formatting options (ex: setw(4)) to a string using the sprintf function. Example: ============= char currentPosition[250]; sprintf(currentPosition, "X position: %f Y position: %f Z position %f", xPos, yPos, zPos) ============= I want xPos, yPos and zPos to always be...
  15. kartoffel

    CEdit background color

    Hi there After I call the SetReadOnly(TRUE) function of my CEdit object, it's backround color switch to grey. How can I specify I want the color to remain white? Thanks

Part and Inventory Search

Back
Top