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 Asif

  1. Asif

    Is a program running?

    your are right App is for application object in VB but that is for your VB application is currently running. You can check instanances and other properties of that application. As far as Explore or NetEscape is concerned you can use VBA application objects. I have no idea exactly what you have...
  2. Asif

    Changing any registry value

    In VB6 you can do registry mainuplation through GetSetting and SaveSetting registry function. For more detail see MSDN help for these functions.
  3. Asif

    Need to expand database on some other drive or volume

    Anybody on this forum advise me how to define or configure database to expand itself to some other volume or drive of the server when there is no space left on the original volume, where the database has already created at initially.
  4. Asif

    FoxPro 2.6 data transfer to SQL Server 7.0 problem

    Is there a way to transfer memo field of FoxPro 2.6 into Sql Database from DTS package utility. I have tried to transfer dbf files of FoxPro 2.6 into SQL database it is not transfering memo field of my FoxPro 2.6 into SQL database table. Can anybody help me to advise some procedure in DTS.
  5. Asif

    How Can I make An Install Wizard With VB6 ????

    There is Deployment and Package wizard in VB6. Go into Tools and from there select Add-in manager and select deployment and package wizard upload/startup. You see icon on your toolbar and option will be available in Add-in. Start exploring deployment and package wizard
  6. Asif

    Windows NT 4.0 Printing Security

    Can any body advise me to get NT 4.0 Server printing security configuration in NT 4.0 or advise me some third party software which can do this to stop user from printing or allow users can printing between specified time period.<br><br>I now something is in the market to achive this kind of task...
  7. Asif

    using Microsoft FlexGrid 6.0

    Please try Colwidth(&lt;your Cell reference&gt;) = Len(&lt;of your text&gt;)<br>If I am not wrong to understand your question.
  8. Asif

    Package and Deployment Wizard

    I don't think so there is any way to stop Package and Deployment Wizard from creating new file every time and don't ask prompt. <br><br>Package and Deployment is Add-in for VB6.0 and there is no setup parameters define to configure according to our needs what I know.
  9. Asif

    ADO : Using multiple recordsets

    Kb244,<br><br>Have you ever tried &quot;NextRecordset&quot; method of ADO object. This will provide you next recordset from one created Open command for multiple tables.<br>
  10. Asif

    Critical error when adding new record to ADO recordset

    First of all change your cursor location to adUseClient or adUseServer. If your ProfileArea is SQL table then add one more parameter in your recordset open line in last with adCmdTable. Try with this.
  11. Asif

    Changing the Default Save Folder

    Select Tools Menu and from there select Options menu. This will show you property bag for VB IDE envoirment setting. Then select Envoirment tab, you will see Template Directory. Change this directory with your desired directory to save your projects, form and etc..
  12. Asif

    Cannot connect to SQL database via application

    From your explaination of the problem you are facing, is might be somthing logical problem in your application. In my point of view something is changing in your connected database before disconnecting and not comitting whatever is changed by your application. When you try to connect database...
  13. Asif

    cursor location in masked edit control

    Change your code from gotfocus to click event. It will work.
  14. Asif

    extra API information needed

    Hi kb244,<br><br>I think <A HREF="http://www.allapi.net/" TARGET="_new">http://www.allapi.net/</A> will serves your purpose. You can find a lot of APIs.
  15. Asif

    Loop Performance

    Swanson,<br><br>Well For loop is relative slow then do while loop but as you mention select case it is conditional check not repetition and it depends on the satiuation and logic you handle. Some time we have to compromise with millisecond slow response with objective to achive.

Part and Inventory Search

Back
Top