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

    report cannot find database

    yes, i did some thinking and came to the same conclusion.. it was the permissions on the sql-server that caused the problem. /icca
  2. icca

    keycodev2.dll file is missing or not valid

    have you entered the product code in regwiz.msm? /icca
  3. icca

    report cannot find database

    Hi, i have this report that uses three different databases, two sql-server and one access.. everything works fine when you are logged on to the network as administrator. but when you change user you can't open the reports. i have tried to set the user ID and password in code but it makes no...
  4. icca

    Default .NET control names

    yes, you find it in the properties of the control in the design view. It't the Name property. /icca
  5. icca

    Tool Tip Hints

    add the tooltip item to the form. then you can set the tooltip option in the properties window. /icca
  6. icca

    image.width returns strange value

    i think .autosize is a picturebox property, this is an image object.. the width is about 1,76 larger than it should be.. /icca
  7. icca

    image.width returns strange value

    Hi, I'm debugging this app in vb6.. you select a .jpg or .bmp and loads it into an image on the form. the image is not allowed to be larger than 750x450 (11250x6750 twips). the problem is: image.width returns a larger value than the actual .jpg/.bmp size. /icca
  8. icca

    DateTime Control

    try dtpContract.Value = Today /icca
  9. icca

    Focus on the first cell in a DataGrid

    well.. if it doesn't make sence is it probably not a very good solution..
  10. icca

    Trouble synching with DataSet/Database.

    first you have to reload your dataset. if you have a counter as PK you pick the row with largest value. /icca
  11. icca

    Focus on the first cell in a DataGrid

    yeah. sorry didn't read it carefully enough.. but dg.focus() does focus the first cell in my app. why are you creating a new cell? //icca
  12. icca

    Focus on the first cell in a DataGrid

    have you tried datagrid.select(0) ? it works fine for me //icca /icca
  13. icca

    How to activate a toolbar button ?

    you can use something like this for the toolbar_buttonclick event. Select Case (toolbar.Buttons.IndexOf(e.Button)) Case 0 'btn0 Dim frm As New form1 frm.MdiParent = Me frm.Show() Case 1 'btn1 Dim frm...
  14. icca

    debugger--won't stop at breakpoints

    I've had the same problem twice. After a lot restarts of visual studio and the computer it started working again both times.. /icca /icca
  15. icca

    Searching text fields from Access database

    try to replace the wildcard * with % /icca
  16. icca

    code running on open of a form

    you can also use the form's on load-function or put it in the construct (public sub new()). /icca
  17. icca

    Ole DataGrid columns order

    Hi I changed the select-order in my data adapter. And so got the right order in the datagrid. /icca
  18. icca

    Data Grid Append Row

    you set the datagrid to readonly. datagrid.readonly = true /icca
  19. icca

    how to print a form

    I want to print a form. Just print it out.I can't find any examples of how to do this.

Part and Inventory Search

Back
Top