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 Mike Lewis 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. anhtri

    inet is detected as a spider

    pls help me!!!
  2. anhtri

    inet is detected as a spider

    hello all, i use inet1.openURL("http://www.pricegrabber.com") and get the text as "You have been taken to this page because your browser has been detected as a spider..." if i use WebBroser or IE, it of course doesnot go to this page is there any way to save this page (the...
  3. anhtri

    SHBrowseForFolder API Question

    you need to add more code like this: Public Type BrowseInfo hWndOwner As Long pIDLRoot As Long pszDisplayName As String lpszTitle As Long ulFlags As Long lpfnCallback As Long lParam As Long iImage As Long End Type Private Function procAddress(ByVal n As Long) As...
  4. anhtri

    datagrid in vb

    try this Private Sub delete_Click() Dim vBm As Variant If DataGrid1.ApproxCount > 0 Then For Each vBm In DataGrid1.SelBookmarks AdoRs.Recordset.Bookmark = vBm AdoRs.Recordset.Delete AdoRs.Recordset.Update Next End If DataGrid1.Refresh...
  5. anhtri

    Error when using Component

    use Package & Deployment Wizard in Visual Studio Tools
  6. anhtri

    can someone please explain what is wrong with this code???

    DateAdd function returns a date value if you want a time, try this: controlName.Text = Format$(DateAdd(Interval, UpDown, controlName.Text),"Long Time")
  7. anhtri

    count the connections

    you are very good Terry thank you very very much ;-)
  8. anhtri

    count the connections

    Pls help!!!
  9. anhtri

    count the connections

    thank you very much but i didnt mean to monitor it, i write a VB program connect to a SQL Server database, and i just want to control the number of connections to that database throught my program Pls help me
  10. anhtri

    count the connections

    how to know that "how many connections are there that connected (at the moment) from different users to a specified database?" Many thanks to any help
  11. anhtri

    how to add a new field to a records

    Thanks Mark, i got it anhtri
  12. anhtri

    how to add a new field to a records

    how to add a new field to a recordset? dim rs as ADODB.recordset .... rs.Append "Tracking number", adChar, 18 but it generated error help me thank you very much
  13. anhtri

    datagrid control

    Thank you Spellman, i do all those things, the value "yes/no" work fine, but when i make it a check box, nothing happen do i have to add a new checkbox in? and how to do that? Anhtri
  14. anhtri

    datagrid control

    i use a datagrid control to display data. the value typed boolean (yes/no) is always showed as "0" or "1", how can i change this to "yes/no"? or add a checkbox into the column data, if possible? Pls help me, thanks!!!
  15. anhtri

    show image in richtext

    how to show a image bitmap file in a richtext box? thanks for any help!!!
  16. anhtri

    EXCEL-HOURS TO MINUTES

    you just do as JVFriederick (simply multiply by 24*60) format the cell results into number, you can see the right things anhtri
  17. anhtri

    large Excel file

    i have a file in CSV format (text file), -which is much more than limited 65536 rows- and i want to change it to xls format for other changes, such as sorting, coloring...ect.. hope you could help thank you!!!
  18. anhtri

    large Excel file

    How can i create/open an Excel file that has more that limited 65536 rows? Pls help!!!
  19. anhtri

    capture query statement

    i can get it now Terry thank you very much!!!
  20. anhtri

    capture query statement

    yes Terry, I want to see the traces of the SQL statement issued by the clients. i want to test the application, to be sure that it does issue the correct SQL statements thank you anhtri

Part and Inventory Search

Back
Top