What function to set coordinate system in 6i with API?

#define D2FP_COORD_SYS 72
here's the define that relates to what i want to do.
what are the names of the functions that set/get the coordinate system. (i want to set it to character and change the default units)
thanks,
[email protected]

The Other missing Header file :-) - d2fcrd.h - In fact this is shipped in the Forms API lauchpad on the Forms section on OTN. But here it is anyway:
/* Copyright (c) Oracle Corporation 1996.  All Rights Reserved. */
   NAME
    D2FCRD.H -- Dev2K Forms API CooRDinate system declarations
   DESCRIPTION
    Contains the public declarations for the Forms API CooRDinate system
   PUBLIC FUNCTIONS
    d2fcrdcr_Create          - Cover for d2fobcr_Create
    d2fcrdde_Destroy         - Cover for d2fobde_Destroy
    d2fcrddu_Duplicate       - Cover for d2fobdu_Duplicate
    d2fcrdex_Extract         -
    d2fcrdap_Apply           -
    d2fcrdg?_Get*Prop        - Cover for d2fobg?_Get*Prop
    d2fcrds?_Set*Prop        - Cover for d2fobs?_Set*Prop
    d2fcrdhp_HasProp         - Cover for d2fobhp_HasProp
    d2fobcs_CharSize
    d2fobss_StringSize
#ifndef D2FCRD
#define D2FCRD
#ifndef ORATYPES
# include <oratypes.h>
#endif
#ifndef D2FPRIV
# include <d2fpriv.h>
# endif
/* C++ Support */
#ifdef __cplusplus
extern "C"
#endif
** Object: Coordinate Info
ORA_RETTYPE(d2fstatus) d2fcrdcr_Create( d2fctx *pd2fctx, d2fcrd **ppd2fcrd );
ORA_RETTYPE(d2fstatus) d2fcrdde_Destroy( d2fctx *pd2fctx, d2fcrd *pd2fcrd );
ORA_RETTYPE(d2fstatus) d2fcrddu_Duplicate( d2fctx *pd2fctx,
                                           d2fcrd *pd2fcrd_src,
                                           d2fcrd **ppd2fcrd_dst );
ORA_RETTYPE(d2fstatus) d2fcrdex_Extract( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                         d2ffmd *pd2ffmd );
ORA_RETTYPE(d2fstatus) d2fcrdap_Apply( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                       d2ffmd *pd2ffmd );
ORA_RETTYPE(d2fstatus) d2fcrdgb_GetBoolProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                             ub2 pnum, boolean *pprp );
ORA_RETTYPE(d2fstatus) d2fcrdgn_GetNumProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, number *pprp );
ORA_RETTYPE(d2fstatus) d2fcrdgt_GetTextProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                             ub2 pnum, text **pprp );
ORA_RETTYPE(d2fstatus) d2fcrdgo_GetObjProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, dvoid **pprp );
ORA_RETTYPE(d2fstatus) d2fcrdgp_GetBlobProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, dvoid **pprp );
ORA_RETTYPE(d2fstatus) d2fcrdsb_SetBoolProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                             ub2 pnum, boolean prp );
ORA_RETTYPE(d2fstatus) d2fcrdsn_SetNumProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, number prp );
ORA_RETTYPE(d2fstatus) d2fcrdst_SetTextProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                             ub2 pnum, text *prp );
ORA_RETTYPE(d2fstatus) d2fcrdso_SetObjProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, dvoid *prp );
ORA_RETTYPE(d2fstatus) d2fcrdsp_SetBlobProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                            ub2 pnum, dvoid *prp );
ORA_RETTYPE(d2fstatus) d2fcrdhp_HasProp( d2fctx *pd2fctx, d2fcrd *pd2fcrd,
                                         ub2 pnum );
** These will eventually move to d2fob.h
ORA_RETTYPE(d2fstatus) d2fobss_StringSize( d2fctx *pd2fctx,
                                           text *str,
                                           d2ffnt *pd2ffnt,
                                           d2fcrd *pd2fcrd,
                                           number *width,
                                           number *height );
ORA_RETTYPE(d2fstatus) d2fobcs_CharSize( d2fctx *pd2fctx,
                                         number width,
                                         number height,
                                         d2ffnt *pd2ffnt,
                                         d2fcrd *pd2fcrd,
                                         number *char_width,
                                         number *char_height );
/* Begin convenience macros  */
#define d2fcrdg_char_cell_hgt(ctx,obj,val) \
           d2fcrdgn_GetNumProp(ctx,obj,D2FP_CHAR_CELL_HGT,val)
#define d2fcrdg_char_cell_wid(ctx,obj,val) \
           d2fcrdgn_GetNumProp(ctx,obj,D2FP_CHAR_CELL_WID,val)
#define d2fcrdg_coord_sys(ctx,obj,val) \
           d2fcrdgn_GetNumProp(ctx,obj,D2FP_COORD_SYS,val)
#define d2fcrdg_dflt_fnt_scaling(ctx,obj,val) \
           d2fcrdgb_GetBoolProp(ctx,obj,D2FP_DFLT_FNT_SCALING,val)
#define d2fcrdg_real_unit(ctx,obj,val) \
           d2fcrdgn_GetNumProp(ctx,obj,D2FP_REAL_UNIT,val)
#define d2fcrds_char_cell_hgt(ctx,obj,val) \
           d2fcrdsn_SetNumProp(ctx,obj,D2FP_CHAR_CELL_HGT,val)
#define d2fcrds_char_cell_wid(ctx,obj,val) \
           d2fcrdsn_SetNumProp(ctx,obj,D2FP_CHAR_CELL_WID,val)
#define d2fcrds_coord_sys(ctx,obj,val) \
           d2fcrdsn_SetNumProp(ctx,obj,D2FP_COORD_SYS,val)
#define d2fcrds_dflt_fnt_scaling(ctx,obj,val) \
           d2fcrdsb_SetBoolProp(ctx,obj,D2FP_DFLT_FNT_SCALING,val)
#define d2fcrds_real_unit(ctx,obj,val) \
           d2fcrdsn_SetNumProp(ctx,obj,D2FP_REAL_UNIT,val)
/* End convenience macros  */
/* C++ Support */
#ifdef __cplusplus
#endif
#endif /* D2FCRD */

Similar Messages

  • How can I use FlexMotion vector move function for cartesian coordinate system to other coordinate.

    I have problem with convesion from cartesian coordinate system to other one. I need use standard move function for example blend to moving 2 arms manipulator. What i need to do?

    The vector move will probably not give the results you are looking for. The vector move calculates the trajectory based on unit vectors in cartesian space. For a 2 arm robot (ex. 2 rotation joints), you would be able to move from point A to point B as desired, however the path would not be a straight line. The path may also not be suitable for the mechanism, which could cause a collision or maybe a singularity.
    The best solution is probably the contour move. You can use the inverse kinematic routine you wrote and send the results to a contour move. Contour moves are a little more complicated to use than the simple one axis or vector moves, however they are also much more flexible. I do not know of any functions already written for your system,
    but it sounds like you are already on the right path.
    Regards,
    Brent Runnels
    Applications Engineer
    National Instruments

  • What does the setting 'use system proxy setting' mean?

    I am using a proxy server that requires my email address which I need to change. I can't figure out how to change the proxy server settings. Under preferences, network, settings, the checked box is 'use system proxy settings' -- I don't know what this means or how to see what the proxy setting is and possibly change it.
    Thank you

    If the default "Use system proxy settings" is selected then Firefox will try to query the OS to find which settings to use.<br />
    If you want to use a specific proxy in Firefox then you can select use "Manual proxy configuration" and enter the URL and port number that you want to use.
    * http://kb.mozillazine.org/network.proxy.type
    * http://kb.mozillazine.org/Network.proxy.%28protocol%29
    * http://kb.mozillazine.org/Network.proxy.%28protocol%29_port

  • Need ruling on screen coordinate system to use with AWTVideoSizeControl...

    Hi -
    I’m working on a tru2way application and a nagging question keeps popping up with stack vendors on the usage of the AWTVideoSizeControl interface. I was hoping you could provide a definitive answer (note that Bill Foote is the author of the interface spec).
    In short…my reading of the javadocs for AWTVideoSizeControl is that all values passed to and received from it are to be expressed in the graphics plane coordinate system. Stack vendors don’t always agree.
    Periodically, I run into a stack vendor who expects AWTVideoSize (as passed to AWTVideoSizeControl.setSize) to be expressed in video plane coordinates – I’ve so far been able to convince these folks that the spec requires graphics coordinates. I’ve just run into an interesting situation, though, where although the vendor agrees that AWTVideoSize should be in graphics coordinates, they’re feeling that the Dimension returned from AWTVideoSizeControl.getSourceVideoSize() should be based on the video plane coordinate system. Their thinking is that while ‘x’ and ‘y’ are coordinates (and therefore are called out as needing to be expressed relative to the graphics screen), ‘height’ and ‘width’ aren’t.
    Perhaps I’m wrong, but that seems incorrect. I would expect the Dimension height and width to be relative to the graphics screen as well.
    I’d appreciate it greatly if you could provide a ruling on this that I could take back to them (and others).
    Thanks.

    You would have to check with the manufacture of your system to see if they have an app available in the Apple App store to access their system. Since you do not indicate the system name or other information, you would need to also search the app store based on the answer the manufacturer provides for you. No one here would be able to guess at what you have.

  • Selecting a coordinate system

    Oracle 9i provides a big set of projected and geodetic coordinate systems. We've got a database full of points (latitudes and longitudes), mostly in the USA, and we're adding Oracle geometries to our database so we can do spatial indexing and quick nearest neighbor calculations. We want to use a projected coordinate system, for speed, but the question is: What's the best coordinate system for our purpose?
    Most of our locations are < 10 miles apart, so we probably don't need location-specific projections like "Massachusetts Mainland Zone" .. unless there's a way to let Oracle decide which projection to used based on the latitude/longitude (that would be nice, eh?)
    Anyway, I'm just a bit overwhelmed by the number of options here, as usual with Oracle.
    Thanks!
    Greg

    Hi,
    I'm not an expert on coordinate systems, but at first look I would leave the data in long/lat and
    use a geodetic R-tree index. R-trees are excellent for nearest neighbor calculations, and
    although it does take Spatial a bit longer to do the distance calculations for geodetic data
    vs. projected data, the simplicity and accuracy of the solution would be compelling reasons
    to leave the data as is. Also, unless the data is extremely dense the extra time associated with
    geodetic distance calculations will get lost in the noise. The best case would be if the query
    window is also a point - the timing will degrade if the query window is a complex polygon.
    Any single projection for an area as large as the US will have distortions that may effect the
    validity/accuracy of the data, but it will be fast...
    Hope this helps,
    Dan

  • Invalid Coordinate System??

    Hey,
    I have made a very simple script in the vision assistant tool - when I run it within the tool, everything is fine - but when I put it in my VI, I get an "Invalid Coordinate System" error.
    What I am trying to do is to first have a pattern matching to locate my object, then I want to set a coordinate system based on that, and use that for a reference for the rest of the script - but no matter what I try, the "set coordinate system" outputs "NaN" - eventhough the pattern matching is working perfectly.
    any ideas?
    Solved!
    Go to Solution.
    Attachments:
    1.png ‏85 KB
    2.png ‏17 KB
    3.png ‏15 KB

    muks wrote:
    Try by creating a labVIEW vi from vision assistant.
    you mean: right click, "open front panel" - right?
    this is what I got - no change
    Attachments:
    Untitled 5.vi ‏56 KB
    Skærmbillede 2014-06-22 kl. 20.22.54.png ‏122 KB

  • Coordinate Systems with Java?

    Hi,
    my Question is, if Java provides an easy realization of creating coordiante systems?
    I need to write a Tool that reads Information from a Database an displays parameters in a coordinate system.
    Is Java a good choice for that?
    Thx
    Naggi

    I don't quite get what you mean by coordinate systems, but I assume Java would be suitable for that sort of stuff.

  • Best POS system for use with Mac?

    What is the best POS system for use with Mac?  Using Quickbooks and paper invoices and inventory.  Would like to upgrade to POS system.

    Ideally it is best to have seperate (discreet) EHD's for a PC and Mac due to their differences in HD formatting. However, this is not always feasable but there are alternative solutions availble. Among those are:
    Creating and useing a Dropbox account that can be shared by PCs, Macs, IOS and Android devices. Dropbox allows for 2GB of free storage and additional storage is available for a small monthly fee.
    Another possiblity is formating an EHD so that it may be shared by both a PC and Mac, this format is FAT 32. The downside of doing this is the size of the files written to the HD are limited to 4GB.

  • Keyboard "use F-keys as standard function keys" setting gets reset on system restart

    Hi all,
    I have set in system preferences -> keyboard to "use f1, f2 etc. keys as standard function keys" or rather I want to keep this setting set but unfortunately this gets reset on each restart-
    I'm wondering what happened, this used to work initially with Lion. I may have set somewhere something that resets this on each start but I have no clue what that might be.
    Machine iMac mid 2011, keyboard Apple alu keyboard with cable (pre-Lion layout).

    Thanks BDAqua...sure looked like the function had disappeared over time and appreciate the confirmaion. Hard to understand why a function like that would be taken away. The program I run uses function keys f3,f7,f11 and f23(shifted f11) and I have all working okay by turning them off in keyboard and mouse menus. The f23 is causing issued in that when I use shifted f11 the screen scrolls upward instead of passing along the f23 function. Looks like I will have to work around this since the operating system will not allow the function keys to just work "standard"...thanks by the way for the welcome...!!

  • How can I get the coordinate in the layer coordinate system while doing the iterate?

    I found that the position(x,y) the iterate function tell me is not right sometimes.
    Actually,it happens when the top of the layer is negative. The "y"is in the comp coordinate system(maybe?) but not the layer.In another word, the position with y=0 is not the top.
    More specifically, I have got the color map of a layer. I am able to get the color of any pixel in the layer. But I can't set the color one for one when I use "iterate",because there is an offset.
    Am I supposed to get the offset? Is there any way to access the whole layer directly if I use iterate function?

    so indeed it's the offset at play.
    AE will diminish the buffer at 20% increments, and not for each pixel that
    goes out of sight. it's not really in relation to the upper left corner,
    it's all about what part of your layer buffer is out of sight.
    there's also an "iterate offset function". check it out. perhaps it will
    save you some trouble.
    On Fri, Dec 19, 2014 at 2:45 PM, Hinanawi Tenshi <[email protected]>

  • Use of "IVA Coordinate System Mmanager"?

    I do not understand how the vi "IVA Coordinate System Mmanager" is used. When I do create the LV-code from the NI Vision Assistant it gives me following fragment:
    Here the "reference System" input is set (the x-/y axis) automatically to the value 562.95 and 558.641 (see picture above). What indicates those values if I do pattern matching? And to which values I need to set it for any image where I do pattern matching? The output of this vi gives me a cluster with the origin and the measurement system. Even I set those two values to 0/0 it gives me the corect and new coordinate system of the found pattern but I'll get an NaN if I use the same function (pattern matching) twice in a row for a different image. In both cases NI Vision Assistant sets those two default values automatically.
    thanks..!

    I have attachted a script file. Here u can see that the coordinates for the reference system has been set to the values where the coordinate system is.
    Question: Why are this coordinates (87.45/221) already set? Does it matter if I set the values for the reference system to 0,0?
    best regards
    Attachments:
    test.vi ‏58 KB

  • 1.5 How to globally set the System Cache location

    FROM ANOTHER USER ON ANOTHER BOARD:
    This one did not get answered completely.
    ************************* Question:
    Hello,
    I want to deploy JWS on a client PC with Microsoft XP OS. This client have multiple users. JWS put a file deployment.properties in the directory "documents and setting" for the current user.
    How can I create a uniquely file deployment.properties for all users of this client (new and existing profiles) ?
    Create a directory "documents and setting/all users/application data/sun/java/deployment/" with the file deployment.properties don't work.
    Create a directory "documents and setting/default user/application data/sun/java/deployment/" with the file deployment.properties is working but is not good for the existing users. This is good uniquely for new users.
    is there a solution ?
    King regards,
    funchung
    ************************* ANSWER:
    For windows, the system config file is at:
    {Windows Directory}\Sun\Java\Deployment\
    The value of the {Windows Directory} is determined by using the Win32 API GetWindowsDirectory.
    So for example, on XP, the system config file is:
    c:\WINDOWS\Sun\Java\Deployment\deployment.properties
    The settings in this system config file will be used by all users on the system.
    ***************************** HIS REPLY
    I've tried this and it doesn't seem to work.
    I've also tried createing a deployment.config file as per the http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/properties.html article and this doesn't work for me.
    Has anyone done this successfully??
    ******************************** MY REPLY:
    This is true.
    I can get the system install to work if I add the parameter:
    deployment.system.cachedir=C\:\\testcache
    to the deployment.properties file found under:
    C:\Documents and Settings\username\Application Data\Sun\Java\Deployment
    but it will NOT work by adding it to the:
    C:\WINDOWS\Sun\Java\Deployment
    directory. It just creates a new default one in the user's folder.
    What am I doing wrong?
    If there is not a way to globally set the System Cache location, then this isn't much better than the user cache for being able to "install" the software once on the PC and let any user that signs in access that application.
    We had high hopes for this, since this functionality was taken away from us once the java cache started being stored in the user's folders.
    More details:
    I just tried setting the mandatory=true setting and it tells me that it is not allowed to start because it can't find the
    deployment.properties in the same folder (full path is displayed) but I know it is there, because it is the same folder. I even double checked the spelling.
    Maybe there is a bug in the way it finds that properties file, or maybe I need to include something in that file that I didn't find in documentation?
    All it has in it is the one line:
    deployment.system.cachedir=C\:\\testcache
    Can anybody help shed light on this?
    It seems to be a bug that it can't find the deployment.properties file in the 'system' folder.
    -Chris

    I now found more on another thread:
    http://forum.java.sun.com/thread.jspa?messageID=3500778&#3500778
    You can close this one.
    Sorry.

  • The File Replication Service has detected that the replica set "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)" is in JRNL_WRAP_ERROR.

    Hi!
    I recently took over management of a Windows 2003 domain that had only one domain controller.  I was building a second DC for redundancy and discovered that the SYSVOL share on the original DC is in "JRNL_WRAP_ERROR" after the SYSVOL and NETLOGON
    share would not create on the new DC.  This error goes back as far as the log goes back so I don't know how long it has been in this state. 
    The message in the event log states to enable "Enable Journal Wrap Automatic Restore" but I found a KB article that says to use the BurFlags key instead. http://support.microsoft.com/kb/290762
    Should I run an authoritative restore since I don't have another domain controller with a good SYSVOL?
    The File Replication Service has detected that the replica set "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)" is in JRNL_WRAP_ERROR.
     Replica set name is    : "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)"
     Replica root path is   : "c:\windows\sysvol\domain"
     Replica root volume is : "\\.\C:"
     A Replica set hits JRNL_WRAP_ERROR when the record that it is trying to read from the NTFS USN journal is not found.  This can occur because of one of the following reasons.
     [1] Volume "\\.\C:" has been formatted.
     [2] The NTFS USN journal on volume "\\.\C:" has been deleted.
     [3] The NTFS USN journal on volume "\\.\C:" has been truncated. Chkdsk can truncate the journal if it finds corrupt entries at the end of the journal.
     [4] File Replication Service was not running on this computer for a long time.
     [5] File Replication Service could not keep up with the rate of Disk IO activity on "\\.\C:".
     Setting the "Enable Journal Wrap Automatic Restore" registry parameter to 1 will cause the following recovery steps to be taken to automatically recover from this error state.
     [1] At the first poll, which will occur in 5 minutes, this computer will be deleted from the replica set. If you do not want to wait 5 minutes, then run "net stop ntfrs" followed by "net start ntfrs" to restart the File Replication
    Service.
     [2] At the poll following the deletion this computer will be re-added to the replica set. The re-addition will trigger a full tree sync for the replica set.
    WARNING: During the recovery process data in the replica tree may be unavailable. You should reset the registry parameter described above to 0 to prevent automatic recovery from making the data unexpectedly unavailable if this error condition occurs again.
    To change this registry parameter, run regedit.
    Click on Start, Run and type regedit.
    Expand HKEY_LOCAL_MACHINE.
    Click down the key path:
       "System\CurrentControlSet\Services\NtFrs\Parameters"
    Double click on the value name
       "Enable Journal Wrap Automatic Restore"
    and update the value.
    If the value name is not present you may add it with the New->DWORD Value function under the Edit Menu item. Type the value name exactly as shown above.

    > The message in the event log states to enable "Enable Journal Wrap
    > Automatic Restore" but I found a KB article that says to use the
    > BurFlags key instead.
    http://support.microsoft.com/kb/290762
    >
    > Should I run an authoritative restore since I don't have another domain
    > controller with a good SYSVOL?
    The automatic restore process AFAIK will initiate a D2 restore. And if
    there's no other DC, sysvol might be gone.
    I really would prefer to have control - this means I would do a D4.
    Absolutely I would :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Event ID - 13568 The File Replication Service has detected that the replica set "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)" is in JRNL_WRAP_ERROR.

    We had a major storm over the weekend which caused an unexpected shutdown.
    I am having an issue with one of my domain controller with Event ID 13568
    The domain controller which is running Windows Server 2012 was added successfully just a couple of days ago.
    I do not have a full backup of the server yet.
    It only has a GC role on it.
    What are the things I should look out for before I attempt to Enable Journal Wrap Automatic Restore and set it to 1?
    Would it be safer to just demote the server and start from scratch?
    Thank you all for reading!
    Mladen
    The File Replication Service has detected that the replica set "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)" is in JRNL_WRAP_ERROR.
     Replica set name is    : "DOMAIN SYSTEM VOLUME (SYSVOL SHARE)"
     Replica root path is   : "c:\windows\sysvol\domain"
     Replica root volume is : "\\.\C:"
     A Replica set hits JRNL_WRAP_ERROR when the record that it is trying to read from the NTFS USN journal is not found.  This can occur because of one of the following reasons.
     [1] Volume "\\.\C:" has been formatted.
     [2] The NTFS USN journal on volume "\\.\C:" has been deleted.
     [3] The NTFS USN journal on volume "\\.\C:" has been truncated. Chkdsk can truncate the journal if it finds corrupt entries at the end of the journal.
     [4] File Replication Service was not running on this computer for a long time.
     [5] File Replication Service could not keep up with the rate of Disk IO activity on "\\.\C:".
     Setting the "Enable Journal Wrap Automatic Restore" registry parameter to 1 will cause the following recovery steps to be taken to automatically recover from this
    error state.
     [1] At the first poll, which will occur in 5 minutes, this computer will be deleted from the replica set. If you do not want to wait 5 minutes, then run "net stop ntfrs"
    followed by "net start ntfrs" to restart the File Replication Service.
     [2] At the poll following the deletion this computer will be re-added to the replica set. The re-addition will trigger a full tree sync for the replica set.
    WARNING: During the recovery process data in the replica tree may be unavailable. You should reset the registry parameter described above to 0 to prevent automatic recovery from
    making the data unexpectedly unavailable if this error condition occurs again.
    To change this registry parameter, run regedit.
    Click on Start, Run and type regedit.
    Expand HKEY_LOCAL_MACHINE.
    Click down the key path:
       "System\CurrentControlSet\Services\NtFrs\Parameters"
    Double click on the value name
       "Enable Journal Wrap Automatic Restore"
    and update the value.
    If the value name is not present you may add it with the New->DWORD Value function under the Edit Menu item. Type the value name exactly as shown above.

    I set Enable Journal Wrap Automatic Restore to 1 and it was
    successful.
    I will monitor it to make sure it does not occur again.
    Thanks everyone on your replies
    Mladen

  • Coordinate system

    I am having trouble getting my local-world-view-screen matrix setup right.
    First, coordinate system is:
    +x to the right
    +y down
    +z into the screen
    right? this is what I get from Vector3D class.
    But now that I am thinking of it DirectX and OpenGL have different coordinate systems so how does Molehill work that out?  Do I need to know what API I am runnging to transform to screen space?

    Yes things are starting to look better now. Thanks you both.  I incorrectly assumed the coordinates system was as described in the Vector3D class docs.
    I have a cube with each side a different color and now it appears oriented as expected.
    Now I am appending a view-screen matrix built using lookAtRH().  I create an eye position Vector3D that rotates around the Up/Y axis, looking at (0,0,0) and there is nothing on screen.  I looked at my DirectX engine lookAtRH() equivalent function and notice that in the Molehill implementation there is:
    _w,x = _x.dotProduct(eye);
    _w,y = _y.dotProduct(eye);
    _w,z = _z.dotProduct(eye);
    _w,w = 1.0;
    but in the directX version it is expressed as the negative of the dot products, i.e.:
    _w,x = -_x.dotProduct(eye);
    _w,y = -_y.dotProduct(eye);
    _w,z = -_z.dotProduct(eye);
    _w,x  = 1.0;
    so I tried this and the cube appears on screen!!, however the camera is not rotating around the Y axis it is rotating around the cube off-axis.
    Have you used the lookAtRH() method and had good results, or are you using your own math?
    Does the matrix from lookAtRH() get appended to the stack or do I invert this matrix and append it?
    I am not an expert at the math, but have been able to work this out on PS2, PSP, OpenGL, DirectX, WPF, and now it is Molehill. I know that the PerspectiveMatrix3D.as is in progress because I have gotten it from several sources/example programs and I see for instance that the OrthoRH() method has a typo/bug in it that was fixed in the teapot example.
    Any help is appreciated!!

Maybe you are looking for

  • EJB 3.0 specification is finalized??

    Hi, We have a new J2EE proyect, we planning make it with EJB 3.0,but i dont know, this specification is finalized?? we are looking for application servers, we work with WebLogic, but yet no have full support to EJB 3.0. I dont nkow that use j2ee ejb

  • External Hard Drive Re-format for Mac and PC?

    Hi, This is probably a simple enough question to be answered: I want to format a new 1TB Hard drive so that it will work on both Mac and PC, I know FAT32 would work, but I need a format that will support files over 4gb (which FAT32 does not). Any hel

  • Send email with attachment

    Hi, I like to send a e-mail with or without attachment. I succesfully implemented the ISendMailService, but after a little research it seems to me that it is not possible to add an attachment. After searching on SDN I found information about Collabor

  • TREX Engine not working in PI

    Hi Experts ,   My team has configured TREX with PI, to monitor PI messages.      I can see that , unlike the Integration Engine which has about 190000 messages,  there were no messages indexed for Adapter Engine, is this expected ?   Am I missing som

  • Resolution with VGA adapter!

    Hi all! I've got a MacBook Pro with Lion and i had bought an adapter to VGA for use my screen whose resolution is 1680x1050. The problem is the next: Preferences panes only shows me how max. resolution in monitor 1920x1080 but my screen don't accept