Search results

  1. C

    Display HMTL in label

    Hello, I have a field in a database that contains text with HTML formatting included. How can I get a label or textbox to display the formatting instead of the actual HTML tag. For example my record contains <B>Catalog</B>. How can I get it to bold the world catalog instead of just printing...
  2. C

    Late bind web service

    They are essentially the same webservice just looking at a different URLs. Is there an easy way in code to chage the app.config to look at different URLs? Thanks!
  3. C

    Late bind web service

    Hello, I have a project that calls a web services but it needs to call a different version of the service based on the environment Im working in. I have this working with the code sample below but doing it this way I lose the intellisense for the web service. Is there a way to do late binding...
  4. C

    UserControl Control Collection

    I think setting it so accessing the ControlsCollection throws an error will do what I need it too. However I do access the collection in my user control. So now it throws that exception when I try and access the collection in my control. Is there a way to tell if the procedure was called from...
  5. C

    UserControl Control Collection

    I have a UserControl that consist of several other controls. I want to make sure any changes that are made to the controls are done through my class. The problem is I can go through the Controls Collection of my UserControl and modify them that way. Is there a way to make the Controls...
  6. C

    Tell if running program from VS

    The #IF DEBUG worked perfect for what I needed. Thank you very much!
  7. C

    Tell if running program from VS

    Hello, Is there a way in your code to tell if the code is running from within Visual Studio or if its running from a compiled .exe? I have a text file that I want to open from a different location depending on if Im working on the app in VS or if its a exe running on a users machine. Thanks!
  8. C

    Keep Output window closed

    Hello, Everytime I run a vb.net project it keeps my output window open even after I stop the project from running. I know this is a small thing but I hate having to shut the output window down everytime after I run a project. Is there anyway to get VB to shut the window down automatically...
  9. C

    XP Style Drive List

    I would like it to look like the address line drop down that is in windows explorer. Thanks!
  10. C

    Highlighted Button

    I have a ASP.net 2.0 webform that has two buttons on it. A cancel and a submit. I have made my submit button the default button for the form using the DefaultButton property of the form tag. When the user hits enter is call my submit procedure like it should. My problem is that the cancel...
  11. C

    XP Style Drive List

    Hello, Id like to make a form that lets a user pick from a list of drives and folders without using the FolderBrowserDialog. I would like the drive list to look like the standard XP drive list. I would like it to include "My Computer", "Desktop", and all the other XP locations. The problem...
  12. C

    Event for USB drive connection

    Is there a way to trap when a USB drive is plugged into the computer. Right now I just have a timer that checks every 15 seconds to see if my drive is plugged in. This isnt a very good solution. I was hoping there is a way to have an event fired whenever a new USB device is plugged in or a...
Back
Top