CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: WileeDarklight

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    798

    .NET Printing Predicament

    EDIT: Forgot to mention: VS2010

    Here's my situation:

    I've done a whole lot of grabbing, formatting and relocating of data and stuck it in a RichTextBox. All good there. The formatted info...
  2. source code from WebBrowser Control: Possible?

    is it possible to retrieve a page's source code after using:

    browser.Navigate(new Uri(URL));

    if so, Examples would be GREATLY appreciated... Thanks
  3. Accessing Web Page's Source Code; Problem

    Hey all! So I'm trying to access a few pages from a website. Staples.ca to be more precise. sending information into the search property of the site and trying to grab the source code of the page of...
  4. Replies
    3
    Views
    889

    Re: ComboBox

    Looking at the ListboxCombobox sample. I don't get it, that appears to be exactly what I have. The only difference is my code for that part is located in a module, and I have to refer to my main form...
  5. Replies
    3
    Views
    889

    ComboBox

    I have a combobox with whose contents get populated via code. Works ok. But When I select something in the list and hit 'OK' it always returns as: nothing, "", or -1 (tried with .selectedValue,...
  6. Re: What the hell does this mean--> 0x800A03EC HRESULT EXCEPTION

    THANK YOU! I'm an idiot... I'm not creating one, I'm opening one... its .Open() not .Add

    Thanks again dglienna, when you stated "create a file" it clicked and I laughed for about an hour because...
  7. What the hell does this mean--> 0x800A03EC HRESULT EXCEPTION

    Whilst trying to load information from an Excel File I have, I get the following message:

    System.Runtime.InteropServices.COMException (0x800A03EC): Exception from HRESULT: 0x800A03EC

    from this:...
  8. Replies
    2
    Views
    910

    Re: VB.net + Excel

    Sorry, VS 2010 express. Should have mentioned that.

    Those examples should still help me though. Thanks
  9. Replies
    2
    Views
    910

    VB.net + Excel

    Hey all.

    I'm trying to do the following:

    -Open an Excel template (that I have made, not a built-in one).
    -Copy it. (Unless it can be written to the template without having to be saved)...
  10. Replies
    0
    Views
    3,137

    System.Net.WebException

    Hey all,

    I'm making a program that grabs the source code of a given web page. The following is the Method in question:

    public string getPageSource(string URL){
    try
    {
    ...
  11. Replies
    8
    Views
    945

    Re: Format Exception

    Beautiful! Okay that fixed it. Thanks Robert
  12. Replies
    8
    Views
    945

    Re: Format Exception

    right. now try it with a null value.
  13. Replies
    8
    Views
    945

    Re: Format Exception

    Hey Rob,

    Well first off, yours won't compile because you don't have a set + get for that declaration.

    And secondly, no that didn't do anything different. Same error. Thanks for your input...
  14. Replies
    8
    Views
    945

    Format Exception

    I get "Input string was not in a correct format." on the following when attempting to pass a null value:

    ProductType = new clsProductType();

    ProductType.SortOrder =...
  15. Replies
    4
    Views
    697

    Re: WithEvents problem

    This is true. I do already have a button called submit... but how do I place the once I'm making in VB.NET then? The exisiting button is an <asp:button> in a particular location on the page, if I can...
  16. Replies
    4
    Views
    697

    Re: WithEvents problem

    Because the WithEvents has to match the actual name of the button, right? no matter what name i set the button to I'd have to name the WithEvents to the same thing, unless I understand that wrong
  17. Replies
    4
    Views
    697

    WithEvents problem

    This is ASP.net related, but since the .vb file is giving me the problem I figure this is the board to post on, sorry in advance if it isn't!

    So I'm making a Log in type screen for use in a web...
  18. Replies
    2
    Views
    6,416

    WPF beginners questions

    Hey all, I'm new to WPFs and I need to learn it. I can do VB.net and C# rather well, so I only need to know a few things.

    How to do you use controls and their properties? I have a text box, and i...
  19. ListView items. Select All and Deselect All

    I've got a listView item, and it has Multiselect enabled. I need to program a button to select everything in the listView and another to deselect everything. I don't know how to use SelectedIndices...
  20. Replies
    1
    Views
    523

    CreateObject()

    Hey All!

    This time not a particularly stupid question: is there something I can use instead of Outlook.Application in the following:

    CreateObject("Outlook.Application")

    I don't want to use...
  21. Replies
    3
    Views
    612

    Re: Dumb Question: String dividing.

    Thanks a ton, guys! Sorry for it being such a dumb question, but like I said, I'm learning :P
  22. Replies
    3
    Views
    612

    Dumb Question: String dividing.

    Okay, I have a file name + directory as a string. What I'm trying to do is separate the file name (with or without) an extension from the rest of the directory. The point is that it is supposed to be...
  23. Replies
    4
    Views
    907

    Re: Database connection issue

    Okay, but now it tells me the cast is invalid on this line:

    txtFaxNum.Text = dBaseDataReader.GetString(0);

    I can't think straight anymore, I've been staring at this program all day and I keep...
  24. Replies
    4
    Views
    907

    Database connection issue

    Hey all!

    I'm rather new to connecting to external sources so bear with me. The error I'm getting is that "No data exists for the row/column."

    the code in question:

    String ConnectionString;...
Results 1 to 24 of 24





Click Here to Expand Forum to Full Width

Featured