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 Wanet Telecoms Ltd 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: ahoodin
  • Content: Threads
  • Order by date
  1. ahoodin

    access violation in this function?

    I use this function to parse delimeted data. When it is used in a loop sometimes I wonder about it. Normally solid dialogs will blink a bit when using data returned from it. Can anyone see anything? TIA, ahoodin int parse(char *cSrc, char *cRet, int nSubstr, char* cDelimeter){//can use...
  2. ahoodin

    Script Controllable Host Mode program

    Anybody know of a good communications program that also happens to be freeware? Haven't had to use serial communications for a while and probably should have saved some software. I will be doing direct communications to COM1, with both Windows 98 and Windows 2000 and maybe XP in the near...
  3. ahoodin

    remote debugger debug info for explicitly linked dll

    I am trying to remote debug my app, I can't get debugging information on a DLL that I have explicitly linked to the application. I need to step into that code! I get these errors: Loaded symbols for 'my.dll' Preloaded symbols may not match 'h:\GetBlock\Debug\GetBlock.exe'. LDR: Automatic...
  4. ahoodin

    memory mapped files

    I have an NT4 Box that is running an application suite that communicates over a bunch of memory mapped files. These files however have special permissions set: Administrators (Special Access DPOQM) System (Special Access DPOQM) The writers of this application suite took special note...
  5. ahoodin

    registry editing software missing?

    I don't seem to have the regdmp.exe or the regini.exe programs on my 2000 Workstation. How do I get these files..? Are they in the installation disk, and if so what setup option are they under? thanks, -ahoodin
  6. ahoodin

    Power Point -> Web Page

    I have converted a powerpoint presentation to HTML. This also contains XML and Java. I can not see the GIFs in my explorer on my computer, however I can on other peoples computer. How do I fix this? I want to work on the web page from my pc. ahoodin
  7. ahoodin

    International dlls & end of days.

    Hello all, I am working with W2k and MSVC 6.0. I recently installed a german application and all my warning messages come in as german. I have already checked the regional settings and keyboard layout...to no avail English. I have already checked the MSVC options and see English. I am now...
  8. ahoodin

    deleting memory mapped files

    I am attempting to delete a memory mapped file when I close down my data server. if(hMMF != NULL) { if (!CloseHandle(hMMF)) lerror(GetLastError()); hMMF = NULL; } HFILE_ERROR ==OpenFile("TESTMMF.DAT",&of,OF_DELETE); every other time the file stays. I did try to do a DeleteFile()...
  9. ahoodin

    ritious regions

    I have been given handles to a number of Regions by a tool called GDI usage. How can I figure out what window they belong to? http://msdn.microsoft.com/msdnmag/issues/01/03/leaks/leaks.asp Help me please! Asher I am using this tool to track down a leak that I felt belonged to a vendor...
  10. ahoodin

    Vendor Library DLL Leaks???

    I am having a problem with an existing application. There is a cpp/module in the application that takes an instrument reading using a 3rd party IO board. It reads a voltage 1000 times a second and returns an average reading. To do this first a buffer of windows global memory is allocated. There...
  11. ahoodin

    reading MAP files

    Reading MAP file, I am reading the memory map. The memory address format for microsoft is SEGMENT:OFFSET. When I read the map file the SEGMENTS all show up as segment 0 or segment 1 for all symbols. When I get a page fault, the segment shows up as a number. I believe this is because the...
  12. ahoodin

    invisobuttons

    MSVC 6.0 SP4 Windows 98 second edition On an application I am working on, the buttons on one property sheet dialog are disappearing intermittantly. Cancel, Apply and OK are like disappearing, for no apparent reason. If you click the spot where they would be, the BN_CLICKED message does infact...
  13. ahoodin

    rowdy radio buttons

    In the application I am working on, I am having an interesting problem. When I enter the dialog, the first radio button in the tab order is automatically checked. One of the screens has 3 radio buttons, and only 3. They are not grouped, nor do they have the tab order hint set. The dialog is...
  14. ahoodin

    Subclass CDialog

    I would like to subclass CDialog, to add functionality. I can pretty easily subclass stuff in non-MFC applications. How do I code that. I would like to substitute my new class for existing dialogs that use CDialog class. Help me please! Asher
  15. ahoodin

    auto-convert 800x600 resolution back to 640x480

    Hello all you tek-tips fans, The Compiler MSVC 6.0 SP 4 Windows 98. I am writing you regarding an MFC application I have co-authored, using 800x600 CWnds. Upgrading the Video hardware is not an option, so we must downgrade the resolution of the application here. I simply cant see taking 160...
  16. ahoodin

    MFC and custom typedefs

    Windows 98 MSVC 6.0 MFC I am converting a few cpp files from a procedural model to a class model. The problem comes in here: The class member functions have pointers to struct as arguments. How do I include the definitions of the structs (found in define.h) in the header file of the class I...
  17. ahoodin

    dialog dues urgent

    MSVC 6.0 Windows 98 Edition 2. I have a modeless dialog in my application. The dialog constructor fires off when I declare it in my global.h header file. I call boolean btest = readout.Create(IDD_READOUT4, NULL); on a parent dialog. This returns true. CReadout::OnInitDialog() gets...
  18. ahoodin

    winGDI wierdness

    I am having a wierdness in my application where one of the dialogs throws some exceptions. First the dialog will throw an exception in the OnPaint() handler where it blows up on the constructor of the dc. Here is the error: WinGdi.cpp line 1055 on ~CPaintDC() Here is the line in the winGDI...
  19. ahoodin

    dll dilemmas...

    I have a dll function that parses out a substring. It doesn't work when I call it using the dll. pointer to char pRetval comes back as the first substring always. When I move the function out of the dll and put it in one of the cpp files the function works just fine. pRetval comes back as the...
  20. ahoodin

    2 projects 100,000 resources so little time.

    I am trying to add the resources from 1 project to another project with the same resource names. How can I quickly accomplish this? project 1 old project mustiple dialog resources, cursors, bitmaps project 2 new project needs all of them. When I just copy the old resource project1.rc into...

Part and Inventory Search

Back
Top