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

    recordsets & com+

    Hi - is it possible to cycle through a recordset in com+ from the client i.e. with objCom .recCom.MoveFirst while not .recCom.EOF 'do some stuff .recCom.MoveNext wend end with When I do this each call to recCom appears to reset the recordset so that I always return...
  2. nigz

    destroying objects

    lol - yeah Belt & braces, much the same thing :) - thenks for your help so really as far as destroying objects goes - the rules I used in vb6 still appy. N
  3. nigz

    destroying objects

    Thanks guys for your help - I like the belt & braces approach so will be setting my objects to nothing. :)
  4. nigz

    destroying objects

    In vb 6 you set an object to nothing. What's the best way to destroy an object and force garbage collection? I have used the following code to destroy a form, it works but seems a bit 'over the top' - grateful for your suggestions. frmNew.Close() frmNew.Dispose() frmNew = Nothing
  5. nigz

    newbie: How to reference control on a form

    Ah - I've got it: dim frmNew as frmBuilder
  6. nigz

    newbie: How to reference control on a form

    I have tried that, here is my code, why cant I see tvwMain? Many thanks. Private Sub mnuFileNew_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles mnuFileNew.Click Dim frmNew As Form Dim strProjectName As String frmNew = New frmBuilder() strProjectName =...
  7. nigz

    newbie: How to reference control on a form

    Hi - how on earth do you reference a control on one form from another? in vb6 it was for instance: frmMyForm.MyControl.Text="Whatever" how do you do it in .NET? many thanks
  8. nigz

    Enterprise Manager for MSDE

    Nice one if you could send the details to nigz@lineone.net that would be great :)
  9. nigz

    Forms and Reports

    You need to use something like Visual Basic to produce forms although it's a bit more complex that Oracles add-on. There is a report designer with VB but most people go with Crystal Reports. HTH - Nigz
  10. nigz

    Enterprise Manager for MSDE

    Does anyone know of a (free) tool that acts like enterprise manager for MSDE? I'm recovering from an op & bought Vb.net stnd to brush up on my skills. Installed MSDE but used to the manager at work so finding it a little difficult to manipulate now at home. TIA - Nigz
  11. nigz

    scroll down grid from code

    You can scroll through the grid by advancing through the underlying recordset. How do you want to scroll? With buttons or what?
  12. nigz

    Datagrid Column

    Dim ID As Integer ID = 1 rs.MoveFirst Do while Not rs.EOF 'If you want column 6 populated DataGrid.Columns(6).Text = CStr(ID) ID = ID + 1 rs.MoveNext Loop
  13. nigz

    Displaying a tree view with separate forms.

    If your tree view is an MDIChild then you could 'tile vertically with another form within your MDI container. Usually, however, tree views are used in conjunction with the listview on the same form.
  14. nigz

    VB.NET Standard & SQL Server Desktop

    Thanks Kris - I managed to create a db at last - will look at the tools you gave me links for. Thinking I might have a go at writing my own front end to server desktop.
  15. nigz

    VB.NET Standard & SQL Server Desktop

    I've in stalled the SQL server engine which comes with VB.Net Standard but how do I create a new database? I managed to create a create databse stored procedure in the master db and it appeared to run OK. However I can't see it - although if I try to run the sp again I get a message saying...
  16. nigz

    DLL file not found

    does this help: http://www.rpgalive.com/common_problems.html There is a solution to file not found problem there.....
  17. nigz

    DLL file not found

    What is the dll - it's not anything to do with Crystal Reports is it?
  18. nigz

    count dates

    OK I stand corrected ;) the * 5 thing was not an entirely serious suggestion - N
  19. nigz

    Which thread please

    If it's MS SQL look up 'Alter Table'
  20. nigz

    count dates

    <snip> nigz: that will only return the number of weeks....not weekdays. </snip> from MSDN: Setting Description yyyy Year q Quarter m Month y Day of year d Day w Weekday ww Week h Hour n Minute s Second But if that's an error then how about: NoOfWeekDays =...

Part and Inventory Search

Back
Top