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 strongm 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: mobashir
  • Order by date
  1. mobashir

    Reduce CPU load

    for example while i<10000 doEvents print i i=i+1 wend now in every loop it will leave cpu for other waiting processes on DoEvents statement, and will print i when it will get cpu again.
  2. mobashir

    Child WIndow without MDI!!!

    What a wonderfull use of setParent API as vbSun's picture preview in commondialog box.1*4u
  3. mobashir

    Getting the caption of an active window

    use GetForeGroundWindow Api to retrieve handle of active window. and use getWindowText for caption. See this example code Public Declare Function GetForegroundWindow Lib &quot;user32&quot; () As Long Public Declare Function GetWindowText Lib &quot;user32&quot; Alias...
  4. mobashir

    picture on a MSFlexGrid

    Following code will load &quot;c:\picture.bmp&quot; image in 1st column of 1st row of flex grid (Grd). 'Code Grd.Row = 0 Grd.Col = 0 Set Grd.CellPicture = LoadPicture(&quot;c:\picture.bmp&quot;)
  5. mobashir

    Class question

    Set duck1 = duck2
  6. mobashir

    Change the database at run time for Crystal Reports

    To change location of db file for specific table rpt1.Database.Tables(1).Location = &quot;c:\abc.mdb&quot; Or Assign recordset to table, recordset can be popultated from any datasource e-g assume Rs as ADODB.Recordset rpt1.Database.Tables(1).SetDataSource Rs
  7. mobashir

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Here is a complete sample code for sleep function of kernel32 library .just copy and past to your new vbproject 'This project needs a button Private Declare Sub Sleep Lib &quot;kernel32&quot; (ByVal dwMilliseconds As Long) Private Sub Command1_Click() Me.Caption = &quot;Your system will...
  8. mobashir

    Problem With VB and CR8.5. Blank Graphs

    I have also same problem....and have already posted threads about it, but still unable to deploy graph reports.
  9. mobashir

    Embed FLASH Projector into VB form

    flash activx control get installed with flash application. you can use it.
  10. mobashir

    images

    johnwm, why you post the reference of API help in this thread?I am still thinking.... for gladiator5: a code to do this. If image1.Left + image1.Width >= image2.Left _ And image1.Left <= image2.Left + image2.Width _ And image1.Top <= image2.Top + image2.Height _ And image1.Top...
  11. mobashir

    minimize all forms related to a project

    You can also use setParent API Function. using this function you can open forms in any control or form without using MDI. even in a frame or picture boxes.let me know If you have not solved the problem still, I will post the code to open forms in a main form using this API.
  12. mobashir

    Accessing Msaccess 2000 from VB6

    Use Microsoft ADO Data control 6.
  13. mobashir

    Delete Login's for MSN Messenger?

    I am facing same problem. so same question from me!!!
  14. mobashir

    Update an XML file, then save it

    use save method of xml DOM object xml.save [&quot;XmlFileNameWithPathURL&quot;]

Part and Inventory Search

Back
Top