Recent content by J_Koeleman

  1. J

    Hotkey Standards

    Found my own answer: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc/html/atg_keyboardshortcuts.asp?_r=1
  2. J

    Hotkey Standards

    We want to implement the usage of hotkeys in our application: There are a fiew well known hotkeys: ctrl-f for seach etc. But we would like to know the other (windows default) ones, P.E. the switch of tabs is that alt + 1 for the fist tab, and alt + 2 for the second. Or should we use the ctrl...
  3. J

    Is it possible to disable the closure of a window

    I found a way to solve this problem, its an addition to the global-shared code (so use their code and edit that, there will be a bit unused code but you can delete that manually): declare two extra preprosessors: &GLOBAL-DEFINE MF_GRAYED 1 &GLOBAL-DEFINE MF_ENABLED 0 and declare...
  4. J

    Is it possible to disable the closure of a window

    Perheps anyboady knows a way to get it enabled again. The opposit function of RemoveMenu (the function used in the above suggested working code) is AppendMenu. But I can't get that one working. Searching for examples I found another function: EnableMenuItem. Is there anybody who has experiance...
  5. J

    Is it possible to disable the closure of a window

    Thanx, this is indeed the exact solution for my problemen!
  6. J

    Is it possible to disable the closure of a window

    I was wondering if it's possible to disable the cross-button on the top right, so it isn't possible to close the window? There is a MIN-BUTTON and a MAX-BUTTON attribute of the window handle but an EXIT-BUTTON handle is not available. Does anybody know a way to get this done?
  7. J

    Apply Entry to the first field in a SDV

    How does this works with a smart select? I need to specify an input parameter: RUN applyEntry IN h_dynselect ( INPUT pcField /* CHARACTER */). I don't know what pcField should be. It's not the name of the database field... Who knows the solution for my problem?
  8. J

    Apply Entry to the first field in a SDV

    I have a smart dataviewer with a fiew fields in it. When I add or edit the viewer, id like progress to apply entry to the first field in the viewer. This works fine with ordinary fields, but when I have a smart datafield or a smart select progress applies entry to the first ordinary field in the...
Back
Top