Default view panel upon startup

Hello!
I am running a batch file to open and execute a script in diadem using this command: start "" "C:\Program Files (x86)\National Instruments\DIAdem 2012\DIAdem.exe"  "/CScriptStart('C:\Users\bseward\Documents\Diadem\tdms post process\SingleReport.VBS')"
 My problem is that after the script finishes, diadem always changes the window back to the "view" panel. I have even added this command to the end of the script: "call WndOpen("REPORT")" with no luck. If I open diadem and then open the script and run it, it works as intended and finishes on the "Report" page. It seems that the VIew window is simply the default window upon initial open.
Is there any way for me to get around this so that I am actually seeing my report when the script is finishes?
Thanks a bunch!
Solved!
Go to Solution.

Hello Otmar,
Thanks for the reply!
Unfortuntely that didnt work. Feel free to test this yourself by creating a script with just that command in it:
call Wndshow("REPORT","MAXIMIZE")
and running a batch file (simple text file with .BAT extension) to open Diadem with that script, which would be something like this:
start "" "C:\Program Files (x86)\National Instruments\DIAdem 2012\DIAdem.exe"  "/CScriptStart('C:\Users\bseward\Documents\Diadem\MaximizeReport.VBS')"
and you will find that you will see diadem switch to the report tab, but then switch back to the view tab once the script is finished. 
Let me know if you have any other ideas.
Thanks!

Similar Messages

  • HT1349 I have icloud on my pc with windows vista.  Recently, upon startup I receive an error that says applephotostream.exe has stopped working.  Windows will close this problem . . . any suggestions.  I tried to download the control panel again. no luck

    I have icloud on my pc with windows vista.  recently, upon startup I get a message that says applephotostream.exe has stopped working.  Windows will close this program  . . . I tried re-installing the icloud control panel, etc.  to no avail.  any leads?

    Hi, I have the same problem. Has anyone come forward with any advice on fixing the problem?

  • Help: Lost the default 3 panel view

    Somehow I managed to change the default 3 panel view in Mail, I now have just 2 columns, the mailboxes on the left and one long messages column to the right. This means I have to double click each email to open a new viewing window, rather than simply select it to view in a lower panel.
    How do I get the default setting back?
    Thanx

    Hi, try dragging that little dot separator at the bottom middle of that window upwards!

  • Supplier portal - configure the default view upon login

    In the supplier portal, the default view is target facility. Can the portal be configured to have the default view be source facility or company? Reason - supplier feedback indicates they would like their default view to be supplier centric (from their viewpoint) rather than customer (the company hosting Agile) centric.

    Sorry but there is not a configuration to the portal that will provide this change.
    Segal

  • Firefox hangs upon startup

    When I try to start firefox it does nothing. Via CLI it does the same - nothing. It just sits there and appears to be hung up. No pid, nada.
    Deleted ~/.mozilla and tried to run firefox -profilemanager. Same thing, just hangs.
    Tried to run firefox -v just to see if it return the version -no joy. Hangs.
    no locks present and did a killall firefox before each attempt.
    Uninstalled via yum and reinstalled via yum. Same.
    Is there a log file I can view to try to determine whats hanging upon startup?
    Thanks in advance for your help.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • PDF opens in Reader but Reader is not my default viewer

    I have doPDF as one of my printers so I can create a PDF file. In Control Panel Folder Options, my default PDF viewer is set to Foxit. That is what I want. I have Acrobate Reader on my PC for the rare instances I NEED Acrobate Reader. When I select doPDF to create a PDF file, the generated PDF file is opened but it opens in Acrobate Reader instead of Foxit (doPDF opens the newly created file apparently for verification that the PDF was created). Since Foxit is my default viewer, why does the PDF open in Acrobate Reader instead of Foxit? (Neither the Foxit people nor the doPDF people know why).
    BTW... When I select a PDF file in Windows Explorer, it opens in Foxit.
    In advance, Thanks

    In Run type regedit and open following registry path(Second part may differ from machine to machine):
    HKEY_USERS\S-1-5-21-762979615-2031575299-929701000-XXXXXX\Software\Microsoft\Windows\Curre ntVersion\Explorer\FileExts\.pdf
    On the Right panel ,right click and Add "String Value" by the name "Application" and then Modify(Right Click) this "Application" and add Value data as the name of application by which you want open pdf file.Eg. If you want to make Acrobat as your default application ,put Acrobat.exe or put  AcroRd32.exe if you want Reader as your default app. Similarly put the name of corresponding .exe for other pdf Readers you have and you want to make a particular as your default app.For knowing the name of  exe of other Readers, just check in “OpenWithList” just below .pdf(on left).
    I hope it can solve your problem

  • How to capture "show on (Viewer) panel" via the SDK

    I was able to capture other parameters such as - "Prompt text", "Default Value", "AllowCustomCurrentValues" -- from [[ReportClientDocument-DataDefControllerParameterField-DataDefinition-ParameterFields-ParameterField ]]
    But I am not able to figure out where "show on (Viewer) Panel" resides in the SDK.
    Thanks in advance
    JM

    Hi Jam,
    While using RASSDK to retrieve and set "Show on (Viewer) panel" property of a Crystal Report parameter, we can use methods on ParameterField class.
    Create an object of ReportClientDocument class for ex- ReportClientDoc and try the code                                                                               
    ReportClientDoc.getDataDefController().getDataDefinition.getParameterFields() (It returns Fields object which is collection on parameters).
    Iterate through this collection and cast each individual object to ParameterField class.                                                                               
    - Call getIsEditableOnPanel().
    It returns true if in CR Designer Show on (Viewer) panel is set to editable for the parameter.
    It returns false if "Show on (Viewer) panel" is set to Read Only.                                                                               
    - Call getIsShownOnPanel().
    It returns false if in CR Designer Show on (Viewer) panel is set to "Do not Show" and true otherwise.
    Thanks,
    Shilpi

  • Airport connect upon startup

    I have a Belkin FSD7010 wireless card in the PC slot.
    It is recognized as an airport extreme card.
    Running Tiger 10.4
    TiBook 1 GHz,
    Airport Express wireless
    Everything works great except -
    whether I set the TiBook to join a preferred network, or automatically join any network
    after turning on the TiBook I always have to choose the network from the icon on the menu bar. It never grabs the wireless connection by itself.
    Is there some setting that I am missing for the TiBook?
    My Macbook Pro gets on by itself upon startup.

    -Open System Preferences
    -Network
    -By Show: select Airport
    -By Default, join: select Preferred networks
    -Select here the network you like
    -Apply now
    Sometime's you need to do this for automatically connecting to a wireless network.
    Hopefully this is helpfull or solved your problem. Consider rewarding some points!
    Please see the "helpfull" and "solved" button's on top off this message! Apple: Why reward points?

  • Changing default view to match Inventor default view

    Hi All,
    Upon creating my Parasolid Binary File from Inventor 2012 for use to build the 3D PDF, I do so from a specific view angle.  After Acrobat and 3D PDF Converter do their conversion, it would appear that my specific view angle is completely ignored and a very unflattering view angle is substituted.  It is highly desired by our customers that the default view (the one used to "Click to activate") in the final PDF has a more appropriate view angle.  Does anybody know how to maintain or reassign my initial preferred view angle?
    Thanks

    Hopefully this is what you are looking for...
    After creating the new view, which it sounds like you did, click on the "Options" button in the Model Tree's "Views" pane (the middle pane) and select "Set as default view".  Then right-click (control + click on the Mac) and select "Properties..." from the context menu.  In the "Launch Settings" tab, down in the "Poster Image" area, click the 2nd radio button, "Retrieve poster from default view".

  • Default View in Lead View

    Hi All,
    Upon clicking on 'Lead' in the NavBar of ICWC, I'd like the default view to be 'Business Context' instead of the existing 'Overview'.
    I know the view can be substituted at runtime. But can I know the steps to do so?
    Thanks

    Then mark the threak like solved

  • Customization of new NW04s BEx Analyzer default view?

    Can the default view displayed when a query is executed in the new NW04s (7.0) BEx Analyzer be customized -- perhaps for company branding, disabling/enabling certain functions, etc -- similar to the way the default/standard web templates can be modified?  If so, how would you go about doing that?
    Thanks,
    Rod

    Thanks Heike...
    Based upon the referenced documentation I can believe I understand how to create my own default workbook with/for the NW04s BEx Analyzer and toggle between it, the system default for me, and the SAP default (the 3 buttons on the Global Settings ... Select Default Workbook view).
    However, the document indicates "There is one default workbook per user in a system which can be set by the system administrator".  How/where would an administrator do that?  There is a "global default" flag in the Global Settings view which I don't see discussed in the documentation -- not sure if this factors in, if so how an administrator would go here to make a user-specific setting, etc.
    Any additional help appreciated,
    Rod

  • When my MyBook external drive (where I keep my music) is connected to my Mac, iTunes stops responding upon startup. I have to force quit iTunes, disconnect the iBook, restart iTunes and plug the iBook back in.

    When my MyBook external drive (where I keep my music) is connected to my Mac, iTunes stops responding upon startup. I have to force quit iTunes, disconnect the iBook, restart iTunes and plug the iBook back in.

    mattbeardall wrote:
    Is there an option that someone knows about that would keep this from happening?
    no, if iTunes can't find its drive/folder, it defaults to creating one within your Home directory's Music folder.
    If anyone knows a way I send a product suggestions to apple please let me know, as I have a few that would like to suggest.
    under the iTunes menu choose the Feedback menuItem.

  • Accordion Spry default all panels closed

    How do I setup the Accordion Spry to have all panels closed
    when my page initially loads? I don't want any of the panels to be
    set as the default opened panel and for the browser to select the
    panel they want open first.

    I have installed Spry 1.6.1.
    Here is my code:
    var Accordion1 = new Spry.Widget.Accordion("Accordion1",{
    defaultpanel: -1 });
    Still opens the first panel upon loading my page with the
    Accordion spry. There must be something else to be
    configured?

  • Upon startup multiple audio sources begin playing. I can't find the tab to kill them!

    Having pages begin streaming audio upon startup AND not being able to find out where audio is coming from is frustrating almost beyond words ... it is hard for me to imagine this wasn't addressed with the first "tabbed" version. Sometimes I'm almost tempted to see if another brower has this handled. PLEASE FIX IT OR LET ME KNOW OF AN ADD-ON TO ADDRESS THIS. If the latter, I suggest you co-opt that feature into the next major release. AWOL sound is maddening. 3 youtubes + 5 podcasts + lastfm should NOT be playing at the same time BY DEFAULT just because the tabs were open on last shutdown. Further, I suggest *ANY* source of audio should easily found and jumped to to kill or mute.

    If pages have embedded audio, it is not always easy to stop it. I have a bookmarklet that allows me to stop embedded audio if I click it on the page in question. If you are having Firefox open with the tabs from the last session and several of those pages have embedded sound, either turn them all off one by one or do not save a session with embedded sound in the pages. The bookmarklet is this:
    javascript:(function(){function%20R(w){try{var%20d=w.document,j,i,t,T,N,b,r=1,C;for(j=0;t=["embed","iframe"][j];++j){T=d.getElementsByTagName(t);for(i=T.length-1;(i+1)&&(N=T[i]);--i)if(j!=3||!R((C=N.contentWindow)?C:N.contentDocument.defaultView)){b=d.createElement("div");b.style.width=N.width;%20b.style.height=N.height;b.innerHTML="<del>"+(j==3?"third-party%20"+t:t)+"</del>";N.parentNode.replaceChild(b,N);}}}catch(E){r=0}return%20r}R(self);var%20i,x;for(i=0;x=frames[i];++i)R(x)})()
    Add a new bookmark, copy that code to the location, and name it "No music or iframes".

  • Web gallery default view

    The default view upon open a web gallery is "Grid". I'd like to change it to "Mosaic". Can this be done?

    No. That's controlled by server side software.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for