Jump to content

sam

Members
  • Posts

    149
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by sam

  1. QUOTE (Jim Kring @ Dec 31 2008, 02:20 PM)

    That's odd, because all the files below the ".svn\text-base" folders should be suffixed as "*.svn-base". In your screenshot, they are missing the ".svn-base" suffix.

    I bet internally the Dialog or Linking Algorithm is dropping the ending ( .svn-base). maybe searching for .vi and assuming the [ Path.Name.vi ] as the vi name.

    To clarify my problem is not how to fix this error, but how to prevent it from happening, I can fix the errors in any number of methods, some being the ones mentioned.

    The interesting point here is that I get this error on most of my project, but some of you here never seen it. therefore pointing to my style of programming ( Folder Structure maybe) :-) That inevitability causes Linking Problems. Like stated earlier I use Auto-Pop heavily, and Auto-pop adds the ".svn" folder to the project.

    It would be very nice to have an option setting for LabVIEW to ignore some file types and names.

  2. I am using LabVIEW 8.6, but I have seen it as well in LabVIEW 8.5.

    Jim, I think you are correct regarding auto-pop. feature leading to cross-linking. I will stop using auto-pop and see if cross-linking is reduced or gone.

    Also I don't think using "_svn" instead of ".svn" will fix this cross-linking. If I remember "_svn" was a hack to fix a bug with ASP.NET 1.0. I think ".svn" was a reserved word in ASP.NET. Also this hack no longer is necessarily for current ASP.NET

    Aristos, I always rename using LabVIEW file save as. I try to never rename in Explorer, exactly for fear of cross-linking.

  3. Hi,

    I have a concern regarding SVN. I have been using SVN since/before 2004. Lately I am having a lot of VIs that are incorrectly linked to the .SVN folder; I am blaming the project explorer. I am having a lot of frustration with this, and hate the fact that I need to relink more and more VIs to the actual file from the temporary SVN file. If there isn't a solution found for this incorrect linking I will abandon my favorite SCC.

    Has anyone else ran into this? What do you do to avoid false linking?

    As always I appreciate your kind help.

  4. The problem resides in the Driver that you are using. You should ask the creator of the driver. Another thing I can think of is playing the bit count, 8, 16, 14, 24 ....

    if you can not change the driver, you can rearrange the array yourself as I can see that you are getting the image array and saving it to file. Remember the Array is in RGB. and use ArrayInterleave and ArrayDecimate.

    QUOTE (iowa @ Sep 10 2008, 03:11 PM)

    How do I fix it?

    Thank you,

    Alex

  5. QUOTE(silmaril @ Aug 14 2007, 10:43 AM)

    Sorry, I can't enjoy that one.

    At least not if I want to use my favorite browser Firefox. :(

    It seems to work in MSIE, but I don't like that browser. :throwpc:

    Do others have the same problem, or is it just my Firefox that can't load this site?

    Works just fine in my Firefox, are you saying you can't use firefox for youtube videos? try installing/adding a plugin for flv players.

  6. I don’t post a lot, but I have been a member for a while now. I think the fact that this forum is good place to post interesting and advanced topics, has made me stick around. So as far as I know everyone here goes out of their way to answer posts, and I think they should be commended for it.

    Some observations I have had with these two new members, maybe these thing I am saying will ring a bell to others. Also if others See this they may benefit or not.

    Their typing is their Chat-Like typing, reminds me of my little cousin playing video-games. Whenever I see this I ignore the whole post, make mental note and if repeated ignore the user all together. If this typing is because of English language then over time I would realize that fact and would be okay with it.

    They keep on saying they are working on a project (emphasizing on project) kind of leading to a work-related projects, like most people here. But when you read the questions you know it is some school assignment, so you already getting a feeling of being lied to. Again this is my opinion.

    The questions are none-stop. Again that is okay with me, I don’t answer but I get the feeling that they are trying to get a passing mark in course without paying their dues.

    So If I am wrong I apologize. I think a well written introduction of their status would make all my point go away.

  7. I've got this amd64 Dell pc, and right now it's running xp32, but it's not very stable. I'm thinking about putting XP64 on it, but I am not too sure what to expected.

    Has anyone got any experience in XP64 and NI products? From hardware perspective , what kind of support/products are there from NI?

    I appreciate any insights.

    Thanks

  8. Not to take anything away from Jim, but to add to his post.

    If you like SVN, here is a quick way of setting up a SVN server for your Windows machines:

    All you will need is cygwin distribution. cygwin is Unix/Linux commands for window, it also contains Xserver and other stuff as well. When I get any new computer cygwin is the first thing I put on it. you can download it from cygwin.com.

    These instructions will install the SVN server as a service on your windows, meaning the compter can run headless in a corner somewhere with minimum administration. Once the service is up and running you can use TortoiseSVN as your client and use the SVN user manual:

    once you have downloaded and installed cygwin, follow these steps:

    Assumptions:

    c:\Cygwin - cygwin installation directory

    d:\SVN_Repositories - SVN repository folder for your projects

    1: Go to Run (Start | Run) and type: c:\cygwin\bin\bash.exe

    2: in the opened bash command window type:

    2.1: svnadmin create D:\\SVN_Repositories

    2.2: cygrunsrv --install SvnServe --chdir D:\\SVN_Repositories --path c:\\cygwin\\bin\\svnserve.exe --args "--foreground --daemon --root=/cygdrive/d/SVN_Repositories" --desc "Subversion System" --neverexits

    3: Run the "SvnServe" Service from the control-panel ( Services): Only for the first time

    4: To access the project in your SVN repositories:

    Actual Folder path: d:\SVN_Repositories\ProjectLAVA

    svn checkout path: svn://ComputerName/ProjectLAVA

    Enjoy!

  9. The best way to interface Java and LabVIEW is a client/server type application. Java-Client, LabVIEW-Server.

    QUOTE

    Obviously Java is a bad choice for sending and receiving data to the module, so I have done some research and it appears that LabVIEW is one of the best options when it comes to testing and implementation for devices like this module that uses a serial port to comunicate with my computer.

    Two questions, one comment:

    1: Why is it a bad idea to talk to your module in Java if you are only communicating serially?

    2: If you communicating serially to your modules then what benefit is LabVIEW going to provide over any other language?

    Just stick to one language if you can and avoid complication of introducing multiple languages.

  10. Blame it on the sequence structure!

    Are you connecting to this VI while it is executing on the RT system? If so, I'm not sure it would exit the LabView development environment... Besides, I'm not even sure what that function is supposed to do in an RT environment...

    I am just pointing out the obvious:

    Is that the only function you have in the last frame? Do you also close the front-panel in the last frame? make sure you don't run into race condition, close the FP first then call the function.

  11. Besides, since we at LAVA always use good style and never do things like unnamed elements or fail to use unique names in our clusters or other programming faux-pas we won't have this problem, will we? :D *

    This is an issue is if you have a Cluster Point (int X, Int Y) or Cluster Resolution (int X,int Y)

    Now this naming is quite common practice. But if you now have some objects (Clusters)

    that use the above(point or Resolution ) as parameters, then you are going to run into Problems. I am speaking of this as unbundle by name is now a bug in LabVIEW ever since I can remember. So maybe you can get it right.

  12. With this VI I am only pointing out exclusive write access to data. Inside the VI you can use ini or xml or databse to save your data to disk. I have used/using sqlite3 (using openg variants to save LabVIEW objects to sqlite3.). Also if you have a giant Cluster and pass it to openg's cluster to INI it will be saved in one action.

    But I often browse the INI file with ini-aware text editor and grouping items makes it easier to browse.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.