Jump to content

Suvin

Members
  • Posts

    21
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Suvin

  1. Hi , I need to login to MS Team Foundation Server to search for some files, using LabVIEW. Can somebody help? Thanks in advance, Suvin.
  2. I downloaded labview c generator evaluation version.. but it says i need LV2010 in my pc to install c generator 2010. which is not possible in my office pc C Generator 2010 is the first version of C generator? or something available for LV2009 to convert a vi? please help.
  3. But do we need Labview runtime in a PC to run Labview dll, or CVI runtime will do?
  4. Hi all, Is it possible to convert a lavview vi to CVI code? Suvin
  5. Hi All, I am using MySql server as my backend for current project. I need to store around five records per second to my database. Is there any way to check for duplicate record present in the databse while inserting the data? Retrieving the complete data and checking it with current record is not a good solution all the time I guess. Thanks in advance, Suvin.
  6. Hi Ton, Thank you so much for the reply.But I am using LV 8.6 I couldn't open your vi's. Any possibility to get vi s in LV 8.6? Thanks in advance, Suvin
  7. Hi all, I have a front panel with maximum 10 indicators. I can select how many indicators to be displayed in the front panel. So no. of front panel elements may vary from 1 to 10. I am having a fixed space in the front panel to accomodate all these indicators. What I need is, if I select for 2 indicators, size and position of these indicators should automatically adjust to accomodate in the given space. That is, if no.of indicators is less, size of indicators should increase accordingly, and if more no.of indicators selected, size of indicators should decrease accordingly. Position of the indicators also need to change inorder to make the front panel neat. Is it possible? Thanks in advance. Suvin
  8. Hi All, I want to create password for a zip/excel file programatically.Any ideas? Please help. Suvin
  9. I tried the row auto fit but unfortunately it is not serving my purpose. Row height is not adjusting according to the length of the content.I am attaching the picture of my code. Can somebody help?
  10. Thanks for that. I am new to labview and activex. Can you please share a sample vi to demonstrate the autofit.
  11. Hi all, I am facing a problem with report generation. Currently I am making reports using excel templates. I am attaching the picture of sample template here. As you can see B22 is the location of item 1 and B23 is the location for Description 1. Space for description is fixed. Now B30 is the location for item name 2 and B31 is the location for item description 2. My problem is, if description of the item 1 is very small, that already allocated space will be waste.Or if Description 1 is very large, I cannot accomodate it in the given space. So I need item name 2 to come exactly under description 1, rather than fixing the space for item name 2 and subsequent rows. In short, the allocation should be dynamic, according to the size of the descriptions. Is it possible through LABView? Any ideas? I dont need it to be done with excel only. I need that format of my quotation should be same thats all..Is there any other ways to do this? Thanks in advance, Suvin.
  12. thanks for that... is there any other method to do it from labview itself?
  13. Hi all, I have to concatenate two .pdf files (or two .xls files) into one sngle file. For example I have two pdf files with one page each. I have two concatenate this file into one single pdf file with two pages. Any ideas?
  14. Hi all, I want to drag a control/indicator in my front panel and i need to drop it in another place in the same front panel.. is this possible when vi is running? any ideas?
  15. instead of making udl, wire connectionstring directly to the open connection check http://connectionstrings.com/
  16. Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=myDataBase; User=myUsername;Password=myPassword;Option=3; this one is for Local machine. Create a database in My SQl server first and give the name instead of "myDatabase". Driver={MySQL ODBC 5.1 Driver};Server=myServerAddress;Database=myDataBase;User=myUsername; Password=myPassword;Option=3; this one is for remote connection. By default, the MySQL server will not be shared for remote computers. You have to change the privilleges http://bui4ever.com/...windows-server/ Hope this will help cheers
  17. Hi all, Thanks alot for these wondeful inputs..With all your help, i solved my problem. I connected MySQL server using the connection string. Once again thank you so much for the help. Suvin
  18. Thanks a lot for the reply Till now i was using SQLite database. But I dont think I can connect to a remote SQLite database using the connection string. I am planning to shift to SQL Server 2005. Can somebody help me to configure the SQL server 2005 for a client server model?
  19. Thanks a lot for the comments. Any idea about how to connect with a database sitting in a different computer? Now i am connecting by creating a datasource, as the database is in my PC. Now, when i put the database in another PC, how can I connect with the database? How should i link? Is there any way that i can specify server's IP address and database's location in the UDL file?
  20. Can somebody tell me how to access data from a database sitting on a different computer? I am using Sqlite database. It works fine in my computer. But i dont know how to put the database in a different computer (server) and access the data from there. In my program it is essential to make this for simultaneous use for different users.
×
×
  • Create New...

Important Information

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