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 gkittelson 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. avarga82

    WMI - System.Management. Can you use to monitor remote machine?

    Hello, I can use the System.Management namespace to successfully monitor my local machine's CPU, memory, etc. I was curious as to whether I can use the same thing to monitor the statistics of another machine on the network from my local machine? Any help would be appreciated. Thanks!
  2. avarga82

    ObjectDataSource & Gridview Databinding

    Ok...here's my dilemma: I've created my own business object...PurchaseOrder. In the purchase order object, there exists a collection object...PurchaseOrderItems. My page is bound to PurchaseOrder, and I need to bind a gridview to the PurchaseOrderItems of the exact same PurchaseOrder that's...
  3. avarga82

    ObjectDataSource and Properties

    Hello, I'm using a custom object and binding it to my web form via the ObjectDataSource. I set the SelectMethod to the function in my object that fills it with data. However, I need to set a property of my object before it calls the SelectMethod. How do I set properties of my custom object...
  4. avarga82

    DLL not created in ASP.NET 2.0

    The output path is correctly set to \bin. Mr. Google has been no help on this matter either...
  5. avarga82

    DLL not created in ASP.NET 2.0

    Hello, I'm new to ASP.NET development (thought I've developed Windows Apps in .NET), and I'm finally diving into Web Services. I'm using Visual Studio 2005 Pro, and have created an ASP.NET Web Service project. Isn't this project supposed to generate a DLL file? I've checked the /bin folder...
  6. avarga82

    Images in a Databound ComboBox?

    Hello, I'm trying to draw an icon for images in my combobox, and I've successfully done so, but only with a non-databound combobox. I was wondering how to do it with a databound combobox. I can't seem to get the dispaymember of the combobox item in the DrawItem event (only the Text...
  7. avarga82

    ADO.NET 2.0 and Object Databinding

    Hello, I'm beginning my journey into Visual Basic 2005, and had a couple of questions I hope someone can answer. I've read posts and articles about object databinding in .NET 2.0, but haven't seen any examples or run across any great resources. Does anybody know a good site? Second, I rarely...
  8. avarga82

    Watermark Overlay using GDI+ ??

    I went at it a different way than trying to add a form as an owned control. What I did was creat a path, then draw a string on the path. I filled the path with a solid brush, then created a region from the path, which will only print on screen the string you specified. All else is completely...
  9. avarga82

    Watermark Overlay using GDI+ ??

    I know I keep beating this horse, but it's not dead yet... I can add a form to the controls collection of another form. However, you can't set the opacity or transparency key of the form that's being added, only the container form. This defeats the purpose of making part of the overlay...
  10. avarga82

    Watermark Overlay using GDI+ ??

    Like I said, I can find plenty of results (ie, "vb.net" bitblt) for adding watermarks to images, or panels, or forms, etc. I cannot find anything relevent for showing a "floating" image above any controls. I would really appreciate a link or a tip as to how to achieve this...
  11. avarga82

    Watermark Overlay using GDI+ ??

    I can find articles on Google for adding a watermark to an image or a panel, but I don't need to draw it on one control, i need it to "float" above all textboxes/combos/controls/etc on the form. I haven't found anything on BITBLT and .NET, and was just wondering where to go to get more info on...
  12. avarga82

    Watermark Overlay using GDI+ ??

    Can this be done in .NET? Mr. Google has been no help...
  13. avarga82

    Watermark Overlay using GDI+ ??

    I've downloaded and tried the XPWatermark from SteepValley. It's great if you need a watermark to be shown behind controls, but does not support transparency to be shown on top of controls. I need a watermark to be drawn over any and all controls on a form. I'm not sure if this is even...
  14. avarga82

    Watermark Overlay using GDI+ ??

    Hello... I have a need for a watermark to be displayed on a form, visible over any/all controls on the form. I can't draw it directly to the form or a panel, as controls can be placed on top of those...I need to draw a watermark above everything. Is this possible? If so, a point in the right...
  15. avarga82

    SQL Backups - Full/Differential

    I'm implementing a very simple backup plan for a SQL database, and I was monkeying around with full backups. It seems that If I'm backing up to a hard disk, over the same file, that it doubles in size for every backup I run. I don't want the backup to add to the file, I want it to replace it...
  16. avarga82

    Move Subreport to Different Section

    I just got a copy of CR10. It works just fine! I believe this to be a restriction with VS.NET, not Crystal Reports. Thanks for the help!
  17. avarga82

    Move Subreport to Different Section

    It's definitely a restriction either with the VS.NET CR designer, or CR9 itself. There is no way to move subreports! You have to recreate it.
  18. avarga82

    Move Subreport to Different Section

    I'm working with Crystal Reports 9 in the .NET IDE Designer, so I'm not sure if this applies to the full version of CR. Anyways, I created a subreport in the Details section, and now need to move it to another section. I cannot drag it or copy and paste it. How do I move it? Thanks!
  19. avarga82

    SQL Connections and .NET

    My question is about opening & closing SQL connections in .NET. My app is made up of 3 main parts: A code library, a control library, and the main application. All three are separate projects. In each, I'm using a global connection. My code for the public connection is as follows: Public...
  20. avarga82

    Databinding with a NumericUpDown control

    Sorry for not being specific. It acts like an unbound control. The values don't change, and oddly, if I add a databinding, no other control will update as I navigate through a recordset either. As soon as I take the databindings off the numeric updown's, everything works fine. Yes, the...

Part and Inventory Search

Back
Top