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

    Question about removing objects from memory...

    I'm not sure what you mean by overloading the dispose method. Could you give me a snippet?
  2. pzmgmb

    Question about removing objects from memory...

    Consider this code: Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Click Dim frm As New Form1 frm.Show() End Sub When does this frm object get disposed? I'm pretty sure that frm gets slated for disposal when execution...
  3. pzmgmb

    System Tables

    Sweet link NoCoolHandle... thanks again
  4. pzmgmb

    .Dispose versus Set = Nothing

    At the risk of getting my wrists slapped by the Tek-Tips community, I'm going to ask this question... I've searched the forums and cant seem to find a post or a FAQ that clears it up for me. If this is my piece of code in VB .NET... dim frm as new Form1 frm.datagrid1.datasource= me.dataset1...
  5. pzmgmb

    Stored Procedure Question....

    Thanks jaustin4, I think your tip was for 2000 and i'm in lowly 7.0 JohnDTampaBay and Catadmin thanks for the tip! Starred you both.
  6. pzmgmb

    Stored Procedure Question....

    Does a stored procedure exist that i can type in the name of a stored procedure or a view and it will print out the text of the object. Now when i want the text to a stored procedure i have to open Enterprise Manager and drill down and then copy and paste the text from the object in Query...
  7. pzmgmb

    does anyone have a secrets or pearls to share using vb.net

    Tips of the day? Where do you get those? Tek-Tips?
  8. pzmgmb

    If ... End If shortcut key?

    Oh, really? What products of DevExpress have you used? I just started using the .NET Windows Components suite. I really like the product. It looks like they have put a lot of thought into their products.
  9. pzmgmb

    If ... End If shortcut key?

    I HOPE so! What a GREAT feature!
  10. pzmgmb

    If ... End If shortcut key?

    This may or may not be what you are looking for... Dev Express has a product called "CodeRush" that does what is called Structural Highlighting. See pic below for an example: Hope this helps
  11. pzmgmb

    ToolTip Question...

    How would you do this in 2005 or C#... just so I know what its called.
  12. pzmgmb

    ToolTip Question...

    Good to know... Thanks JohnYingling! [thumbsup2]
  13. pzmgmb

    ToolTip Question...

    I have just created a class and would like to describe what the purpose of each overload is. I'm not sure how to do this. I've included pictures, I hope this helps. This pic is the tooltip on my class. This pic is a dataset's tooltip that inlcudes a description. Thanks!
  14. pzmgmb

    Region in VB .NET Question...

    Does anybody know the keyboard shortcut to close the region i'm in? I dont want to close all or expand all, just the one i'm in currently. Thanks!
  15. pzmgmb

    Visual Studio Question

    Usually something like that requires a call to Microsoft. Sorry. :-(
  16. pzmgmb

    Need Application.StartupPath equivalent...

    Does anybody know the equivalent to Application.StartupPath for use in a console app? I have a console app that I want to know the location of the executing program and Application.StartupPath wont work because it belongs to the System.Windows.Forms namespace. Thanks
  17. pzmgmb

    Crystal Reports XI Selection Question....

    Does anybody know why my selection square does this? No matter what i try to select with this it always comes from the right. Thanks
  18. pzmgmb

    TabControl Question...

    jubble, Thanks for the code... good idea... i just thought there would be a more eloquent way in .NET. Guess Not. [thumbsup2]
  19. pzmgmb

    Really EASY CR XI Question...

    I just installed Crystal Reports XI and I cant figure out how to connect to sql server to then choose a table to base my report on. Help! :)
  20. pzmgmb

    TabControl Question...

    I know i can do this in VB .NET with the TabControl: Me.TabControl1.TabPages(0).Enabled=False Why can't i do this? Me.TabControl1.TabPages("Inventory").Enabled=False Could anybody help me to achieve this?

Part and Inventory Search

Back
Top