tnt
Members-
Posts
86 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by tnt
-
Strange delays in loading LabVIEW Vi that call .NET
tnt replied to dannyt's topic in Calling External Code
Hi, we had a similar problem as well, network connection: fast start, no network: very slow --> see http://digital.ni.com/public.nsf/allkb/9A7E2F34EC9DDEDE86257A09002A9E14 (different article) We used the workaround with the application configurationfile placed next to the executable (=same solution as LogMAN) because it is a very easy fix, requires zero to less additional documentation in case of a reinstall and does not need any changes to the Internet options (or regedit, or gpedit). (This apparantly resulted in an even faster startup of the application compared to altering the Internet options) You can create an application configuration file: 1. Open Notepad and paste in the code below: <?xml version="1.0" encoding="utf-8"?> <configuration> <runtime> <generatePublisherEvidence enabled="false"/> </runtime> </configuration> 2. Save the file in the directory of the application with the name: <ApplicationName>.exe.config 3. Run the application, and the config file should disable the CLR check for the application. -
Please post your question only once and not 7 times in multiple groups...
-
Unexpected Event Structure Non-Timeout Behavior
tnt replied to Justin Goeres's topic in LabVIEW Bugs
On page 16 you can find "Viewing Enqueued Events at Run Time" which is a nice feature. You wanted to refer to page 11: "Changes to the Behavior of the Event Structure Timeout Terminal for Non-Handled, Dynamically Registered Events" --> In LabVIEW 2013, non-handled, dynamically registered events do not reset the Event structure timeout terminal. -
I had found the same 1px border in my 2009 archive and I can't remember seeing a 0px border before. (related post: http://lavag.org/topic/11002-cluster-border-thickness/) Set Autosizing to "None" and make it the same size as the numeric, align the numeric in the center and you won't see a difference anymore.
-
Hi, you did not clearly mention if you got it to work or not. If you pass the proper references to your last example, it should work. Edit: I forgot to check the other thread first: When doing it the way I proposed in my previous post, you don't need the "to more specific class" because all references keep their original type (while in your example the build array reverts the types to the lowest common type) (I don't have LV 2012 installed so I can't quickly test your snippets)
-
Hi, I guess you are getting the error because you have connected the constants (unfilled cluster) directly to the subvi. You need to use the "Bundle By Name" to fill the cluster with the references of the controls.
-
The main goal for mentioning you cross-posted in another thread/forum is to prevent that someone takes the time to answer your question here, while it may already been answered in the other thread/forum.
-
Anyone else OCD about alignment and positioning in block diagrams?
tnt replied to Sparkette's topic in LabVIEW General
When inserting an 'Unbundle By Name' I always seem to move the wire 1px down to remove the bend. (... and hiding the 1 px bend ) For some reason the input and output are not aligned. The unbundle is 18px, the center of the 3px error cluster wire on the left is located 1px below the 1px output wire on the right. Same issue when having multiple sequential Unbundles... * I know this can be done in 1 single unbundle, but when you reuse clusters inside another big configurationcluster the unbundles can get corrupted (linked to the first possible match) when updating the source cluster. (Maybe this bug has been solved or not, but I still unbundle first when I know there are identical names inside) -
The last few weeks there is a lot of spam from "new" users/bots (e.g. > 10 new topis within 1 hour) For some reason I find the new spam topics much more annoyant when compared to a single spam message as a reply inside a topic. Can the number of new topics a user can start to be limited to e.g. 1 or 2 a day? (Also prevents new/novice users to post the same question in multiple categories) I also remember a topic where someone proposed for adding a kind of LabVIEW Captcha with a simple CLAD-question to prove the new user has a basic knowledge. ... just my thoughts ...
-
Hi, see ftp://ftp.ni.com/evaluation/labview/ekit/other/downloader/ and just search for "LV2009SP1" (You're lucky, I could only find LV2009 and newer)
-
Nice... Have you noticed the date ????
-
Hi, for each Tab page you can set the Tabbing order by right-clicking on the Tab label (or Tab border) and select "Reorder Controls In Page...".
-
Change the Background (Rotate Func.)
tnt replied to Biker777's topic in Application Design & Architecture
Hi Guys, almost 2 years ago I have build a rotate which included the rotation of transparant images. After reading the 'image data' from a (png-)file you get a 24-bit image together with the mask containing the transparency information . See the attached vi (LV 8.5.1) Rotate Transparent Image (24bit).vi I think this contains everything you (and hopefully also others) need to do get this done in pure G. Good luck... -
Random question for French LAVA members: what is your outlet polarity?
tnt replied to Mr Mike's topic in LAVA Lounge
Hi Mr Mike, in Belgium we also have the same plugs and the only thing I can tell is that this is not standardized. One place live is left, other place live is right... This socket also allows ungrounded plugs which can swap left and right. It is AC so this shouldn't be a problem. -
Verifying the Domain credentials worked for me on Windows XP, just make sure the domain name is filled in correctly.
-
HI, could you upload a 2010 VI or a screenshot? I don't have 2011 installed yet.
-
--> defer panel updates ? see also http://forums.ni.com...low/td-p/310481 http://lavag.org/top...e-tree-control/
- 7 replies
-
- 1
-
- refreshing effect
- tree control effect
-
(and 1 more)
Tagged with:
-
Calculating size of cluster with cast fails, using flatten adds unwanted data
tnt replied to tnt's topic in LabVIEW General
I cannot do much about the way the data is expected, I have to pass some kind of header followed by the BufferData and this all packed together as an array of bytes. The example was just a stripped down version, the BufferData itself is in fact an array of structures containing different types of data. I was just looking for an easy way to convert the header and the data to U8[] without having to go manually through all elements (header and buffer) for converting to U8 and pasting it together.- 9 replies
-
- cast
- flatten to string
-
(and 2 more)
Tagged with:
-
Calculating size of cluster with cast fails, using flatten adds unwanted data
tnt replied to tnt's topic in LabVIEW General
Can you explain this a bit mo(o)re? Is it a LV-bug that the cast does not accept a cluster containing an array? Is it a LV-bug that the flatten to string adds 4 unwanted bytes for the arraylength while 'prepend..' is set to FALSE?- 9 replies
-
- cast
- flatten to string
-
(and 2 more)
Tagged with:
-
It worked for me, I got access to the download by manually copying the link from the mail I received. (clicking on it failed because of invalid hyperlinks)
- 9 replies
-
- automate building and source backup
- addon
- (and 3 more)
-
Hi, I need to pass some data to a DLL and need to pass the number of bytes I'm passing also. I tried using 'cast' (should accept anything) for getting the memmap but this fails (polymorphic input cannot accept this datatype) due to an array inside the cluster. Then I wanted to switch to 'flatten to string' for getting the same result and now the arraysize is prepended before the arraydata I stripped down the code to the bare parts but I don't want to unbundle all elements from my original cluster, just for getting the size. Attached you can find a LV8.5 version, the behaviour in LV 2010 SP1 is exactly the same. cast_fails4.vi thx tnt
- 9 replies
-
- cast
- flatten to string
-
(and 2 more)
Tagged with:
-
Hi, a while back I had some similar issues. I just did a small test om my dualcore XP 32-bit LV8.5.1 with 4 GB RAM and had no problems allocating and using a 5000x5000 SGL (4-bytes)-array, when switching the datatype to DBL I got "memory full" / "not enough memory to complete this operation". Other solutions that helped in my particular case was using the XP /3GB switch in boot.ini which allows for larger memoryblocks and/or creating the 5000*5000 array (If possible in your case) as an array of 5000 clusters with a 5000-elements 1D-array which does not require a big area of continuous free memory (in my case a 8000 pixels linscan camera) but 5000 times 5000 elements. Also be aware of memcopies of your data when displaying in indicators... Good luck...
-
I started the implementation of 8B/10B encoding in LabVIEW (decoding will be done later) with a simple LUT but - when I reached special cases like D.x.P7 and D.x.A7 - I wondered if someone already did this before (and wants to share his/her experience). http://en.wikipedia.org/wiki/8B/10B I searched for examples but found none that were easy to convert to labview or were easy to call from inside LabVIEW.
-
Hi Thomas, just press "Join group" and (normally) NI will grant you access so you can see all documents. TNT
-
Thanks, looks like I've visited also other websites Thanks, even easier