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 SkipVought 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: *

  1. sairajendra

    I lost my source code(proj inVB6).I just have the EXE.

    hi everyone, I lost the source code of my project built in VB6. I just got the exe.I am looking for VBdecompilers.Please help me!!!!
  2. sairajendra

    How to detect terminals on a network?

    Hi all, How to detect terminals on a network? Any idea is accepted. (I think it can be done either by winsocks or API calls!!) Please help!!!
  3. sairajendra

    can this be done?

    hi joeythelips, try this code if rs is the name of the recordset u r using: dim dt as date rs.movelast do while not rs.bof if isnull(rs("date")) then rs.moveprevious else dt=rs("date") 'copy the date if it is not null exit do end if loop rs.movelast...
  4. sairajendra

    MDI - how to determine child form that called another child form

    hi craig, I could give u a suggestion that can make u more happy and comfortable.Donot call another form for editing.jus have a frame which contains all the controls for editing.Show the frame when edit is clicked.once edit is over u can make the frame invisible.This way u can avoid connecting...
  5. sairajendra

    priting more than one form on the same page

    hi peppy, i could give u a solution. goto scale mode property of the form and set it to inches. i think u can now set the width and height of the form to much higher values. the printing then is quite normal.jus say form.printForm I tried this and this works. Rajendra sairajendra@hotmail.com
  6. sairajendra

    On frmDocument--resizing

    hi mr.wujen, The solution to ur problem comes with VB itself. Start new project and start Application wizard. When you are prompted to select MDI,SDI or explorer style choose explorer. click the finish button. look into the code.The program uses two lists,a treeview and a listview.there are...
  7. sairajendra

    ActiveX can't create object and msado15.dll cannot register

    hi mr.doris, Is your application working perfect at the first instance? i think such an error appears if there is any error in the code.You must have used a createobject function where you must be using getobject.or the particular application you are refering to in your application is not...
  8. sairajendra

    How do I Stay WITHIN PowerPoint slide and INVOKE VB6

    hi mr.RDC, I seem to be getting your problem.I view the problem this way.When you are giving the presentation(.ppt) if you are invoking the presentation from powerpoint designtime env you can open VB by clicking on the invoke VB editor icon present in the power point IDE.But you need to stop...
  9. sairajendra

    Visual Basic Application for MAC

    Can i build an App in VB6 and port it to MAC os? I want to give a custom print preview provision for the documents i am printing from my applications.please suggest an idea!!!

Part and Inventory Search

Back
Top