Recent content by kumark

  1. K

    Convert excel to Pdf

    Hi All, i need a access vba code on click of the button i need to perform the below task I have a folder in which there are many excel files. I want to covert the all the excel file to pdf particularly only the sheet2 and sheet3. The filename of the pdf should be as same as the workbook...
  2. K

    Parsing Multiple Values from a Textbox

    Hi Guys, Thanks for all your Replies.. I got the solution db.Execute " select * into New_Tbl from Tbl_Nme where invid in (" & Text63 & ")" I changed the property of the textbox enter Key Behavior from default to new line entry. Manually i had ended each line with comma .. Thanks for the...
  3. K

    Import Excel File into Access VBA code

    Hi, Import the excel file using the docmd.acimport, and u could write a appending query to insert the data to your main table.. Or rename the excel headers to your standard after importing the file. Regards Kumar
  4. K

    Input box Search problem

    Hi, May be this file from the link could help me.. just a suggestion. https://docs.google.com/uc?export=download&id=0B8qpusIRMN_ecEQwa3V6bjZQYUU Kumar
  5. K

    Parsing Multiple Values from a Textbox

    Hi All, I have a form in which the user has the privilege to download some data from the table. the user will paste some of the numbers to the textbox from the excel in order to download the specific data. i need to write a query to parse the textbox using the in condition I am attaching...
  6. K

    Filtering the List box

    I got the Solution...... Copy and paste the same code used for searching the primary textbox. on change Event to the same country name text box
  7. K

    Filtering the List box

    Hi All, I am using a form in which i am filtering the results in the list box based on the textbox value. I am dynamically switching 3 row sources for the list box. My Need is that the results produced in the listbox should get filtered again when typing in the second text box i.e based o the...
  8. K

    Splitting

    I want to use it against a column.. not a "Hard Coded" value "Public Function Split(ByVal InputText As String, _ Optional ByVal Delimiter As String) As Variant ' This function splits the sentence in InputText into ' words and returns a string array of the words. Each ' element...
  9. K

    Splitting

    Nope its not working i checked with the Function...can u suggest any other Method
  10. K

    Splitting

    Please Find the Attachment .. The Column Values Should get Splitted..
  11. K

    Search Word

    This Query Can be used to distinguish the items ... suppose if u are working on huge database which contains only engineering items in that there might be some medical items so if we get some keywords for it ... then easy to flag it off and remove it
  12. K

    Search Word

    I got the Solution .... select * from t1, t2 where t1.STRING like '%' + t2.KEYS + '%' update t1 set validate='found' from t1 inner join t2 on t1.STRING like '%' + t2.KEYS + '%'
  13. K

    Searching word

    I got the Solution .... select * from t1, t2 where t1.STRING like '%' + t2.KEYS + '%' update t1 set validate='found' from t1 inner join t2 on t1.STRING like '%' + t2.KEYS + '%'
  14. K

    Searching word

    Seraching keyword in a string ..Please find the enclosed attachment
  15. K

    Search Word

    Searching a Keyword in the string..Please Find the Enclosed Attachment Regards Kumar
Back
Top Bottom