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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: shanmugham
  • Content: Threads
  • Order by date
  1. shanmugham

    printing a number with right justification

    Dear Sir, i have a number a = 10 b = 1000 c = 1234567 i want to print the following format 10 1000 1234567 how to do this printing a numer with right justification thanks in advance shan
  2. shanmugham

    DB Server Conectivity

    access97 vb6 Windows XP i need to write a very small program updating a database which is located on another machine on a local area network and i have no clue where to start this., how can 2 pcs update the same database at the same time this is how i used to connect to mdb on my own pc cmk =...
  3. shanmugham

    Check box - small doubt

    i have chk1 to chk23 check boxes (23 boxes) i want to clear all check box value as False the following logic gives error dim temp as string For i = 1 To 23 temp = "chk" + CStr(i) temp.Value = False Next i thanks in advance shan
  4. shanmugham

    creating shortcut keys- F1 for 2004

    Dear Friends, I am currently developing an application and was wondering how to create a shortcut key which is accessible from particualr form of my tool. Basicly, I want to register F1 to "2004", do a 2004 action. The user should be able to press F1 from a form and the action should...
  5. shanmugham

    Date doubt

    Dear Friends my date input is Purchase date is : "01-jan-2004" automatically calculate exp date, that is exactly one year that is 31-dec-2004 example : "29-feb-2004" next year as "28-feb-2004" how can i do, i developed code give some problem in a particluar...
  6. shanmugham

    printing text file - problem

    Dear friends i have a text file "doc6.txt" that text file was created through program (fox pro - text file) i wanted to take the print out thru laser rint thru the following VB program ================================================= On Error GoTo error1 bcancel = False...
  7. shanmugham

    If file exist

    what is the equivalent command for if file exist ?? ...if("c:\abc\xyz.txt") its o.k. thanks in advance shan
  8. shanmugham

    InputBox as password character(*)?

    Hello, expert Is there any way to make the text entered in the InputBox as password character(*)? thanks in advance shan
  9. shanmugham

    can't find project or library problem

    Friends, in my project, at the time of running, it shows the error " can't find project or library" in the places of trim/chr/date/time functions. what is the problem any libraries need to add???? thanks in advance shan
  10. shanmugham

    glow or differentiate a particular word in a text line

    Dear friends i am using vb6, access 97, ADO & msflexgrid displaying lines in grid lines using this following commands sstring is a text (approx 500 chrs) phrase = sString blankposition = InStr(1, phrase, vbCrLf) While blankposition <> 0 nextword = Left$(phrase, blankposition - 1) str1 =...
  11. shanmugham

    memo field and like function

    Dear Friends, i am new in vb i am using vb6 and access 97 access db contains the fields Gcno - numeric Title - memo resn - memo i want to search the title consisting the word &quot;Basic&quot; how to search i used the command searchtext = &quot;asic&quot; ' that is part word of basic...
  12. shanmugham

    record is too large

    Dear Sirs, i have the following code str1 = LTrim(RTrim(str1)) for i = 1 to 100 Select Case ctr Case 1 rs(&quot;line1&quot;) = str1 Case 2 rs(&quot;line2&quot;) = str1 Case 3 rs(&quot;line3&quot;) = str1 Case 4 rs(&quot;line4&quot;) = str1 Case 5 rs(&quot;line5&quot;) = str1 Case 6...
  13. shanmugham

    processing html files

    i have a file book.html that file, open it through internet explorer that image (book) open and close it continuosly, but vb unable to do this. how to solve this thanks in advance shan
  14. shanmugham

    in a text box, storing a local language character

    Dear Sir(s), i am using vb6 and access 97 I want to cut and paste to the text box, the character already typed was my local language just like chinese,french etc. how to do this thanks in advance shan
  15. shanmugham

    page length increase

    i am using printer.print command for my report (direct)printing now Printing 12 lines only per page, i want to increase the page length up to 30 lines please give me a exact command for page lenth increasing shan
  16. shanmugham

    simple combo doubt

    i have a combo with list of names are Shanmugham Ramalingam Murugam Siva Sivalingam Muruganandham just i type the letter S immediatly combo select the name Shanmugham (automatically come that name on the combo box) next i type Si immediatly selct the name Siva how can i do this in combo shan
  17. shanmugham

    = command for type abc.txt&gt;prn (Dos command)

    i have a text file abc.txt i have only dot matrix printer i want to print that file i tried through vb code with line input command it works fine but the problem is our printer prints each character by half and half(double times in each chr) like Doc print type but in dos command...
  18. shanmugham

    word wrap in vb like doc file

    i have the text &quot;visul basic 6 differ from earlier versions of this popular programming language, the biggest and most obivious difference is in data access, where the long-time data access objects.&quot; i want to split in to wordwrap method & each line consisting at most 25 chrs like...
  19. shanmugham

    how to open pdf file thru vb

    i have a different pdf files searching a particular file is not a problem opening a particular file is a problem how to open a pdf file thru vb pl. help, write complete step please. thanks in advance shanmugham
  20. shanmugham

    open pdf/doc file thru vb

    I need your advice i have 9,500 question papers.. in vaious faculties and different subject i want to scan each question paper and store it in a separate file name (9,500 file names) in pdf/doc format i want to open the particlar file thru visualbasic front end locating a particular file...

Part and Inventory Search

Back
Top