Jump to content

chris754

Members
  • Posts

    63
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by chris754

  1. Sorry, For the late response been busy.

    First, I am not sure if you are aware that the computer that I type on and the computer that I work on are to completely different computers. The one with the code on it is not connected to the internet so the only way i see possibly to transfer the information to this computer is flash drive, which to fault on my own I don't have. 

     

    Second, I am not sure how to convert a picture to a text file that you are requesting. 

     

    Finally, I think the use of language in the conversation we had was a little belittling so hopefully you used this information for future new comers. But i do not care as long as you provide me with information.

     

    They are asking you to post the source (the actual VIs) not a text file or an image. This way they can open the code and actually see what is going on and point you in the right direction. Without the real source it becomes difficult to help you.

  2. (If this is not the right forum, please move as appropriate)

     

    Yesterday, I was trying to capture the "key down?" event on a string array control. I noticed that the event would never get fired while typing into one of the strings in the array. The event does fire if you type in the index control of the array. My question: Is this expected behavior or a bug? After trying a few things, I can get the behavior I want by getting a reference to the "ArrElem" and registering it for the "key down?" event and passing the into the dynamic event terminal. This is fine for my purposes and will implement my code in this fashion. However, I certainly was not expecting this event to behave in this way. I guess I could see why this may be the case (you are typing into a string control, not an array) but curious what other people think...

     

    This was all done in LV2013.

     

    Thanks!

  3. This is true but I have seen developers remote into a PC from a phone and then write code from their phone.  Of course that would drive me more crazy than having to use a touch pad for programming but I've seen it done.

     

    Who are these masochists?? I would literally go insane. Do they go a step further and use 3G data to do all this? I have a galaxy note 3 with a pen and I would never attempt such a thing.

  4. I really like this idea. Don't think its ready for prime time yet, but really like the idea of mixing java (I actually like java :) ) with graphical programming. I can see myself writing classes with java and doing my threading with graphics. I do wonder if they are breaking some NI patents/IP however, some things look rather similar. Seems cool nevertheless for my quick glance through it this morning.

  5. Hi,

     

    I have LabVIEW 8.5, 2011 and 2013 on my machine. 2013 and 8.5 work fine, and 2011 was working for years until last week. Now when I launch 2011 it appears in the tray and then disappears and nothing happens. 2013 and 8.5 launch fine. I have uninstalled and reinstalled 2011, no dice. I uninstalled all versions and reinstalled 2011, no dice. Any ideas as to what could be happening? I tried using a coworkers INI file, nothing. Tried deleting the INI file, nothing. I have NI reps looking into it, but they seemed stumped as well. Trying to avoid reimaging my computer.

     

    Thanks

    Chris

  6. Not sure what's going on, but the problem lies within CvtPaneltoScreenCoordinates. That keeps giving me negative values. I copied the code from the correct VI onto a new Vi and it worked just fine. Copied code from the wrong VI to a new VI and it didn't work. Tried copying CvtPaneltoScreenCoordinates from the good to the bad, but that didn't do anything. Some reference somewhere is getting screwed up or something.

  7. If you have a Parent class P, with child class A and B. If A has additional parameters that both P and B do not have that is fine. In this case, you know specifically which class you need, so then you would cast the object to class A and call the parameter for this specific purpose. If the parameter is in both P and A (and therefore B as well), no need to cast. The only time you cast is when the child class has extra information, that the higher level class does not have. I would stay away from variants for this case, it is an unnecessary complexity. Do-nothing accessors would also not be a good choice, as it would confuse the issue, and give class B irrelevant information.

×
×
  • Create New...

Important Information

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