No way to connect subcircuit with HB (10.0.343

Hi, I'm trying to learn Multisim 10.0
 I am wiring a sub circuit to be used in a heirarchical block. After the whole thing is ready, I want to wire it back to my supercircuit, so I go to the place menu as it says in the instructions - but lo and behold there is no CONNECTOR/HB/SC selection.  Unphased I try to place "Basic/Connectors" but there are only real physical connectors there.  I am not interested in real physical connectors only virtual connectors since this subcircuit is only to make it easier to understand logically.  Am I doing something wrong here?  I am using the evaluation version of the Student edition.  Is this a blocked feature?  What good are subcircuits if you can't interface to them?
-Dave B

Dave is not a limitation of the evaluation edition. So here are my findings:
In Student Edition you have Subcircuits functionality, but not hierarchical design (hierarchical blocks, multi-page). So, if you build a section of a circuit, you can then select all that section, and then select Place > Replace by Subcircuit, place the new block and it will have I/O pins.
However, and this is a bug that I'm reporting, if you select Place > New Subcircuit, like you said, there is no menu option to later place connectors. What you can do right now to workaround this, is to follow the first procedure that I noted here, and then copy/paste one of the I/O pins into the new subcircuit you created. Or directly create your subcircuits like I depicted on the first method. I will report this to R&D so they can enable that menu for Student Edition on our main build.
Nestor
National Instruments

Similar Messages

  • What's the best way to connect Cognos with SAP 4.6c on iseries V5R4

    We have SAP 4.6c on iseries V5r4.
    What's the best way to connect Cognos with SAP so that data could be extracted from SAP and create reports with Cognos.
    Thanks
    Joe

    DB2 Connect version 8.2 is no longer supported by IBM (support ended April 30, 2009, see http://www.ibm.com/software/data/support/lifecycle/). As far as I know, DB2 Connect is communicating through DRDA, which is a platform-independent protocol supported by all DB2 platforms, so any DB2 Connect client should be able to talk to any DB2 database. However, there may be limitations on the supported release combinations.
    Kind regards,
    Christian Bartels.
    Edited by: Christian Bartels on Sep 6, 2010 4:17 AM

  • Is there a way to connect JavaMail with outlook address book?

    Hi,
    What I would like to is use Java to invoke an instance of outlook, and attach several files. Is this possible with JavaMail. I have a feeling it is not, but please let me know about some other package that can do this?
    Grae

    JavaMail doesn't do this.
    JDIC can do this, I believe.
    https://jdic.dev.java.net/

  • Best way to connect sharepoint with Microsoft Navision

    We have one requirement to connect both Microsoft navision and share point .Can anyone please tell me which is the bast approach for the same.
    Regards, Hari

    Hello , 
    You can use Dynamics Nav Sharepoint Client is best approach to connect to sharepoint . 
    Best
    Regards Kuldeep Verma
    Please remember to click "Mark As Answer" if a post solves your
    problem or "Vote As Helpful" if it was useful.  

  • New Sonyericsson M600i - is there any way to connect it with iSync?

    Has anyone ever faced the problem?
    Thnks.

    Unfortunately, an iSync update from Apple will be required to sync this phone.
    It uses Symbian OS v9.1 and UIQ v3.0, whereas previous Symbian Sony Ericsson phones such as the recent P910 use Symbian OS v7.0 and UIQ v2.1. Apple will have to implement a different syncing protocol in iSync as this phone doesn't use SyncML via Bluetooth.
    I was very surprised that the recent iSync 2.3 update didn't help...
    Maybe iSync 2.4 with Mac OS 10.4.8 will offer something - whenever that may be.
    Jools

  • Is there best way to connect a dataInputStream with a dataOutputstream?

    I use a the next to put data on 'memory'
    ByteArrayOutputStream bytestream =new ByteArrayOutputStream();          
    DataOutputStream datastream =     new DataOutputStream(bytestream);     
    And the method to 'connect' de 'out' with the 'in' is by mean of pass an array :
    ByteArrayInputStream bytestream_in =new ByteArrayInputStream(bytestream.toByteArray());          
    DataInputStream datastream_in =new DataInputStream(bytestream_in);
    Is there any way to do this better ?

    use a the next to put data on 'memory' Jesus ! The data I have on a file now is in memory ....
    Better .... :
    bytestream is already in memory
    bytestream.toByteArray() creates a newly allocated byte array
    If you consider it , it is an additional cost. Is there any way to connect ByteArrayInputStream with ByteArrayOutputStream ??
    By other side, if my bytestream grows I must to 'reload ' ByteArrayInputStream and make a new bytestream.toByteArray() ....
    I hope now you understand me

  • Connect N82 with my laptop wi fi

    Hello, pls i need help on how to connect my N82 with my Laptop (no router). I want to sync my outlook frequently as well as share music with my laptop. Pls post steps and procedures.

    Grschinon you are wrong!!!, after opening SymSMB and connecting phone with computer over wifi you will see phones memory as network disc in your browser, see this movie http://video.aol.com/video-detail/symsmb-200-demo-2-accessing-the-mobile-phone-from-pc/950403963/?ic...  or DIY. You just have to map phone as a disc in browser.
    In Internet there is many posts about how to do this.
    SymSMB allow you to retrieve contents of computer on phone but on computer browser you will see contents of phone too.
    You are right I made a mistake with GnuBox, it connect over BT. My fault.
    And I really agree that the best way to connect phone with computer is USB cable or BT with NPCS. Thats all.
    N95 & N96 User

  • Connecting SAP with Excel (Beginner)

    Hello!
    I'm new to the SAP scripting. On my company we use lots and lots of Excel spreadsheet lists with sales orders and projects, which is why i need to learn to connect those lists with SAP.
    I have a list of sales orders in Excel starting downwards from cell A2 and I want to get the exchange rate on each of the orders from the header of VA03, so that the script copies the currency rate of each sales order next to the order number in the spreadsheet.
    How do i do this? :s
    Thanks, Mattias

    Hi Mattias,
    if you have allready worked with Scripting (Recording) you allready have the way to connect excel with SAP
    To Connect an existing Instance of SAP with Excel you will need this code:
    Public sapsession
    Public Sub Connect_SAP()
    If Not IsObject(SAPguiApp) Then
    Set SAPguiApp = CreateObject("Sapgui.ScriptingCtrl.1")
    End If
    If Not IsObject(sapsession) Then
    Set sapsession = sapConnection.Children(0)
    End If
    If IsObject(WScript) Then
    WScript.ConnectObject sapsession, "on"
    WScript.ConnectObject sapApplication, "on"
    End If
    End Sub
    at end of all action you have to destroy all objects
    Public Sub Destory_SAP()
    set sapsession = nothing
    set sapapplication = Nothing
    set sapGuiapp = Nothing
    End Sub
    PS Look for Threads that have the same Title as yours -
    There are many in this forum ...
    Greetings
    Thomas B

  • How to connect java with database without any dsn.

    is there any way to connect java with database with out creating any dsn..like we do in ado in vb by providing provider.

    Sure use a type 4 driver. No DSN.

  • Is there a way to connect an old Sunflower iMac (OSX 10.4.11) to a new Time Capsule?  It used to work with old Airport Extreme with updates thru Snow Leopard but now seems to only allow WEP encryption instead of WPA.

    Is there a way to connect an old Sunflower iMac (OSX 10.4.11) to a new Time Capsule?  It used to work with old Airport Extreme network, run from a intel iMac with updates thru Mavericks but now seems to only allow WEP encryption instead of WPA and can't connect to Time Capsule.  Airport Extreme Base was controllable from either computer up through Snow Leopard (I didn't do any of the Lion upgrades).  Then when I upgraded to Mavericks I lost the ability to use Airport Utility with this hardware on the Sunflower but could still connect wirelessly to network without any problems.  But now with the Time Capsule upgrade the Sunflower is blocked from network by a dialogue that requests ony WEP password, not WPA pwd used by Time Capsule.  Neither can I use the old airport extreme base to extend the time capsule network since I can't input the correct password/encryption approach to join it.  Is there a work around?  Would a newer but old Airport Express be able to extend network to Sunflower?  Or maybe a third party wireless (such as Netgear, Dlink, etc) that has browser type control rather than special utility?
    Another question--before I used MAC addresses to control who could access network.  Now on Time Capsule I don't see anything about this--so is it true now that the only access control is via WPA2 pwd now (which appears to be the encryption pwd and not the time capsule pwd)?

    Is there a way to connect an old Sunflower iMac (OSX 10.4.11) to a new Time Capsule?
    I can’t claim to completely grasp the issue(s) you’re describing, but the underlying problem is presumably your iMac’s obsolete AirPort card. Whatever the case, an obvious (if not particularly helpful) answer to your stated question would be to connect your iMac with an ethernet cable, using powerline adapters as an alternative if you don’t want to have wire running all over the place.
    My still fully functional clamshell iBook, with an original AirPort card, connects wirelessly to my 4th Generation TC network by means of a cheap 802.11b/g/n USB Wi-Fi adapter. This might be an option for you too.
    Another question--before I used MAC addresses to control who could access network.  Now on Time Capsule I don't see anything about this
    When you edit your TC's settings the access controls appear under the Network tab, don't they?

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • HT5304 what is the best way to connect my imac wireless with airport express or directly plugged into airport unit

    what is the best way to connect my imac to internet via airport express. wireless or ethernet plug to airport? thanks

    Hello quinstar,
    It sounds like you would like to use either your Personal HotSpot to AirPrint from your MacBook Pro or use an Airport to do so without internet access to the home. According to the following Featured Discussion you very well may be able to use AirPrint with Personal HotSpot:
    HT4356 Can I use personal hotspot as wifi to connect printer?
    https://discussions.apple.com/thread/4007254
    Also, the Airport products to not need an active internet connection to set up a home Wi-Fi connection so that is another option as well.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • What Is The Best Way To Connect Ipod To Stereo Reciever With High Quality?

    I recently purchased an 80 gig and am a newbie. I ripped all my music at around 280kbps to retain good audio quality when playing in my car and home theatre system. There are tons of accesories out there (docks, jacks, etc) which is the highest quality to connect my Yamaha receiver. I would think a connection to the bottom of my ipod would be of a higher quality rather than using the headphone jack. Any suggestions would be great. I was thinking about using the monster itv link but mostly for audio. thanks

    OK - So now that you have all completely ignored the original question - in hopes of proving your manly-hood....
    Does anyone have an answer to the original question....
    "What is the best way to connect to a high end home stereo to retain the best sound?"
    For sure any connection going through the headphone jack will be a big step back - enough so that you would easily hear a sound quality loss in doing so.
    For the few of you who would like to argue/bicker/rant on the nominal sound quality loss....keep on doing so, but for those who actually have some respectable advice we would love to hear it.
    For the record, I tend to hear just outside the normal human auditory range...
    To help myself put it to rest already... a few years back I decided to conduct my own little listening test.
    I took 6 different common ripping modalities (from lossless - to - 128kbps in both MP3 & AAC.... then transfered all of them in order to a blank. Used the same song for each - the song chosen opened with a few clean crisp bars of high freq. music, followed by an instant explosion/drop into a tight & low bassline.
    The final cutoff that was achieved before I was unable to detect an audible difference was 198 VBR AAC. Having convinced myself that there was the ever sooooooo slight difference b/t 198 & 256, I went with my current ripping status of 256.... Just incase my audible range should become finally honed with age (yeah, like that is really going to happen) !
    This test was run over a Yamaha DSP receiver, running at a constant 110w per channel (w/a max of 220w). The speaker setup was a full surround set of Klipsch Reference Series..... each speaker housing 2 x 6.5 woofer (each housing 2 x 1" Titanium tweeters) And sitting along side the 5 surrounds was/is a 150w continuous 12in. Subwoofer.
    Now I am hardly stating that I have hearing as good as some of you extremely technically profound music enthusiasts out there, but for the majority of people making comments about sound quality, and lack there of - when played over a $120/40w Audiovox radio.... I'm sorry, but I would have to side on that of......"Hogwash, that you can hear a difference!"
    So.... if possible would someone please offer some advice on a dock or cable connection that will allow us to enjoy the music we ripped at whatever
    so-called range we did!
    For those interested in seeing who could hit the further bullseye with their eyes closed, You win!!! Now can you help us?
    MBP   Mac OS X (10.4.9)  

  • Hi guys Pls tell me a way to connect db4 database with jsp and which driver

    hi guys
    Pls tell me a way to connect db4 database with jsp and
    also tell me which driver i have to use
    also tell me how to connect with excel sheets

    take a look at the follwing links. There, you'll find all what you need :
    DB4:
    http://www.oracle.com/database/berkeley-db/je/index.html
    http://www.oracle.com/technology/products/berkeley-db/je/index.html
    http://www.oracle.com/database/berkeley-db/db/index.html
    http://www.oracle.com/database/docs/berkeley-db-je-datasheet.pdf
    Excel:
    http://64.18.163.122/rgagnon/javadetails/java-0516.html
    Hope That Helps

  • Is there a way to use a camera connection kit with an ipod touch 64gb?

    is there a way to use a camera connection kit with an ipod touch 64gb?  Is there an App for that?

    no

Maybe you are looking for

  • 'BAPI_ALM_ORDER_MAINTAIN' Not Updating Fields

    Hi, We are using BAPI_ALM_ORDER_MAINTAIN to update Special Stock indicator (RESB-SOBKZ) at component level for a service order (IW32). BAPI is not updating the value which we are passing for this field but intrestingly BAPI is updating rest of the fi

  • HP deskjet F735 scanning problem after upgrading to Snow Leopard

    I just upgraded my mac to snow leopard and after which my hP all in one doesn't work as it use to be. I don't have problems regarding printing and photocopying. It's the scanning that I had a problem. The photosmart doesn't work anymore and if I use

  • Cannot install Sharepoint 32bit due to product key issue - may have been used on Trial Office 2013

    Hi, I have a 32 bit version of Office 2010 Professional installed. I have attempted to install SharePoint 2013 but it fails saying the product key has been used before possibly in an Office 2013 trial version. Any idea how I circumvent this? Is it po

  • How to start my instance??!!!!!!!!

    I installed Oracle 10g. Then I created an instance. After the instance was created, I went to OEM to look at the instance, and noticed it wasn't turned on. I went to the network folder and noticed I only had sqlnet.ora; no Listener.ora or tsnames.ora

  • Compiling sendhtml.java example

    hi i tried compiling sendhtml.java from the javamail example folder using eclipse, but it seems eclipse can't recognise ByteArrayDataSource. It says ByteArrayDataSource cannot be resolved or is not a type. The ByteArrayDataSource statement is located