Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kavya

  1. kavya

    stumped on how to check or uncheck a check box in pdf form through vba

    Setting the value to 'Yes' or 'No' worked. Thanks
  2. kavya

    programmaticall check or uncheck a check box in pdf form

    Using VBA in MS Access trying to prefill a pdf form...stumped on how to programmatically fill a check box..Question: Using VBA in MS Access trying to prefill a pdf form... I have the following code to prefill if it is text box, stuck on how to check or uncheck a check box based on a field...
  3. kavya

    stumped on how to check or uncheck a check box in pdf form through vba

    Using VBA in MS Access trying to prefill a pdf form... I have the following code to prefill if it is text box, stuck on how to check or uncheck a check box based on a field value. Dim AcroApp As Acrobat.CAcroApp Dim pdDoc As Acrobat.CAcroPDDoc Dim fcount As Long Dim sFieldName As String Dim...
  4. kavya

    Question related to word form - copying labels and bookmarks

    Sorry for the confusion, a) I need to design a survey form, part of it will have fields being populated from the access database, other part will have fields that user will manually enter then will need to be read into the database again. I am not sure I am going in the right approach, would...
  5. kavya

    Question related to word form - copying labels and bookmarks

    In word form, how to copy the field name labels and bookmarks to various child records.. I have a word form eg with a Supplier information and different products the supplier supplied A supplier might supply one or more products. Rather than having #1, #2, #3, #4 sections for different...
  6. kavya

    to be able to use some of adobe plugins and library..

    to be able to use some of adobe plugins and library.. like aforaut 2.0 library and acrobat.tlb from acrobat 6 My program is referencing both the files mentioned in vba - so would the user need to have professional or is standard version enough to be able to use that vba program. Please suggest
  7. kavya

    capturing time related entry in the adobe form text control

    have a text controls on adobe form to capture time entry with format 'h:MM tt' Getting the 'value entered does not match the format of the field' error while entering - eg '08' How to be able to enter time like 08:05 AM or 12:45 PM etc. What format the text box needs to be.
  8. kavya

    filling out Adobe forms by user and saving it.

    our form is created in adobe acrobat 9 professional. This form will be sent to couple of users who need to fill and information needs to be saved. Later the information from the form will be read into a file - that is the ultimate task. But what steps are needed after the form creation for...
  9. kavya

    is there a way to open a same word document and update it each time..

    is there a way to open a same word document generated from template and update it..Question: is there a way to open a same word document generated from template and update it.. That is to open a word template with some auto populated information from the database and some of the information...
  10. kavya

    Excel vba program giving error when running second time...

    Actually - I spoke too soon... It deletes certain columns only, for some reasons - not deleting columns tblOngoing_casemgr and tblActive_casemgr The above mentioned columns are covered in below line. 'xlWks.Cells(1, iCol) Like "tblOngoing*" Or xlWks.Cells(1, iCol) Like "tblActive*" Dim iCol...
  11. kavya

    Excel vba program giving error when running second time...

    I modified the code and tested without using another function call, entered the code directly in the procedure 'This is what I have Dim iCol As Integer For iCol = 1 To xlWkb.ActiveSheet.UsedRange.Columns.count If xlWks.Cells(1, iCol) Like "tblOngoing*" Or xlWks.Cells(1, iCol) Like...
  12. kavya

    Excel vba program giving error when running second time...

    I could Isolate the cause of the problem when executing the subprocedure below. The function of the procedure is to delete specific columns based on the cell contents in first row. As the column number may be different each time, it has to look at cell content instead. I got this somewhere in...

Part and Inventory Search

Back
Top