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: *

  1. xai999

    Rich Text to HTML

    The textchanged event is triggered by any changes to the property text. The changes can be made from the UI as well as from any code. Maybe you should try and attacht the eventhandler at a later moment. It would be helpfull if you could post some example code, demonstrating the problem. And...
  2. xai999

    Rich Text to HTML

    I also looked it up and textchanged is an event. It's triggered as soon as the text property is changed. To see if any changes are made you should write an eventhandler for this event (simply double-click the event in the designer to generate the handler) and then maintain a boolean variable...
  3. xai999

    Comparing C# & VB.NET ...

    Personally I tried VB.NET for about a week and then concluded that I had to write to much code. I could do the same thing a lot faster in C# and C# was to me a lot easier to learn. Before .NET I've done mostly Delphi and VB6. I know my VB6, but still I had to learn in .NET, so I choose to do...
  4. xai999

    Adding record to an empty dataset and databinding to a form

    I've made a small testprogram, but in there it does work, so there's a problem with my code somewhere. Will keep you informed. And then silence smacks right in there... ... And it is loud!
  5. xai999

    Adding record to an empty dataset and databinding to a form

    Sorry for the scares information, but my code is spread throughout several classes. Fill is called everytime the form opens, also when there is no data. You're saying I shouldn't call fill when there is no data? And then silence smacks right in there... ... And it is loud!
  6. xai999

    How to insert directly listbox valuemember and displaymember

    You could change your SQL to generate a single field with all the values that you want to display and then use this field in displaymember. You can use a SELECT CASE to do this. And then silence smacks right in there... ... And it is loud!
  7. xai999

    Adding record to an empty dataset and databinding to a form

    I have this form wich contians a dataset that can be empty in certain conditions. When I add the first record to this dataset it doesn't show this record in the bound controls on the form (I know for shure, cause the values differ from the values initialized in the new record). I tried calling...
  8. xai999

    Inheritance explanation

    B.F doesn't override A.F. B.F hides A.F. If you cast a reference to an object from B to A, then A.F is going to called, because it doesn't "know" about hiding. And then silence smacks right in there... ... And it is loud!
  9. xai999

    Using Controls.Focus() while a window is opened

    In a windows application I open a form on top of the application, to allow for some input. Normaly I want the focus to be on the first control, so I put the tabindex on that control to 0 and number up from there. In one particular situation I want to focus on another control in the form. I tried...
  10. xai999

    Databinding to dataset doesn't work in some cases

    Wow! I found the problem and I'm shocked! It appears that I didn't setup some default values to correct values for the dataset. It's fine that stuff failes when used incorrectly. I'm just very surprised I didn't get any errors. It appears that somewhere along the line exceptions in this area are...
  11. xai999

    Databinding to dataset doesn't work in some cases

    I didn't give the complete information in the first post. Sorry. I actually do the databiding on a usercontrol. Then the control is docked onto a panel and it works. But the control where it isn't working is actually placed on a wrapper form at design time and then the form is shown on top of...
  12. xai999

    Read from file, and insert into a label

    The official way to go is, render XML and just setup differnt XSLT's for every group, but I assume this is not what you wanted to hear. ;) You could look into subclassing an ASP page into separate ASP pages for each group. And then silence smacks right in there... ... And it is loud!
  13. xai999

    Parsing webmail inbox

    How are you prompted for username and password? Is this trough a form, http authentication box or maybe some other method? And then silence smacks right in there... ... And it is loud!
  14. xai999

    How can I display a download link in my (C#) ASP.NET web form to downl

    I'm affraid the above questions do not apply to this problem. What you could do is create a new ASP page that actually streams the requested field with the right META Type to the client. You can than use this page as you would a normal picture on the filesystem. And then silence smacks right in...
  15. xai999

    Can you instantiate a strongly typed DataTable from another dll?

    In fact you could just go to the class source of the datatable and change it. I'm not shure if that's a good idea, cause it might be internal for a reason, but it's worth the try, I guess. (To get to the class source, just look up the declaration of the datatable in your form source and then...
  16. xai999

    Rich Text to HTML

    If you can get to the raw RTF content, you could try and build a parse function to change it into HTML (maybe using regular expressions). And then silence smacks right in there... ... And it is loud!
  17. xai999

    Email Client Application

    Most emailclients just embed the COM version of IE. You could do that... And then silence smacks right in there... ... And it is loud!
  18. xai999

    ADSI Problem HELP

    Isn't it this bit of code that creates a new site? DirectoryEntry site = (DirectoryEntry)root.Invoke("Create", "IIsWebServer", siteID); site.Invoke("Put", "ServerComment", webSiteName); site.Invoke("Put", "KeyType", "IIsWebServer"); site.Invoke("Put", "ServerBindings", ":80:")...
  19. xai999

    focus on a button

    You should have a look at the form you use for searching and maybe change the HTML. If you would make the search button a input type=submit it should already work. And then silence smacks right in there... ... And it is loud!
  20. xai999

    ASP page that receives files programmatically?

    I'm not shure what http method is used to send the file, but I would say it ends up in the Request object on the ASP page. You could look into the Forms property, the InputStream property and the Headers property.

Part and Inventory Search

Back
Top