Finding XY point in a CWIMAQView​er

I have a CWIMAQViewer and I want to use the POINT tool to place little X's. When I make a click with my mouse I want to get what the X and Y is of that position from within the CWIMAQViewer. Just like the SHOW TOOL INFO does. But how do I easily do that in code? The X and Y parameters passed into the Mousedown function of the Viewer are unfortunately Coords for the Whole Screen.
It's funny. When a method like .DrawTExt is used it can get it's Origin point right from teh .Regions(#) of the click point. But I can't seem to pull the X and Y out of the .REgions. Perhaps by getting the Bounding Rectangle I could find the XY of the point.
There must be a simpler way to figure out where the Cursor is in the Viewer. The TOOL info on the bottom of the Viewer can, so I should be able to get that in code somehow.
Thanks.

Hello,
Vision 7.0 was designed for, and can only be used with, LabVIEW.  Vision 7.1 is an integrated API that can be used with LabVIEW, Visual Basic, or C.  Prior to Vision 7.1, you would need to use Vision 6.0 for Measurement Studio.  Upgrading to Vision 7.1 would allow to develop in LabVIEW or Visual Basic and it would also allow you to make use of the NI-IMAQ for USB Cameras driver that is available at:
http://sine.ni.com/apps/we/niepd_web_display.DISPL​AY_EPD4?p_guid=ED6942DF78E34659E034080020E74861&p_​...
Depending on the type of data that is returned from the DLL that you call, you may need to convert the data into the image datatype.  This can be done by using IMAQ Create and passing the image output into the IMAQ GetImagePixelPtr function.  You can then pass that image pointer to the DLL function that you use to acquire a new image.  Once the DLL call completes, the memory location specified by the GetImagePixelPtr will contain the image data and the image specified with IMAQ Create will reference that memory.
For an example on how to use these functions, take a look at the IMAQ GetImagePixelPtr example that is located in the IMAQ Vision for LabVIEW VI Reference Help.  This example can also be found by looking at the context help for the function and clicking on "Click here for more help." 
Regards,
Scott R.
Applications Engineer
National Instruments

Similar Messages

  • How to find a point lies inside circle

    Hi,
    How do I find a point (x,y) is lies inside a circle? I trying to do a small shooting game.
    If the user clicks inside the circle they get a point. I am using the Pythagoras theorem to achieve this. But I can't.
    Please advice me.
    Here is my code
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Shoot extends JFrame implements MouseListener, MouseMotionListener
        private int winWidth = 300;
        private int winHeight = 300;
        private MyCanvas canvas = null;
        private int ballX = 50;
        private int ballY = 50;
        private int ballW = 50;
        private int ballH = 50;
        private int ballR = ballW / 2;
        private int curX = 0;
        private int curY = 0;
        private int left = 0;
        private int top = 0;
        public Shoot()
            Cursor c = new Cursor(Cursor.CROSSHAIR_CURSOR);
            this.setCursor(c);
            canvas = new MyCanvas();
            packIt();
            left = getInsets().left;
            top = getInsets().top;
        private void packIt()
            setTitle("My first game!");
            setPreferredSize(new Dimension(winWidth, winHeight));
            setSize(new Dimension(winWidth, winHeight));
            setContentPane(canvas);
            addMouseListener(this);
            addMouseMotionListener(this);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //setUndecorated(true);
            setLocation(300, 0);
            setVisible(true);
        public void mouseClicked(MouseEvent e)
            int x = e.getX() - left - ballX;
            int y = e.getY() - top - ballY;
            int r = ballR;
            System.out.println("x :" + x + "\ty :" + y);
            //Trying to implememt Pythagoras theorem. But I am missing something.
            System.out.println(((x * x) + (y * y)) + "\t=\t" + (r * r));
            System.out.println();
        public void mousePressed(MouseEvent e)
        public void mouseReleased(MouseEvent e)
        public void mouseEntered(MouseEvent e)
        public void mouseExited(MouseEvent e)
        public void mouseDragged(MouseEvent e)
        public void mouseMoved(MouseEvent e)
            curX = e.getX() - left;
            curY = e.getY() - top;
            canvas.repaint();
        private class MyCanvas extends JPanel
            public MyCanvas()
                setBackground(Color.BLACK);
                setBorder(BorderFactory.createLineBorder(Color.yellow));
            public void paintComponent(Graphics g)
                super.paintComponent(g);
                g.setColor(Color.WHITE);
                g.drawString("x :" + curX, 10, 20);
                g.drawString("y :" + curY, 10, 30);
                g.setColor(Color.RED);
                g.fillOval(ballX, ballY, ballW, ballH);
        public static void main(String[] asd)
            new Shoot();
    }

    public boolean isPointInCircle(){
        double x= circle.getWidth/2.0+circle.getX();
        double y= circle.getHeight/2.0+circle.getY();
        double distance=getDistance(x,y,pointX,PointY);
        return (distance<= circle.getWidth/2.0); //if the distance from the point to the center of the circle is less than the radius of the circle return true
    double getDistance(double x1, double y1, double x2, double y2){
        return math.sqrt((x1-x2)(x1-x2) + (y1-y2)(y1-y2));
    }Edited by: ghostbust555 on Jan 23, 2011 3:20 PM

  • Did not find EXT_REFERENCE_ID pointed to by field C1_EXT_REFERENCE_ID

    I have WebLogic 32 bit installed on a Windows XP 32 bit platform. And CCB V2.2.0.
    Upon startup in WebLogic, I get the following error message in the Domain Diagnostic Log file of Web Logic;
    101162 User defined listener com.splwg.base.web.startup.SPLWebStartup failed: com.splwg.shared.common.LoggedException: The following stacked messages were reported as the LoggedException was rethrown: com.splwg.base.web.startup.PreloadLoginInfo.preloadFieldMetaData(PreloadLoginInfo.java:150): Unable to preload navigation keys and web pages com.splwg.base.support.context.SessionExecutable.doAsReadOnlyInCurrentSessionIfAvailable(SessionExecutable.java:54): Error caching field metainfo com.splwg.base.web.common.FieldMetaDataRepository$FieldRetriever.execute(FieldMetaDataRepository.java:99): Caught exception from SessionExecutable.execute() The root LoggedException was: Did not find base field 'EXT_REFERENCE_ID' pointed to by field 'C1_EXT_REFERENCE_ID'.
    A user, ChesPlay, suggested that I install FrameWork Service Pack 10 from the Oracle MetaLink site. *(ChesPlay...thanks for your help!)*
    I completed the install yesterday, but still get the same error.
    First, I verified that I had already installed the Prerequisite Single Fixes 7195518. 7012092, 7284592 per SP10 install instructions.
    Second, I installed the Prerequisite Single Fix 10124173 before installing Service Pack 10.
    The following are the last few bug installations from Service Pack 10 and these are from my <SPLBASE>\etc\installed_fixes.txt file (I included these to show that SP10 installed OK);
    10215923
    10424723
    10262588
    10333081
    11069455
    10374823
    10428564
    11682732
    9943861
    9843154
    10235499
    I queried the ci_ut_instl database table to show the last few database updates that were installed from Service Pack 10;
    10270627
    9442145
    8632929
    10183805
    8486799
    9947280
    10116686
    ChesPlay, you asked if I had installed DB SP1, and I am thinking that this would be included inside the DB SP10 that I just installed. There was a database upgrade in FW SP10. I queried some defects that would have been corrected around the time we did the initial install and installed FW SP1, and those DB corrections are;
    SR_NO
    6089943
    6320038
    6508751
    6690631
    6732352
    6741522
    6746717
    6752806
    6753590
    6762978
    6769161
    6769237
    6779293
    6779801
    6781657
    6818630
    6823390
    6849474
    6852874
    6870669
    6906144
    6939345
    6941618
    6979608
    6995839
    7003470
    7014765
    7026277
    7381045
    7381047
    7381055
    7381058
    7382787
    7384954
    7388487
    7391086
    7391288
    7407889
    7413910
    7418119
    7428875
    7438467
    7441512
    7448408
    7456024
    7462902
    7484097
    7493378
    7494737
    7500660
    7503581
    7509645
    7527185
    7534015
    7568961
    7569426
    7582167
    7588967
    7592708
    7594026
    7599841
    7599984
    7613246
    7616144
    7624052
    7633553
    7635383
    7649695
    7677265
    7679057
    7026919
    7037953
    7111539
    7233235
    7256221
    7293343
    7310420
    7322924
    7332542
    7357736
    7503171
    7503377
    7510815
    7520424
    7568016
    7593173
    7594038
    7671757
    7827664
    8251286
    8260929
    8268874
    8273106
    8291086
    8392040
    6937115
    6979711
    6999033
    7041838
    7109393
    7175088
    7176465
    7189056
    7189062
    7189066
    7228406
    7240901
    7247174
    7247901
    7253983
    7254315
    7259747
    7263367
    7275778
    7277602
    7279706
    7281406
    7281654
    7286107
    7288370
    7298418
    7316562
    7316681
    7323846
    7332558
    7332907
    7344408
    7346424
    7353257
    7356312
    7357247
    7359107
    7375159
    7381041
    9300696
    9309747
    9340118
    9395985
    9400236
    9492363
    9526408
    9647138
    9654108
    9664482
    9698293
    9709303
    9712403
    9825630
    7679562
    7687196
    7687438
    7687453
    7710475
    7774775
    7811967
    7831369
    7911307
    7924667
    8206476
    8226523
    8235853
    8256491
    8273340
    8280748
    8284128
    8289639
    8292263
    8301127
    8307872
    8321198
    8339901
    8344477
    8350640
    8350682
    8403219
    8426144
    8426309
    8443509
    8445514
    8445531
    8484901
    8490758
    8496724
    8503323
    8532198
    8546929
    8568639
    8569825
    8572542
    8574743
    8593280
    8595554
    8596468
    8603598
    8603640
    8619605
    8628607
    8631398
    8654780
    8676657
    8710499
    8734027
    8743059
    8743999
    8811818
    8958357
    9017242
    8738911
    8754679
    9006753
    9032536
    9104466
    9110525
    9124362
    9131056
    9211751
    9213966
    9267200
    9280101
    9290639
    I am headed to MetaLink now for further research on the "Did not find EXT_REFERENCE_ID pointed to by field C1_EXT_REFERENCE_ID" message to see what else I might need to install. I'll update this thread if/when I figure out the problem.
    Chesplay if you have another idea, or believe that there is a seperate DB SP1 on MetaLink, please advise. I was not able to find a seperate DB SP1 on MetaLink today. Thanks!

    For me even the issue was solved when i apply the db portion of patch 7009370. But when i log in to the application i could see ablank pages, the menus were not loading up and i was getting error:
    SYSUSER - 313876-67-1 2011-03-05 23:12:11,721 [[ACTIVE] ExecuteThread: '2' for q
    ueue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dynamicui.NavMetaDataH
    older) Error getting navigation info for navigation key userPortalPage
    SYSUSER - 313876-67-1 2011-03-05 23:12:11,737 [[ACTIVE] ExecuteThread: '2' for q
    ueue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dynamicui.XSLTExtensio
    nHelper) XSLT Extension error getting program component meta data for userPortal
    Page
    file:/C:/spl/CCBDEMO/splapp/servers/myserver/tmp/_WL_user/SPLWeb/yge362/war/WEB-
    INF/uiXSL/tabMenu.xsl; Line #279; Column #116; com.splwg.shared.common.LoggedException:
    The following stacked messages were reported as the LoggedException was rethrown
    com.splwg.base.web.dynamicui.XSLTExtensionHelper.privateProgramComponentExtensio
    n(XSLTExtensionHelper.java:66): XSLT Extension error getting program component m
    eta data for userPortalPage
    The root LoggedException was: Error getting navigation info for navigation key u
    serPortalPage
    file:/C:/spl/CCBDEMO/splapp/servers/myserver/tmp/_WL_user/SPLWeb/yge362/war/WEB-
    INF/uiXSL/tabMenu.xsl; Line #279; Column #116; java.lang.NullPointerException
    To overcome the above issue i applied the db portion of the patch 8608149 by following below steps:
    1.
    DELETE FROM CI_UT_INSTL WHERE SR_NO LIKE '8608149%';
    DELETE FROM CI_UT_INSTL_DTL WHERE SCRIPT_FILE_NAME LIKE '8608149_RS1%';
    COMMIT;
    2.Apply the patch 8608149.

  • What to do on the message " AppleSyncNotifier.exe – Cannot find starting point of [sqlite3_wal_checkpoint] from DLL SQLite3.dll

    컴퓨터를 부팅하면 다음 메시지가 나오네요 " AppleSyncNotifier.exe – 시작시점 sqlite3_wal_checkpoint을(를) DLL SQLite3.dll에서 찾을 수 없습니다."
    Upon booting, I see the message " AppleSyncNotifier.exe – Cannot find starting point of [sqlite3_wal_checkpoint] from DLL SQLite3.dll

    With that one, I'd first try uninstalling and reinstalling your MobileMe Control Panel for Windows. Does that clear up the error?

  • I paid for diamond in games nubee.monsterblade but until now i can not find this points in my game account

      i paid for dimond in games nubee monsterblade about 4$
    but until now i can not find this point in my game account
    thanks

    If you haven't received the item then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How to find inflection point in graph when dx is very small

    Hello,
    I'm trying to sort through position data from a feedback pot to calculate linearity of movement as part of a testing procedure. An image of the data is attached. I want to delete all data in the 'flat' part, in order to do a linear fit and R^2 of the sloped line.
    This is made trickier by the fact that the number of samples, the start and end points, and slope of the line can all vary considerably. Therefore I need some way to find the 'knee' in the graph and remove all subsequent samples from the data. 
    The most obvious method I tried was to use a derivative to find the inflection point, but since I have so many data points, the dx is very small
    (~0.05) when using the built-in labview derivatives. This means that I can't distinguish the inflection point from any other change in the values due to noise or change in velocity. I made my own derivative function, which was a newton quotient that looked at (xi+N)-(xi-N) instead of (xi+1) - (xi-1), but this still did not give good results. My next idea is to just look at the difference of every N points, and arbitrarily decide a threshold to indicate when it has levelled off. Any other ideas would be really helpful though.
    Thanks,
    -SK-
    Attachments:
    position.PNG ‏17 KB

    Lets see if I can answer without having to write a book.
    Fisrt I'd run the data through a zero-phase shift low pass filter. Then look at the 2nd derivative to find the knee. Using a zero-pahse shift fileter I was able to detect when a value was jumping up when it started to jump rather than after. THis thread may be interesting.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to find nearest point on polyline

    Hi,
    I have to find the nearest point to my standing point on a polyline. I have Oracle Locator installed, but my data is not in a locator format. Is it possible to do this by using Locator's functionality by for example puting the polyline and standing point coordinate values into a spatial type variable and calling some locator functionality?
    Or I have to coordinate data into a "spatial enabled" table, create spatial index etc and then call some Locator procedure.
    Tamas

    Luc,
    Thanks for the reference.
    When the data is converted, finding the nearest vertex in an sdo_geometry object could be done this way (of, of course, many):
    select f.vertex_id,f.dist,f.min_dist,f.a_vertex
      from (select p.vertex_id,
                   sdo_geom.sdo_distance(p.the_point,p.a_vertex,0.005) as dist,
                   min(sdo_geom.sdo_distance(p.the_point,p.a_vertex,0.005)) over (order by sdo_geom.sdo_distance(p.the_point,p.a_vertex,0.005) asc) as min_dist,
                   p.the_point,
                   p.a_vertex
              from (select t.id as vertex_id,
                           mdsys.sdo_geometry(2001,NULL,mdsys.sdo_point_type(358615,5407047,null),null,null) as the_point,
                           mdsys.sdo_geometry(2001,NULL,mdsys.sdo_point_type(t.x,t.y,t.z),null,null) as a_vertex
                      from table(sdo_util.getVertices(
                                MDSYS.SDO_GEOMETRY(2002,null,null,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1),MDSYS.SDO_ORDINATE_ARRAY(362253.9,5409676.63,355608.12,5407615.16,358063.37,5407673.48,355276.53,5407361.08,360471.08,5408880.79,362483.4,5406024.69,362359.16,5408840.11,354570.21,5406219.18,360204.62,5405849.14,359214.51,5408283.5,358761.06,5406683.88,356739.05,5405590.46,358615.79,5407047.29,355978.02,5407326.33,356240.87,5409898.7,363159.35,5405510.46,358588.81,5406536.54,354822.42,5408643.75,357690.2,5408872.57,359839.29,5407253.86,355236.29,5409711.53,355342.54,5407448.87,360290.53,5405111.51,354677.02,5407916.83,361651.27,5409178.26,361730.18,5407553.5,357402.33,5409065.5,361546.51,5407278.41,361915.65,5408942.57,361974.74,5405464.91,357794.3,5406979.33,356106.58,5405481.32,357604.96,5407407.72,360718.31,5406765.8,359745.49,5406568.16,363005.29,5407557.46,355844.01,5407095.47,362749.66,5405041.82,359714.13,5408898.69,354509.69,5406113.6,360041.59,5406204.24,360380.17,5408751.21,356621.4,5409603.06,355156.27,5405401.98,354441.35,5409090.68,356376.45,5407472.81,363877.1,5405582.72,361883.83,5409696.17,356363.41,5406434.53,362078.96,5406617.37,362714.59,5409800.2,362703.49,5408513.33,358317.64,5408170.64,359294.27,5409197.53,360240.93,5406333.84))
                                )) t
                    ) p
            ) f
      where f.dist = f.min_dist;Hope this helps.
    Simon

  • How to find intersection point between a lineseries and a vertical line.

    I have a lineseries chart (refer the screenshot). As I move the spend slider shown in the attachment, a vertical line is drawn in the chart. (I did this using the cartesian canvas as annotation element - using canvas.moveTo(), canvas.lineTo() functions)
    I want to find out the intersection point(y value) where the vertical line meets the lineseries. Can someone help me on this. It will be really helpful.
    Thanks,
    Jayakrishnan

    Here are a few functions I wrote years ago for common chart transformations... the function you're going to focus on for your solution is chartToScreen...
    *  Converts the screen position to chart value position
    *  @param thePos - Number - The position you want to convert
    *  @private
            private function getChartCoordinates(thePos:Point):Object
                   var tmpArray:Array = dataTransform.invertTransform(thePos.x, thePos.y);
                   return {x:tmpArray[0], y:tmpArray[1]};
    *  Takes a non-numeric chart value and returns a proper numeric value
    *  @param inValue - String - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param theAxis - IAxis - The axis on which we're looking
              public function getNumericChartValue(inValue:String, theAxis:IAxis):Object
                   var axisCache:Array = new Array({inValue: inValue})                 
                   if(!(theAxis is LinearAxis))
                        theAxis.mapCache(axisCache, "inValue", "outValue", true);
                        return {numericValue: axisCache[0].outValue}
                   else
                        return {numericValue: Number(inValue)};
    *  Converts the chart values into screen coordinate values
    *  @param chartX - Number - The display name of the instance showing on the axis (eg. if we're showing months, it might be 'Sep - 06'
    *  @param chartY - Number - The axis on which we're looking
              public function chartToScreen(chartX:Number, chartY:Number, theSeries:Series):Point
                   var tmpCache:Array = new Array({chartX:chartX, chartY:chartY});
                   if(theSeries)
                        theSeries.dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   else
                        dataTransform.transformCache(tmpCache, "chartX", "screenX", "chartY", "screenY");
                   return new Point(Math.round(tmpCache[0].screenX), Math.round(tmpCache[0].screenY));
    *  takes a point in mouse position, and runs it through converting to chart coordinates, converts chart coordinate to numeric value if needed
    *  and then back into mouse position to get the nearest axis snap point
    *  @param thePoint - Point - The position we're converting
    *  @private
              private function getSnapPosition(thePoint:Point):Point
                   var chartPoint:Object = getChartCoordinates(new Point(thePoint.x, thePoint.y));
                   //if either of the axis chart results is not in numeric format, we get the numeric equivalent of it
                   var chartX:* = chartPoint.x;
                   var chartY:* = chartPoint.y;
                   chartX = getNumericChartValue(chartPoint.x, CartesianChart(this.chart).horizontalAxis).numericValue;
                   chartY = getNumericChartValue(chartPoint.y, CartesianChart(this.chart).verticalAxis).numericValue;
                   return chartToScreen(chartX, chartY, null);

  • Photosmart c309a can't find access point to Mac Mavericks OS

    I've owned probably ten HP printers.  I've been thru five of them in five years and I'm beginning to think I need another brand.   I have a 2010 Mac running Mavericks OS, a Netgear 802.11 wireless router, an Apple Air Port and Norton.  I installed the c309a All-in-One printer last year for the first time.  By spring of this year, the scanner function stopped working.  The other day, the printer wouldn't print.  I think the power plug might've come undone but I'm not sure.  I selected a new print queue as I've done in the past and still no connection with the printer.  I made sure connections were secure.  No luck.  I turned the printer off and restarted.  Still nothing.  I ran diagnostics: "Your HP printer cannot find your access point."  The Network Name (SSID) was not found.  I unplugged everything.  I uninstalled the software, I reinstalled the software.  Each time, the installation process would hang up at the configuration stage and the disc would spin and spin.  I tried connecting via USB to my Mac, but that failed too.  I rebooted my AirPort.  I even tried to manually enter the IP address on the AIO keypad.  No success getting the printer to recognize my Mac.  I succeeded at making an ad hoc connection using the wireless radio with hpsetup as the SSID.  The next day, when I needed to print, the hpsetup network option was unavailable and diagnostics told me the wireless radio wasn't working!  Per online forum suggestion, [edited reset instruction by Moderator]  That trick reset my wireless radio but still the c309a is unable to find my access point and I can't print using my 802.11 wireless.  If I can't solve this problem, I will not buy another HP printer.  I hope someone can help.  Thank you for your time.

    Hi @CluelessPackard ,
    I see that you are unable to setup the printer over the wireless network. I would really like to be able to help you resolve this issue.
    Restore the printer defaults.
    Go to Setup, Network, Restore Network Defaults.
    Print the Wireless Network Test.
    Go to Setup, Network, Advanced Setup, Wireless Network Test.
    If it passes, then it isn't a hardware issue with the printer.
    If it passes, setup the Adhoc connection again.
    Click the Airport on the top right corner on the Mac.
    Click on the HP printer from the list. (you won't be on the internet till this procedure is finished)
    Add the printer and try and print to see if the wireless is working properly.
    Check the Configuration Page for the printer's IP address.
    Go to Setup, Network, View Network Settings, Display Wireless Summary.
    If you have a valid IP address for the printer then try and access the Embedded Web Server for the printer.
    Type the IP address into your web browser's address bar. (Safari)
    When setting up the printer, it has to be setup on the main router not the extension.
    Go to the network tab along the top of the EWS.
    Click on Wireless Setup Wizard along the left hand side to begin configuring the printer.
    Apply your settings.
    You have now completed the Wireless configuration.
    Click the Airport on the top right corner on the Mac and select your network name.
    Click on the Apple.
    Click System Preferences, click the Printers and Scanners icon, then click the + sign, then select the printer from the list, make sure the printer listed beside use: shows the proper printer name, click on the add button. You might have to click on the drop down to select your printer.
    Test the printer.
    If you need further assistance, just let me know.
    Have a wonderful day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Find break-points source code (update rules, transfer rules)

    Hi all,
    Is there any effective and efficient way to find (active) break-points in source code, more specfic update rules, transfer rules or other objects where custom code is implemented? Or in other words look for strings in source code or programs.
    I looked and searched everywhere but could not find any answer.
    RSRSCAN1 (does not work)
    RPR_ABAP_SOURCE_SCAN (does not exist)
    We are on SAP BW 3.5 with SAP Basis 640.
    Thanks all.

    Hi,
    Try this
    1)  if you're checking any program from SE38 ..goto Utilities -> find in the source code-> give breakpoint and search.
    2) else. load data , Goto details tab in the monitor and right click on any of the data packages.
    Simulate update -> choose transfer rules or update rules for debuging.-> It will take you debuging screen. -> Create a watch point with key word "break-point" and execute (F8).
    It will go and stop where there is  "break-point"

  • Find A Point In number

    here is Query
    Select 23.25 from dual
    How can i Select only 23 from this number or 25 from this number .I mean to find the value after a point or before a point i number

    Hi,
    There are different possible ways, one would be :SQL> with t as (
      2  select 12.34 n from dual
      3  union all select 0.1234 from dual
      4  union all select 1234 from dual
      5  )
      6  select n
      7  ,regexp_substr(to_char(n,'fm9999999999999D999999999999'),'^\d*') before
      8  ,regexp_substr(to_char(n,'fm9999999999999D999999999999'),'\d*$') after
      9  from t ;
             N BEFORE                      AFTER
         12.34 12                          34
         .1234                             1234
          1234 1234
    3 rows selected.This returns before and after as strings.
    Or you could :SQL> with t as (
      2  select 12.34 n from dual
      3  union all select 0.1234 from dual
      4  union all select 1234 from dual
      5  )
      6  select n
      7  ,trunc(n) before
      8  ,n-trunc(n) after
      9  from t ;
             N     BEFORE      AFTER
         12.34         12        .34
         .1234          0      .1234
          1234       1234          0
    3 rows selected.this returns numbers

  • Itunes cannot find entry point object

    Hello, please help before I go insane
    I have a brand new Dell laptop and an iPhone 5c with a USB cable that has seen better days. It still charges, but not very consistently through a laptop and often comes up with 'the device you have plugged in has malfunctioned' or 'unknown device' but will occasionally work. I also have an iPad 2 which works absolutely fine.
    I have iTunes installed, the latest version, it was a struggle getting it to work without it just crashing initially, but after about 40 uninstalls, delete, redownload, reinstall etc I finally managed to get it to work. I plugged my phone in and got the message 'the procedure entry point _objc_load_image could not be located in the dynamic link library objc.dll.' and iTunes wouldn't recognise my iPhone although my laptop did. The message wouldn't go away so I downloaded the latest iTunes again, uninstalled and deleted using the wizard and then downloaded again. I did try using the 'repair' option, however it told me that 'the feature you are trying to use is on a network resource that is unavailable. Click OK to try again or enter an alternate path to a folder containing the installation package 'iTunes64.msi' in the box below' (I have no idea where to find iTunes manually).
    Anyway, after doing this 7 times after connecting my phone or my iPad into the computer and the same '_objc_load_image_' error coming up each time, and me then having the reinstall iTunes, I still cannot get it to read my phone or iPad.
    Someone help, I only have a laptop for 7 more days...
    P.S. I have tried searching the computer for .dll files but there is never any
    Thanks in advance

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • DMZ Client Deployment failing. Unable to find Management Point

    I'm trying to install SCCM 2012 R2 client to a server in our DMZ.  This server is in a workgroup.  I have been following this article
    http://nikifoster.wordpress.com/2011/01/31/installing-configmgr-clients-on-servers-in-a-dmz/ however the SCCM agent doesn't seem to be able to find the Management Point, which is on the internal LAN.
    Step so far
    1) Port 80 and Port 8530 opened on the firewall between the DMZ server and the Primary site server (bi-directionally).
    2) Host and LMHost file on the DMZ server updated with the IP address of the Primary site server (where the MP is located).
    3)Boundary created on the Primary site server to include the IP address of the DMZ server.
    4)Client install files copied locally to the DMZ server.
    5)Installed with the following command ccmsetup.exe /MP:servername SMSSITECODE=ABC DNSSUffix=contoso.com
    The client installs but does not pick up the correct site code.  On the site tab the settings are blank and I can't manually update them.  In the locationservices.log it looks like it assigns the server to the correct site and then the following
    error appears Failed to retrieve DNS service record.... Unable to to find Lookup MP in Registry,AD, DNS and WINS.
    I'm not using Certificates.  The DMZ server IP address can be resolved from the Management Point (which is the site server) and the DMZ server will resolve the Management Point address.
    Does anyone have any ideas what I've missed?
    Thanks in advance

    Also note the difference between /mp and SMSMP:
    http://blog.configmgrftw.com/ccmsetup-mp-and-smsmp/
    Both are required in this case.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Does this alow scrubing to find edit point?

    needed to edit wave form. best way to zero in on what I want is to scrub.
    I dont see any function for scrubing to find an edit point.
    am I just missing something?
    you have to be able to scrub back and forth to find a criticle edit point.
    cheers&aloha
    matt

    oh well.
    chalk up another "looser point" for the wonderfull folks at apple.
    apple ......are you listening?
    M
    p.s.
    thanx for the info hang time
    cheers&aloha

  • How to find enhancement point or enhancement section

    Hi,
                        If anybody is trying to make changes to the approved sale order it shows a message
                        "SALE ORDER APPROVED BY xx CHANGES NOT POSSIBLE".
                        i want to know where excatly the enhacement code is written.
    Thanks & Regards,
    vijay karri.
    Edited by: vijaykarri on Jul 8, 2010 11:39 AM

    Hi ,
    Please find in the Source code using Search Option with the Message String  Or Using the Message No and Whereused List .
    Regards,
    Kishore.S

Maybe you are looking for

  • BizTalk AS2 receive location (500.0 error) reported by eternal party when trying to reach BizTalk 2010.

     Hi There -  We are facing AS2 connection problem with one of our customers. Following is scenario. Problem Scenario – We BizTalk 2010 server with which we are trying to connect one of our customer’s bank for secure communication. Our UAT box  has b

  • JFileChooser problem - it will not display

    I have read the tutorial on JFileChoosers and understand the basics, however, my application will simply not display a File Chooser. I select the menu option "open file" and the command prompt window just spews out dozens of garbage. The code is belo

  • How to re-install all my items back to my iphone 4s

    Please can anyone help. I downloaded the new ios5.1 onto my iphone 4s, this resulted in my phone going in recovery mode.  I've restored my phone on another computer with itunes on it. How do I download all my items which are held in itunes back onto

  • How to execute SAPgui.exe from java code

    Hi All, Can any one provide me the exe file name of SAP GUI related. I need to call the SAP GUI related exe file from java. i tried with a small java prog which executes the exe files. it works fine with notepad.exe,javac.exe . But i am unable to exe

  • Design & Web Premium CS6 WIN UE reinstall

    I installed this on my computer and it is only a 32 bit and I now have a 64 bit.  I need to install this onto another computer now, that is better.  It was down by download.  I just need to be able to download it.  I have the serial number already.