How to increase count in a text increases on each new form submitted?

Hi All,
I have a field in infopath form as 'RefNo', whenever new form submitted, it count should increase. How to achieve this scenario?
Thanks in advance!

I'm not sure if you can do this to display on form load, but you could do this on submit and edit form. 
Refer to the following posts,
http://sharepointryan.com/2011/05/25/add-an-auto-numbering-field-to-an-infopath-form/
http://sharepointfromthetop.wordpress.com/2011/08/31/auto-numbering-infopath-forms/
--Cheers

Similar Messages

  • How to increase performance of adobe forms of MSS Business package

    Hi
    We have implemented MSS business package with  PCR adobe forms.
    Portal NW04 SP18, ERP 2004 , ADS is Nw04sp16 and abode reader 7.0.7.
    we have develped own PCR using existing ISR frame work.
    every thing working fine.but user facing performance problem like some times while opening pcr form ,browser gets hang up.
    Is there any way to increase performance of adobe forms of PCR.
    thanks In advance
    Gopal

    Hi!
    Interactive Forms need a lot of performance on the client side. If the client hangy up I think this is realted to client issues.
    Also I would update the forms server to be the same version as the other NW components (Portal).
    Sigi

  • How can i pass anything that i display on a new form pictureBox to display it on form1 pictureBox1 ?

    I did a new form. and to show the new form i'm doing in Form1:
    ScanningClouds sc = new ScanningClouds(Next_File);
    sc.FormClosing += sc_FormClosing;
    sc.Show();
    And in the new form i have a pictureBox in the designer and i display things on it the new form code is a bit long.
    Now instead showing everything on the new form pictureBox i want to display it on the form1 pictureBox1.
    How can i do so when i click the button to show the new form instead it will not show the new form but only pass anything to the form1 pictureBox1 and show it on the form1 pictureBox1 ?
    This is the new form constructor:
    public ScanningClouds(string InitGifFile)
    InitializeComponent();
    pen = new Pen(Color.Red, 3);
    formloadfirsttime = true;
    numericUpDown1.Value = 200;
    brush = new SolidBrush(Color.Red);
    trackBar2.Minimum = 1;
    trackBar2.Enabled = false;
    bmpnew = new Bitmap(512, 512);
    label1.Text = "";
    radar_scale = Properties.Resources.radar_scale_heb;
    label1.Width = radar_scale.Width;
    label1.Height = radar_scale.Height;
    label1.Image = radar_scale;
    path_exe = Path.GetDirectoryName(Application.LocalUserAppDataPath);
    ScanClouds = Path.Combine(path_exe, ScanClouds);
    if (!Directory.Exists(ScanClouds))
    Directory.CreateDirectory(ScanClouds);
    ConvertedBmpDir = Path.Combine(ScanClouds, ConvertedBmpDir);
    if (!Directory.Exists(ConvertedBmpDir))
    Directory.CreateDirectory(ConvertedBmpDir);
    radarImagesDirectory = Options_DB.Get_Radar_Images_Download_Directory();
    radarImagesDirectory = Path.Combine(path_exe, radarImagesDirectory);
    dir1 = new DirectoryInfo(radarImagesDirectory);
    trackBar1FileInfo = dir1.GetFiles("*.gif");
    trackBar1.Minimum = 0;
    trackBar1.Maximum = trackBar1FileInfo.Length -1;
    trackBar1.Value = trackBar1.Maximum;
    b = new Bitmap(InitGifFile);
    b1 = new Bitmap(InitGifFile);
    pictureBox1.Image = b;
    ConvertedBmp = ConvertTo24(InitGifFile);
    mymem = ToStream(ConvertedBmp, ImageFormat.Bmp);
    startButton.Enabled = true;
    pauseButton.Enabled = false;
    It's getting file name now and i'm converting it to bmp and put it in the pictureBox.
    But instead the local new form pictureBox1 i want to display it on the form1 pictureBox1.

    Once again we can refer to BonnieB's blog on the subject.
    http://geek-goddess-bonnie.blogspot.com/2011/01/passing-data-between-forms.html
    http://geek-goddess-bonnie.blogspot.com/2012/12/passing-data-between-forms-redux_31.html
    I think that method 3 on her first post is the one you're looking for.

  • How do I condense my itunes files? As each new OS came out, I put it on a new drive...now I have 4 SSD drives, with 2 copies of iTunes..how do I condense them all down to one all-encompassing library?

    As each new OS came out, I put it on a new drive...now I have 4 SSD drives, with 4 copies of iTunes..how do I condense them all down to one all-encompassing library? Early 2008 Mac Pro Tower.

    dsf,
    Not sure exactly how you moved your library but this link may help
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive/

  • How to increase font size in form that comes to me?

    Hi guys, how would I go about increasing the size of the form content that I receive when clients fill in this form: http://www.gvcheese.co.nz/nett_wholesale.html
    I've tried applying classes to the text fields but this has no effect on the form data.
    Thanks in advance for advice,
    Jo

    Your Form to email processing script sends data to your email address, right?  If you're having trouble reading your email,change your display font sizes.
    Win XP:
    Control Panel ->  Appearance and Themes -> Display -> Appearance -> Font Size.
    Win Vista:
    Control Panel -> Appearance and Personalization -> Personalization -> Adjust Font Size.
    Win 7:
    Control Panel-> All Control panel items-> Display.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How to increase formUID to a form created with screen painter

    Hi,
    I've got a problem with my form. I created a form with screen painter but i can't succeed to increase my UID form.
    For example, when i open my first form, the UID is always at FP_0.
    My script:
    private string FormUID = null;
      public FP_Form(int NumInstance_)
                this.NumInstance = NumInstance_;
    this.FormUID = "FP" + NumInstance.ToString();
                load();
              oDBDataSource = oForm.DataSources.DBDataSources.Add(DBDataSourceTable);
              SBO_Application.ItemEvent += new SAPbouiCOM._IApplicationEvents_ItemEventEventHandler(SBO_Application_ItemEvent);
    private void SBO_Application_ItemEvent(string _FormUID, ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent)
                BubbleEvent = true;
                try
    if (_FormUID == this.FormUID) //here "_FormUID" is increased but "this.FormUID" is still = FP_0
                        switch (pVal.EventType)// selon le type d'action executée
                            case SAPbouiCOM.BoEventTypes.et_FORM_LOAD:
                                if (pVal.BeforeAction == true)
                                    SAPbouiCOM.ComboBox List_reseau = (SAPbouiCOM.ComboBox)oForm.Items.Item("5").Specific;
                                    List_reseau.ValidValues.Add("1", "test");
                               break;
                           case ...
                              break;
    Please help.
    Regards,
    Zakia.

    Hi J.
    The answer is yes You just have to give your form a unique id.
    1) Give your form in screen painter a name like BTWO_DYNAMIC_UID (just plain text).
    2) Make sure your <i>FormType</i> and <i>appformnumber</i> have a unique number (i.e. 2000060001). You can do this in the xml source.
    3) By loading your document replace the BTWO_DYNAMIC_UID with an unique id. I have a counter that's a member of my class and increase that number to get a unique id (BTWO_F_1, BTWO_F_2 etc)
    I have added a code sample, SBOApplication is my SAP application object and mFormNumber is a member (integer) of my class.
    <i>Succes d'r mee, en als 't nie lukt hoor ik het wel... ;)</i>
    <b>Code (C#):</b>
    // New xml document
    XmlDocument oXmlDoc = new XmlDocument();
    private Form LoadUniqueForm(string AMyFile)
      // Define your path to
      sPath = @"Forms" + AMyFile;
      // Load the form
      oXmlDoc.Load(sPath);
      // Replace the string with an unique id
      mFormNumber++;
      string sXML = oXmlDoc.InnerXml.Replace("BTWO_DYNAMIC_UID", "BTWO_F_" + mFormNumber.ToString());
      // load the XML file in SAP
      SBOApplication.LoadBatchActions(ref sXML);
      // Return the form
      return SBOApplication.Forms.Item("BTWO_F_" + mFormNumber.ToString());

  • How do I count the unique text entries in a column

    I want to count thenumber of unique text entries in a column how do I do that?

    Or, if you will need to do this on different documents, you can copy this script into AppleScript Editor, select the cells in whichever document you are working on, and run. No need to set up the formulas and extra column again.
    SG
    --select range of cells, run; provides count of distinct values
    tell application "Numbers" to tell the front document to tell active sheet
              set selectedTable to (the first table whose class of selection range is range)
              tell selectedTable to tell the selection range
                        set distinctValues to {}
                        repeat with aCell in its cells
                                  tell aCell
                                            if its value is not in distinctValues then ¬
                                                      copy its value to the end of distinctValues
                                  end tell
                        end repeat
                        return count of distinctValues
              end tell
    end tell
    --end of script

  • How do you make an expanadble text box in a pdf form?

    How do you make a text box expand automatically in a pdf form?

    Hi;
    Is this a question related to FormsCentral or to PDF forms in general?  If it is for PDF forms you should ask in the Acrobat forms forums: http://forums.adobe.com/community/acrobat/forms
    If it is related to FormsCentral the text boxes do not expand automatically in a PDF, except for when saving a Response as a PDF form, when the responses from the View Responses tab are saved as a PDF form all Multi-line text fields are expanded to fit the text the user had entered.
    Thanks,
    Josh

  • How do I make all the text entered in a fillable form print?

    I have created fillable forms for patients to fill out on our website then print and bring with them.  When they print the form, all of the information they entered does not print.  How can I make it all print??

    Hi Dana,
    Could you please let me know how were these PDF forms created.
    You might also need to check in 'File> Properties> Security' tab whether 'filling of form fields' options is allowed or not.
    Hope to hear from you.
    Regards,
    Anubha

  • Editing text after designing a new form and converting it in to pdf

    I designed a form and converted it in to PDF format for printing. The form has some formatting errors and needs to be edited. However attempt to do so results in a message stating that it is a secure documents and can not be edited. This is inspite of the fact that I have not placed any security restriction on it or on the folde in which it is stored. Can anyone help?
    Moneish

    Hi,
    Just providing some information in addition to George's reply.
    The PDF created by FormsCentral, assuming you are collecting responses online, is configured to enable extended features in Adobe Reader to allow respondents to save the form. To edit the PDF in Adobe Acrobat you must use the File > Save a Copy... menuitem to create a copy of the document that is not Reader-extended.
    When you have finished editing the document you should remember to re-configure the PDF for fill-in and save within Adobe Reader.
    Regards,
    Brian

  • Am I able to create a numbered field that increases each time a new form is created?

    I am creating a form that will include a job number that needs to increase with each new job.
    I would rather the document automatically update the job number instead of the operator.

    by opening the original form using Acrobat Pro.  Using the "replace" feature under pages you can remove the old source and replace with a new one.  Save the file then close.  Reopen the file and chose create.  You can then modify fields if you moved the source around.  Kludgy but it worked.

  • How to increase the size of text boxes in FCPX without stretching the text inside?

    How to increase the size of text boxes in FCPX without stretching the text inside?

    There are two basic Title formats — I should say Layouts — available:  Text (plain) and Paragraph.  (The plain text version usually does not appear with the blue dot controls — those generally appear for the paragraph type control.)
    If the Title is using a Paragraph layout, it's like having a mini version of Text Edit available inside FCPX. You can tell when you click on the text (when the title is selected) -- a rectangle will appear around the text like so:
    double clicking on the text will give you the bounds controls which you can use to redefine the text area without distorting the text. Once selected, notice the button that appears in the top right corner of the canvas:
    Pressing that will activate the ruler. You can right click on the ruler and add Tab Stops (left, right, center and decimal.)
    So if the title uses paragraph formatting, you can create a very WYSIWYG type of display text (use the Text inspector to alter text selections within the paragraph bounds.)

  • How to increase the number of characters in Text Edit??

    Hi,
      How to increase the number of characters we enter in the Text Edit, for example i can't enter not more than 255 characters. If to enter upto 500 char, what to do.
    Thanks and regards,
    Karthik

    We can't restrict the number of characters a UI element can take. Rows and columns properties are to specify the visible no of rows and columns.
    If u want a restriction in the number of characters you have to create a simple type and set it to a context attribute and then map it to the text view.

  • How to increase the letter size of the email text

    how to increase the letter size of the email text
    == as soon as I started using the service

    If you set a higher Page Zoom level for that website Firefox should remember that zoom level and restore that level when you return to that website. See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom
    That feature doesn't work in the Private Browsing mode, and you'll lose that setting if you clear your browser history.

  • How to increase KMS current count

    Dear all,
    Recently i've setup a single KMS host. The installation process ran succesfully, TCP port for KMS is opened - use standard port 1688, SRV record is created.
    The thing is my domained PC (Windows 7) cannot activate using the KMS host. If i trigger activation manually (slmgr /ato) I got error 0xC004F038 saying that the count reported by KMS is sufficient. In the eventvwr, 12289 event showing that the expected count
    is 25, my KMS host counter is still at 14.
    I search solutions for this and the answer is by increase the counter. The thing is how do i do that when i cannot active more client?
    Thanks for the help.
    Best regards.

    Hello Meinolf,
    Actually Don - tesgroup is correct. 
    the count is the combination of Windows KMS clients either server or client machines that is used.
    There is only one count for Windows, so 10 server plus 15 client machines will be 25 machines.
    As for the count of 54, you can look at the CMID's in the KMS HOST event log.
    Look at the event 12290, the count is based on the unique CMIDS, that contacted the KMS host in the past 30 days.
    After 30 days, machines age out of the count unless they renew which would be new 12290 event.
    Thanks, Darrell Gorter [MSFT] This posting is provided "AS IS" with no warranties, and confers no rights. VAMT - Volume Activation Management Tool - Download link http://www.microsoft.com/downloads/details.aspx?FamilyID=ec7156d2-2864-49ee-bfcb-777b898ad582&displaylang=en
    Hello,
    thanks for the clarification. :-)
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

Maybe you are looking for

  • CS3 Bridge & Photoshop freezing after an hours use.

    G5/2.0ghz/dual/3gigRAM/OSX58:  When I use CS3 Photoshop and CS3 Bridge at the same time, after about an hours use, Photoshop will freeze with the spinning beachball when I double click one image in Bridge to open it up in Photoshop. Anyone know of an

  • Does safari have a homepage on an iPad

    Does safari have a homepage on the iPad?

  • Making Banners and Signatures in Photoshop

    I am trying out the trial version of Photoshop CS4 before spending money on something that may be beyond my ability.  Does anyone know if there is a book or website out there that can teach me how to do banners and signatures step-by-step?  Maybe CS4

  • How to add applications to App. store wishlist?

    Hi Apple members. How to add apps to a wishlist? Regards

  • Dolby DIGITAL(AC-3)

    Dolby DIGITAL(AC-3)? Hello everyone I have been happily using CL products for many years, with 2 speakers. Recently I was given a Sherwood R-925 Audio/Video Reciever. From having a read of its manual it appears it will accept both optical and coaxial