How can i get access to a TABLE IN A TEXTOBJECT

Hello,
i want to edit the textobject1 on an existing report file.
In DIAdem 8 the script was for example:
    call GraphObjopen("textobject1")
      call TxtBufOpen 
        TxtBufFont="Arial"
        TxtBufFontSize=10
        call TxtBufNextLine
        x = Round(chdx(1,Cno("myErg_" & name)),2)
        call TxtBufTabCellSet(cstr(x),4,1)
Log file:
   "An der aktuellen Cursorposition befindet sich keine Tabelle!"
   "at the current cursor position there is no table"
How does it work in 10.2 to get access to a table in a textobject? There is no documentation for this case.
Regards  Bernard

Hello Bernhard,
during the last releases, a lot of the DIAdem modules have been completely revised which in some cases may have led to some old variables becoming obsolete.
To find out which variables a particular dialog is using you have two options: Open the configuration dialog and use the help button to gat a context sensitive help explaining all available parameters and options. Alternatively, press Ctrl&A inside the dialog to copy all variables to the Windows clipboard. Doing so with a Textobject and pasting the clipboard content into a script you will get the following:
Call GraphObjOpen("Text1")
  '------------------- Text -----------------------------
  TxtTxt           ="this is text"
  TxtFont          ="Arial"
  TxtSize          =3
  TxtColor         ="black"
  TxtColorRGB      =33554432
  TxtBold          =0
  TxtItal          =0
  TxtUndl          =0
  TxtStrOut        =0
  TxtFrame         =0
  TxtBackColor     =""
  TxtBackRGB       =0
  '------------------- Position -----------------------
  TxtPosX          =40.17
  TxtPosY          =62.39
  TxtAng           =0
  TxtRelPos        ="r-bot."
Call GraphObjClose("Text1")
Ingo Schumacher
Systems Engineer Sound&VibrationNational Instruments Germany

Similar Messages

  • My old computer had itunes and downloaded songs that I put on my ipod. My old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out and will not activate. How can I get access to my old songs on new computer.

    My old computer had itunes and downloaded songs that I put on my ipod. Well, my old computer got replaced years ago without saving hard drive info or passwords and my iPod burnt out years ago and will not activate. I now have a new computer and iPod and I have an iTunes account on my iPhone5. How can I get access to my old songs on new computer? Are they lost for good? I have no info about my old computer and old account.

    Downloading past purchases from the App Store ... - Support - Apple

  • If I own Adobe Photoshop Elements 12 and have it installed on my computer, how can I get access to Adobe Bridge without a monthly subscription?  Is there a way to use Adobe Photoshop and Bridge without paying a monthly fee?

    If I own Adobe Photoshop Elements 12 and have it installed on my computer, how can I get access to Adobe Bridge without a monthly subscription?  Is there a way to use Adobe Photoshop and Bridge without paying a monthly fee?

    Hi Jaclyn2,
    Please follow the steps mentioned in the kb: http://helpx.adobe.com/creative-suite/kb/error-update-server-repsonding-cs4.html .
    Regards,
    Romit Sinha

  • How can I get access back to sounds and lessons I have not downloaded before updating?

    When I purchased my Mac about two months ago, I had access to all of the lessons and sounds, I just had to download them.  I recently downloaded and installed the update and in doing so I lost access to sounds and lessons I had not downloaded.  It tells me that I need to purchase the sounds and lessons package.  How can I get access back since I have already purchased it?

    Apple does not support downgrading the iOS.
    Yes, iOS 7 looks quite different. But there are many new and valuable features. As time goes on you will not remember how it used to look.

  • How can i get access code to create ABAP Program ?

    hi guys ,
    How can i get access code for creating ABAP Program in my System.
    I am using SAP IDES 4.6 Version
    Please Help me out .
    Regards
    Raghu

    Hi Raghu,
    - license your system (http://service.sap.com/licensekey)
    - create a developer key (http://service.sap.com/sscr)
    - create a key for your ABAP program (httP://service.sap.com/sscr)
    Markus

  • I upgraded MacBook Pro (13-inch, Early 2011) to yosemite. I have no more access to Finder, App Store and some apps. Since I have no access to App Store I cannot download the missing  parts. How can I get access to App Store?

    I upgraded MacBook Pro (13-inch, Early 2011) to yosemite. I have no more access to Finder, App Store and some apps. Since I have no access to App Store I cannot download the missing  parts. How can I get access to App Store?

    Welcome to Apple Support Communities
    What do you mean by having no access to those apps? Can you start up your Mac and work with it, and only some OS X apps do not work?
    Anyway, what you can try is to reinstall OS X. To do this, hold Command and R keys while your Mac is starting up and reinstall OS X. You will not lose any file.

  • How can i get access code for SAP 4.7 IDES version ?

    How can i get the access code for SAP 4.7 IDES version ?
    Thanks

    Hello Rahul,
    If you have registered / licensed IDES Version.
    You can generate Access code for Developer / Objects from http://service.sap.com/sscr
    Regards ,
    Santosh Karadkar

  • How can I get the difference of  tables between two oracle server?

    We team have 2 oracle servers in the same version.
    one is develop server and the other is priduct server.
    I want to know what is difference in tables define between the two oracle servers.
    give me a method or a step or a sql script or a tool to compare these two set of tables.
    Edited by: Oracle-Sunmeng on Aug 1, 2012 6:36 PM

    Hi Sunmeng,
    Does Database Link exists between Databases ??
    If I am Clear, Are you looking Something like this.
    To Identify the tables difference, you can query the USER_TAB_COLUMNS view.
    SELECT DISTINCT table_name, 'User1' AS user_table
               FROM user_tab_columns
    UNION ALL
    SELECT DISTINCT table_name, 'User2' AS user_table
               FROM user_tab_columns@dblink
           ORDER BY 1;Which gets us all the Tables available in Both User. where you can filter based on what
    you require.
    Similary, you for column difference
    SELECT   table_name, column_name, 'User1' AS user_table
        FROM user_tab_columns
    UNION ALL
    SELECT   table_name, column_name, 'User2' AS user_table
        FROM user_tab_columns@dblink
    ORDER BY 1;If you need to count the no of columns in both Tables of different databases. Then try this,
    SELECT table_name, 'User1' user_name,
           (SELECT MAX (column_id)
              FROM user_tab_columns a
             WHERE a.table_name = b.table_name) colno
      FROM user_tables b
    UNION ALL
    SELECT table_name, 'User2' user_name,
           (SELECT MAX (column_id)
              FROM user_tab_columns@dblink a
             WHERE a.table_name = b.table_name) colno
      FROM user_tables@dblink b;And, what the Columns in both tables may be same but, if datatype and length of column differs ?????
    Thanks,
    Shankar
    Edited by: Shankar Viji on Aug 1, 2012 10:47 PM
    Edited by: Shankar Viji on Aug 1, 2012 10:49 PM

  • How can I get access to "beta" versions of JRE?

    Hello,
    Our company uses Java to develop the main application.   Sometimes we got bad surprises when new updates are released to public.
    We are planning to do advanced testing to avoid this kind of situation, but how can we find the next JRE version for testing?
    The Oracle website pointed me to the url: Java Early Access Downloads and then https://jdk7.java.net/ .  In the downloads section, I can find only the update 60 version for download, but I noticed the version that will be released to public will be the update 55.
    How can I test version update 55 of the JRE?  What is the correct procedure for testing further versions?
    Thanks!
    Almir

    7U55 will be a CPU release.  Generally, such releases are not made available to the public.

  • How can I get access to my Macintosh HD

    Hi!
    I tried to boot my Macbook, but it went straight to OS X Utilities. Now, i could not repair the disk called "disk0s2", and my Macintosh HD is not showing up on the left panel. I tried to reinstall the OS but the only HD that appeard were the Recovery HD.
    I then bought an external hard drive and installed the OS on it, from which I am able to boot now.
    Is there a way to get access to my photos on the Macintosh HD (which is missing, sort of) before i try to fix the hard drive by formating it?
    I am not very good at computers and I really need some advice..

    Try using a data recovery product such as the ones listed here. Don't write anything else to the drive until the files are recovered or you choose not to recover them.
    (104227)

  • I replaced sync data on server, how can i get access to older version of my sync data?

    Hello!
    I've a problem. I synced my data from desktop browser and then reinstall browser. After that i pressed Sync now, entered my credentials and i thought that this browser will download my data. But by this deeds i replaced my previous data. How can i restore it?

    Hello Mightymad,
    Thank you for contacting Mozilla Support. Sorry, about your loss of data.
    Sync isn't intended for the purpose of being a "backup" service while the user re-installs their operation system. It was made to synchronize data between Firefox installations on multiple devices, where not every device is devoid of their Firefox installation and data at the same time.
    Unfortunately, if you've overwritten the Sync data your previous version is lost.
    I wish we had better news for you, but hopefully this gives you a better idea how Sync works, so you're better prepared next time you go to reinstall.
    Patrick

  • How can I get access to my camera and camera library  in iphone from muse ?

    I basically need the user on the mobile site to access there camera library from phone and send video from thier camera library to an email address .

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • TS3988 i have an old icloud account and i really dont remeber the account name and password how can i get access to it

    i have an old icloud account and i want to access it on my iphone

    As posted earlier, you can try going to https://appleid.apple.com/ and clicking on the Find your Apple ID on the bottom right.  If you are able to find the ID, you can then reset the password here:https://iforgot.apple.com/, allowing you to access your iCloud account again.

  • How can I get access to a icloud back up from two weeks ago? I had a loaner phoe for 10 days while my phone was being serviced and i can't seem to access the majority of photos that were backed up on icloud.

    how do I access an icloud backup on my iphone for December 18th, 2014 or earlier? I had a loaner phone in the interim and a number of photos & videos are not being reloaded on my phone from icloud. It was explained to me that if I access an update prior to needing the loaner phone I may be able to retrieve these??

    Hi Brad Newman-Bennett,
    Welcome to the Apple Support Communities!
    I understand that you would like to restore your iPhone from an earlier iCloud backup. Please use the information in the attached article for information on how to choose which iCloud backup you wish to restore from.
    iCloud: Restore or set up your iOS device from iCloud
    Set up a new device from an iCloud backup
    Turn on your iOS device.
    In the Setup Assistant, proceed to “Set up your device,” tap Restore from a Backup, then sign in to iCloud.
    Proceed to “Choose backup,” then choose from a list of available backups in iCloud.
    Cheers,
    Joe

  • System memory show 0KB available. Finder will not open. How can I get access to files in order to delete them without using finder?

    My friend is running OS X Yosemite. Her kid used up all the memory on minecraft/word of warcraft files. Now no app will open including Finder to even access files for deletion. Is there a way to access any apps/files to clear space without using finder?

    Step 1   
    The first step is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is not fully functional. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later. 
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    You might be able to run in safe mode even though you can't run normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.

Maybe you are looking for

  • Not able to load data in 0MATERIAL_ATTR

    Hi , For Infoobject 0MATERIAL I am maintaining both attribute and text. I am able to load text into 0MATERIAL successfully. But, when I am trying to load datasource 0MATERIAL_ATTR, I am getting error 'DataSource 0MATERIAL_ATTR(ECCCLNT711) must be act

  • I cant play flv and avi format after upgrade to Mountain Lion

    I've updated to Mountain Lion on my Macbook Pro and now I cant play any movies with format flv and avi ??? am I missing something here, keep getting errors from Apple Quicktime, thanks

  • SharePoint 2013 Query string parameter pass between visual webparts

    Hi, I have created one web part called Latest News in SharePoint 2013 which is visual web part(Sandbox Solution). In that, there is button called "Read More". Now when I click on that button I want to show only that item in the new page which is clic

  • Mac Mini Snow Leopard Server vs Airport Extreme

    My Macbook is starting to reach it's memory maximum and running slow (120Gb). Most of the memory space is taken up by videos, photos, movies, and music. I have contemplated purchasing an Airport Extremem and connecting multiple hard drives using a po

  • Query Runtime is very high

    Dear All,      I have a cube in which I have derived fiscal period, fiscal year from Billing date. I have two queries on that cube one is based on fiscal period and other one is based on billing date. Both queries were running fine. From last few day