Search results for query: *

  1. Merchand

    NumLock & CapsLock in StatusBar [dot net]

    Hey everyone! Thanks for the comments. I did write this back in Dec last year and there was not the My namespace available yet in VS2003. This functionality my have improved for VS2005. Hey JuggaloBrotha, I'm from just north of you about 1.5 hours. In SC now but Go Michigan and Detroit Tigers!
  2. Merchand

    101 Visual Basic .NET Code Samples

    Try searching for this file... VB.NET How-To Multithreading.sln
  3. Merchand

    DropDownList in ASP.net DataGrid Control

    How do you get your DropDownList (ddl) in a column to show after the columns in the DataGrid control are populated? I have the ddl for each row populated with one or more items but it does on view the ddl until edit time. I have an edit link as the first column and the dll is the last column...
  4. Merchand

    101 Visual Basic .NET Code Samples

    101 Examples shroomy, I'd look under your C:\ and D:\ drives for 'program files' folder and see if you see anything new... If not there then check for any new folders... I have installed it a few times and it just creates a folder named like... VBDotNet101Samples with a lot of sub-folders...
  5. Merchand

    Upgrading issue (vb6 to vb.net), help please?

    Upgrade Help Did I provide you with some help? Mainly I'd use this Microsoft upgrade assessment tool at... http://www.microsoft.com/downloads/details.aspx?FamilyID=10c491a2-fc67-4509-bc10-60c5c039a272&DisplayLang=en Or look at re-architecting the application for OOP. I sometimes feel the...
  6. Merchand

    Listbox Objects that are not strings!

    Final Note: Don Delegate/Everyone, I was able to create my own class with five string variables and inherited my class called ErrClass from "Object". I don't know if this inheritance from Object is necessary or not. Anyway, I'm still trying to figure out if there is a way to .Add() a...
  7. Merchand

    Listbox Objects that are not strings!

    DrawItem & MeasureItem EventHandlers [Listbox] Don, this is very helpful!!! :D I was able to create my class called ErrClass with 5 strings and then add code to the DrawItem & MeasureItem event handlers as you stated and directed. It all works good. I even was able to draw lines at the top...
  8. Merchand

    Listbox Objects that are not strings!

    I'll play with these code samples! Thanks a bunch! I may have more questins for you later Don Delegate! :)
  9. Merchand

    Listbox Objects that are not strings!

    Don, thanks for the feedback and example. What is the MyError object I don't see it defined in your code. Will this work in VS2003? I'm still using VB2003 at work and VB2005 at home. All your help is greatly appreciated!!!
  10. Merchand

    Listbox Objects that are not strings!

    HTH/TG: I read both of you! I really don't want to add four items to my listbox collection just one item what is multiline. I'd even go for columns at this point but I have not seen any good examples of showing columns either. I know how to use the listview control in VB6 and know I can do...
  11. Merchand

    Listbox Objects that are not strings!

    Oh, ya... this code is in VS2003 (FW1.1). I'm using both but only 2005 at home.
  12. Merchand

    Help Regarding .net Certification

    New Cert Tracks... :D Check out this link and read on the new certs... http://www.microsoft.com/learning/mcp/newgen/ My user group is just starting to cram for the first .net framework exam for the Tech. Spec. See website link for details. Good Luck!
  13. Merchand

    Help Regarding .net Certification

    New Cert Tracks... :D Check out this link and read on the new certs... http://www.microsoft.com/learning/mcp/newgen/ My user group is just starting to cram for the first .net framework exam for the Tech. Spec. See website link for details. Good Luck!
  14. Merchand

    Listbox Objects that are not strings!

    :confused: I have added just the text, but I'm wanting to have several lines per item... Example... Time: 4PM 02Feb2006 Module: MyModule App: MyApp Error: Error Text here. <space> next message... I have tried adding vbCrLf in a StringBuilder object then add the sb.ToString() to the...
  15. Merchand

    Transparent Label

    Kulrom, Kool Tip!!! heres the code from Kulrom... In Form_Load... Label1.Parent = PictureBox1 Label1.BackColor = Color.Transparent Thanks! :)
  16. Merchand

    Listbox Objects that are not strings!

    I'm trying to add a multiline textbox to a listbox control. My main objective is to add a multiline error message to a listbox item. How do you add a textbox to the listbox items collection and be able to view it and the data stored in the .text property of the textbox? Any help is greatly...
  17. Merchand

    Shell(pathName,WinAppStyle) :: VB vs VB.Net

    I'm not sure what you mean by "Correctness", but Shell is a windows API call to Shell and should basically work the same in .net as in VB6. Here is how to shell in .net not using the API. Read up on all of the options for the Process class... Imports System.Diagnostics Public Shared Sub...
  18. Merchand

    Calling VB6 exe from VB.net2003

    Any Ideas guys? I need help! :)
  19. Merchand

    Calling VB6 exe from VB.net2003

    OK, one more thing... I can call a method that loads my main vb6 form and starts the vb6 application. The boolean property (read-only) that I have to read is always false and it is suppose to indicate that my vb6 application is active. But never is anything other than false. (vb6 client works)...
  20. Merchand

    Calling VB6 exe from VB.net2003

    I have a task to call a few methods/properties in a visual basic 6 .exe from within a VB.net2003 application. I'm invoking the vb6 .exe and setting a property then calling a method based on another property in the .exe. This works good from a vb6 application. However, using com-inter-op and...
Back
Top