Want to save file as a name of controls(Boolean Tick)

Hello all,
 I have many option on front panel like
1. Panel_One
2. Panel_Two
3.Panel_Three
As user will select outof this that name should be given to file name. But its boolean so how to transfer the label of Boolean Tick as file name? It should also include current date in file name i hv done that but I am not getting how to transfer the Labels also...
For Eg: file should be saved as 10.13.10_Panel_Two if i select Panel_two option.
If anyone know i would be very thankful...
Thanks in advance...
Pals
Solved!
Go to Solution.
Attachments:
Untitled 1.vi ‏11 KB

I was refering to the picture from Sivabalan.V. (I don't have LV on the network PC). The container of the Radio Buttons is a cluster. Create a property node for this cluster. Use the property 'Controls[]'. This returns an array of refnums (one for each checkbox).
You can also have a property node not linked to a control, then it accepts refnums. I can directly drop them from the palette or use a property node created from the Control and select 'disconnect from control'. Then wire the refnum into it.
Felix
www.aescusoft.de
My latest community nugget on producer/consumer design
My current blog: A journey through uml

Similar Messages

  • Want to Download Firefox4, popup asks if I want to save file

    I have Windows XP on a 11 yr. old NEC laptop. My Firefox is 3.6 something, I think there's another number after the 6. When I try to Download the new Firefox 4 a pop-up asks if I want to save the file, should I? I did Download Firefox 4 yesterday and I did click on save file but I don't think anything Downloaded, after a few minutes where it says "click here" to try and Download again the pop-up came up again and ask if I wanted to save file. Do I have to "save file" in order to Download F.F.4 and how can I tell if anything Downloaded? iGoogle is my Home Page. Thank you so much for any help. Grandpa Jerry.

    Go ahead and set it up as new. It's just new as far as iTunes is concerned. Shouldn't result in the loss of anything.

  • Save file in different name

    How can I save the screenshot image in different names?
    Example:When button 1 is click save in screenshot1.jpg, then button 1 is click again save in screenshot2.jpg ......etc
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim bmpScreenshot As Bitmap = New Bitmap(Panel1.Width, Panel1.Height - 300, PixelFormat.Format32bppArgb)
    ' Create a graphics object from the bitmap
    Dim gfxScreenshot As Graphics = Graphics.FromImage(bmpScreenshot)
    ' Take screenshot of just the panel control
    gfxScreenshot.CopyFromScreen(Me.PointToScreen(Panel1.Location), New Point(0, 0), Panel1.Size, CopyPixelOperation.SourceCopy)
    ' Save the screenshot
    bmpScreenshot.Save("D:\screenshot.jpg", Imaging.ImageFormat.Jpeg)
    End Sub
    Thanks

    If you only want to number the images like ScreenShot_0000, ScreenShot_0001, and so on...  Then you can use a class scoped integer variable to number them like below.  Also, you can draw the panel directly to a Bitmap without using the CopyFromScreen
    method.
    Public Class Form1
    Private count As Integer = 0
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim bmp As New Bitmap(Panel1.Width, Panel1.Height)
    Panel1.DrawToBitmap(bmp, New Rectangle(Point.Empty, Panel1.Size))
    Dim fn As String = "ScreenShot_" & count.ToString.PadLeft(4, "0"c) & ".jpg"
    Dim saveas As String = IO.Path.Combine("C:\TestFolder", fn)
    bmp.Save(saveas, Imaging.ImageFormat.Jpeg)
    count += 1
    End Sub
    End Class
     However, when you close your application and reopen it again it would start at ScreenShot_0000 again and would overwrite any images that are in that directory that have the same numbered names.  If you want it to automatically detect the last
    numbered file and start with the next number then you can use a While loop in the above code to avoid overwriting the existing images like this.
    Public Class Form1
    Private count As Integer = 0
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim bmp As New Bitmap(Panel1.Width, Panel1.Height)
    Panel1.DrawToBitmap(bmp, New Rectangle(Point.Empty, Panel1.Size))
    Dim fn As String = "ScreenShot_" & count.ToString.PadLeft(4, "0"c) & ".jpg"
    Dim saveas As String = IO.Path.Combine("C:\TestFolder", fn)
    While IO.File.Exists(saveas)
    count += 1
    fn = "ScreenShot_" & count.ToString.PadLeft(4, "0"c) & ".jpg"
    saveas = IO.Path.Combine("C:\TestFolder", fn)
    End While
    bmp.Save(saveas, Imaging.ImageFormat.Jpeg)
    count += 1
    End Sub
    End Class
    If you say it can`t be done then i`ll try it
    Hi IronRazerz,
    Thanks for your solution. I would like to ask you question about open files and rename files, I know that there are out of the question in this thread but the only way I can get the answer through your solution.
    My problem is when I open files "ScreenShot_0000.jpg" and then when I want to rename files the file will rename  "ScreenShot_0001" instant of "ScreenShot_0000.jpg".
    How can I suppose to open and rename files follow by sequence without interrupt?
    Below codes are my modified codes to open and rename files.
    Public Class Form1
    Private count As Integer = 0
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    'rename files
    Dim fn As String = "C:\Users\hwai\Desktop\Capture\ScreenShot_" & count.ToString.PadLeft(4, "0"c) & ".jpg"
    Dim saveas As String = IO.Path.Combine("C:\Users\hwai\Desktop\Capture\", fn)
    My.Computer.FileSystem.RenameFile(saveas, "Rename_" & count.ToString.PadLeft(4, "0"c) & ".jpg")
    count += 1
    End Sub
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    'open files
    Dim fn As String = "C:\Users\hwai\Desktop\Capture\ScreenShot_" & count.ToString.PadLeft(4, "0"c) & ".jpg"
    Dim saveas As String = IO.Path.Combine("C:\Users\hwai\Desktop\Capture\", fn)
    Dim ps2 As Process = Process.Start(saveas)
    count += 1
    End Sub
    End Class
    Thanks

  • JS - Save File as Field Name in the Data Merge Source File

    Hi All - I need some help...
    I'm trying to figure out the JavaScript code to save an indd file using the data merge source file field value.
    As an example...
    Let's say I have an invoice template called template.indd that is linked to invoice.txt.
    To make it easy, let's say the text file has 1 field called "invoice number" with a value of 123
    I run data merge.
    Now I want to save the merged indd file as 123.indd
    I've got everything figured out in JS except getting the source text file data into a variable to use when saving.  This one's been giving me fits for hours!
    Is this possible??
    Thanks very much

    Did you ever get this to work?

  • Don't want to save files online.

    Hello...
    My computer is Mac.  As I downloaded a PDF file, I clicked File --> Save As.
    Then I got 3 lines:
    Line 1: Save as (file name)
    Line 2: Where (desktop)
    Line 3: save to "online account"/ "acrobat.com" / "new account"
    Without noticing being given three options, I clicked "online account.", and then I discovered what I just clicked...
    It is a confidential file, and I don't want it to be saved online.
    (already saved successfully onto my desktop in my computer, which is OK.)
    Is there any way to make sure that there is no online version of it?
    Please help!  Thank you!

    There wasn't any offline option after clicking "Save As".  But as I checked cloud, there is no online version of the file.  So it's solved.
    Thank you for answering!

  • Is it possible to save files to one desktop so that they remain on that desktop and don't follow to other desktops when swiping between them? I want to save files and keep them on desktop 2 so that I can keep desktop 1 free of files but they follow.

    I want to keep my school files on desktop two so they are all in the same place, and use desktop one as a place to perhaps save photos or other files not school related. When I swipe between desktops, the school files move between the desktops as I swipe but I want to keep them on one desktop all the time.

    No, that can't be done.  All desktops will show what is in the 'Desktop' folder in your home folder.

  • IE saves file in different name(ex. some[1].somthing.txt ) why adds [1]?

    I am streaming the file content from servlet. My header & content type setting looks as follows.
    String downloadType = "application/octet-stream";
    res.setContentType(downloadType + "; name=\"" + fileName + "\"");
    res.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\";");
    When I click the link on the HTML page or if I right click and 'Save Target As' the file.
    Actual file name = some.somthing.txt
    but it saves As = some[1].somthing.txt
    If the file name contains only one '.' then it saves as same name, the problem arises only if the file name has more than one 'dot'.
    If any body has any idea please help me out..
    Note: The directory I chose to download doesn't have any files by name
    "some.somthing.txt" so it wasn't due to cache.

    If the file name contains only one '.' then it saves
    as same name, the problem arises only if the file name
    has more than one 'dot'.I encourage you to read RFC1806 and its successors. Start
    with RFC1806, '2.3 The Filename Parameter'. You should stick
    with 8.3 filenames.

  • Crertifiacte download in Safari Browser saves file with CGI name

    We need to download user certificate in FireFox and Safari browsers as a multiple MIME message.
    ---- Sample MIME message template - START ----
    Content-Type: multipart/mixed; boundary="ABABABABABAB"
    --ABABABABABAB
    Content-type: application/x-x509-user-cert
    <cert_blob binary here>
    --ABABABABABAB
    Content-Type:text/html
    <HTML content here>
    --ABABABABABAB--
    ---- Sample MIME message template - START ----
    In FireFox the certificate gets downloaded and installed properly.
    In an ideal world BROWSER should handle "Content-Type:
    application/x-x509-user-cert". Browser should recognize that a user
    certificate is being downloaded and provide steps for user to install.
    But Safari browser prompts user to save the file, where filename is same as the CGI. If you choose “Download”, you will be prompted to install certificate into KeyChain. Displaying the filename as CGI is bit odd and confuses end user.
    How this can be fixed. Why the end user experience is different than Firefox.
    Filename can be changed by using Content-Disposition: HTTP header, but then it would require to have different pages for Safari and Firefox.
    Any input is appreciated.
    Thanks

    hi..
    1. yes i am able to log the file name properly on the server side. Whatever name i use, in whatever language, its showing correctly on server logs.
    2. the content of the file is variable with japanese, english or any other language
    3. in firefox, the name is converted to ascii characters... a combination of asterix, underscores, letters and others.
    4 No i am not getting an exception.....the file isdownloaded with the kindof name i mentioned in above point but the contents are intact. So the contents of file really dont matter in this case. its only the name that is giving a problem.
    I found a solution which was by modifying the content-disposition field of the header. For firefox, it should be something like
    response.setHeader("Content-Disposition", "attachment;filename*=UTF-8''%D0%9C%D0%BE%D1%81%D0%BA%D0%B2%D0%B0.");
    where the numbers are the hex representation of the filename in bytes. ie
    byte[] utfName = filename.getBytes("utf-8");
    String nameToSend = /*Hex represenation of utfName with each hex character appended by % */
    This method is working in firefox but not IE. Now i need to get this sorted on that.
    ny help...

  • SAVEAS FILE WITH OTHER NAME

    HI
    I'm trying to create a script to save a file that is already open in the same directory with a different name.
    Example: nome_0000_art to nome_0000_closed
    I tried to create from another script that saves EPS but as I am new to the subject could not make it work
    Could anyone help me, how do I perform the command saveas automatically without showing the dialog window by changing the file name?

    WORKED PERFECTLY!!!
    My script was well
    >>>>>>>>>>>>>>>>
    #target illustrator
    var sourceDoc = app.activeDocument;
    var sourceName = sourceDoc.name;
    var sourceDoc_Path = File(sourceDoc.path);
    var substituir_sourceName = sourceName.replace (/ARTE\..{2,4}$/,'DIGITAL.ai');
    var substituir_Path = sourceDoc_Path+"/" + substituir_sourceName;
    alert("sourceName: "+sourceName+"\nsourceDoc_Path: "+sourceDoc_Path+"\nsubstituir_Path: "+substituir_Path);
    function exportFileToAI (dest) {
        if ( app.documents.length > 0 ) {
            var saveOptions = new IllustratorSaveOptions();
            var ai8Doc = new File(dest);
            saveOptions.compatibility = Compatibility.ILLUSTRATOR16;
            saveOptions.flattenOutput = OutputFlattening.PRESERVEAPPEARANCE;
            app.activeDocument.saveAs( ai8Doc, saveOptions );
    var destFilePath = substituir_Path;
    exportFileToAI (destFilePath);
    <<<<<<<<<<<<<<<<<<<<
    Thanks!!!

  • Error When Trying to Repair HD - Want to Save Files - Help

    Inexplicably, when I went to Restart, the screen got stuck at the grey apple with the spinning gear. Called Apple and they helped me reset PMU on bottom of console, then run Disk Utility to try to repair the HD. The error message that came up was "The underlying task reported failure on exit." It also said, "The volume HD could not be repaired." I would like to save the many files I have on this computer (photos, genealogy, mail, etc.). How do I do that? The application "DiskWarrior" was recommended. Will it help in this case to recover my files? I have an external HD which can be attached. Can this help?

    external drive must be a FireWire, then just connect it.
    restart iMac, hold down mouse button, CD tray will open up, put in OS install CD that came with the iMac (or retail OS CD)
    it will start off the CD eventually if the hard drive is not working.
    after that just follow the steps for installation, select external drive as a target (it'll have a yellow icon with FireWire logo)
    installing to the external drive may affect files already on the drive though, so if there are any important files on the external drive try at your own risk.

  • Photoshop cs4-snow leopard-automatically save files with same name.

    Does anyone know how to automatically update a file in another folder that has the same name as the current file? (photoshop cs4-snow leopard)

    Does this apply to all files you work on?
    How are the parallel files being defined – by location relative to the edited ones, filename, foldername, …?
    Will an index of the parallel files have to be written into the files’ metadata?
    And what’s behind this, why do you need multiple instances of the saved file, if I may ask?

  • Want to save files, documents, bookmarks, iTunes and iPhoto libraries, each in separate folders to external hard drive prior to full sweep and overwrite for the purpose of full sweep of Macbook?

    Never done this before and cannot find a manual for OS X 10.7.5 Lion. Basically I want to clean my 2009 Macbook6,1 as though I were selling it and start out fresh but before I attempt it I want to stash my contents (Files, Documents, Bookmarks, iTunes and iPhoto libraries to my external Hard Drive, all in separate folders to return them to Macbook after the full sweep and big overwrite. Can anyone help me?

    That may not be the best approach (see below).
    Format the drive for a Mac (see #1 in Using Disk Utility if you're not sure how).
    Create the folders you want on it.
    Open a second Finder window and drag what you want from one to the other.
    If you only copy the stuff listed, you'll lose your AddressBook, Mail, Calendars, preferences, and probably all sorts of other things.
    A better option might be to back up your entire system, either with Time Machine or one of the "cloning" apps.  Then you can restore selectively from TM, or copy selectively from the clone.

  • How can tell the script I want to save unsaved files but not replace the old one?

    Hi everyone
    I got this script
    var docs = app.documents; 
    for (var i = docs.length-1; i >= 0; i--) { 
        if (docs[i].saved == false) { 
            docs[i].save(new File(“~/Desktop/Document.indd”)); 
            docs[i].close(); 
        else { 
            docs[i].close(SaveOptions.YES); 
    close and save files
    but if I have two or more files, I want to save files like Doc1, Doc2...
    the new file will never replace the old one
    Can some one tell me how can I do that?
    Thanks
    Regard
    Teetan

    Hi,
    Change the 4th line like below:
            docs[i].save(new File("~/Desktop/Doc" + (i+1) + ".indd"));
    Vandy

  • Can I save files to the external hard drive if I am time machinging to that hard drive?  Not while time machine is doing it's thing of course, but any other time.

    I have a 2 TB Toshiba external hard drive that I want to save files to and also time machine to it (is that called making it a time capsule?).  I want to know if this is possible before I reformat the drive to the 'journaled' format to make it usable for time machining.  And if it is possible, how do I do it?  Just save/transfer stuff to the external hard drive like I normally would or do I have to di something different?  I just can't afford to have all 77 GB of my pictures on my internal hard drive anymore.
    Also, I am mainly trying to set up time machine so I can have a backup before I upgrade from Snow Leopard to Mavericks.
    Thank you!

    KP. wrote:
    I have a 2 TB Toshiba external hard drive that I want to save files to and also time machine to it (is that called making it a time capsule?).  I want to know if this is possible before I reformat the drive to the 'journaled' format to make it usable for time machining.  And if it is possible, how do I do it?  Just save/transfer stuff to the external hard drive like I normally would or do I have to di something different?  I just can't afford to have all 77 GB of my pictures on my internal hard drive anymore.
    Also, I am mainly trying to set up time machine so I can have a backup before I upgrade from Snow Leopard to Mavericks.
    Thank you!
    Time capsule is an Apple product, a combination router/HD specific for wireless TimeMachine.
    You can use Ext HD for saving files to etc as well
    Time Machine needs it own partition and needs to be the first partition on the Harddrive.
    Reformatting the drive GUID, extended journeled
    Done through DiskUtility

  • Save file to database using WEBUTIL

    Hi,
    I have used webutil_file_transfer.Client_To_AS_with_progress to upload files from client to Application Server using Forms 10g
    However, now i want to save file in database and not upload to database.
    Apart from the problem, I was wondering if there is documentation available on WEBUTIL
    Please help

    I want to store the file in the database as a BLOB.
    Earlier I was uploading to Application Server.
    I had used webutil_file_transfer.Client_To_AS_with_progress to upload to Server,
    I hope there is a procedure / function similar to Client_To_AS_with_progress in the webutil_file_transfer package

Maybe you are looking for

  • 10.9.4 Upgrade has crippled all of my macs

    I upgraded my MacMini and a couple of MacPros to the new 10.9.4 and now I enjoy the performance of a Newton. Rainbow spinning wheel.  I've updated Dropbox and a couple of other pieces of software with little luck. Any advice?   Here is a ErtreCheck r

  • Number of transactions in the DB

    Hello, How can i find out the number of transactions occurred in a Database. (... for a given day / within 1 hr) like; Numbers of inserts/deletes/selects/updates occurred in the db? Is it possible to get such information. regards, Zerandib

  • Oracle 9i client and TOAD

    Hi, I am trying to use Toad tool to connect to Oracle database and view/edit sql tables queries etc For that purpose I also installed Oracle 9i client application on windows xp I have tnsnames.ora and sql ora file in my Oracle path .... network/admin

  • XQuery Update Facility in XMLDB?

    Hi I didn't find information about XQuery Update Facility support or XUpdate support in Oracle XML DB. Do you have such info? Regards, --drkm                                                                                                             

  • TREX Error 2029

    Hi, I am implmenting E-Rec 6.0 and I am having problems setting up TREX 7.0 and searching the index. In transaction SKPR07 I have selected document class HR_DOC and document area HR_KW then click on TEST SEARCH. Using a search criteria of * I either