Search:

Type: Posts; User: Meestor_X

Page 1 of 8 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    9
    Views
    770

    VS 2019 Re: TextBox WordWrap but ignoring words

    Right. Found nada, zilch, nothing. Not even this specific question appears anywhere. Lots regarding how to split text at spaces and so on, but nothing about DISABLING the split function!
  2. Replies
    9
    Views
    770

    VS 2019 Re: TextBox WordWrap but ignoring words

    Gotcha. Well, in other languages the hyphen might be different and some languages don't use spaces, so I thought that might be a path...

    So, what you're speaking of is that the TextBox and...
  3. Replies
    9
    Views
    770

    VS 2019 Re: TextBox WordWrap but ignoring words

    Thank you for your replies.
    I'm not even sure how to go about that, likely adding in carriage returns and then stripping them out after typing, and being able to backspace properly.... Aye carumba....
  4. Replies
    9
    Views
    770

    VS 2019 TextBox WordWrap but ignoring words

    When a multi-line textbox word wraps, it looks to choose the best place to wrap and tries to not split up words. Normally that would be a good thing, but in this case, I want it to split at the end...
  5. Replies
    1
    Views
    4,655

    Re: Bad URL in the Error dialog for ClickOnce

    Nobody?
  6. Replies
    1
    Views
    4,655

    Bad URL in the Error dialog for ClickOnce

    So, there's some sort of error in the ClickOnce setup. (I haven't resolved it yet, but that's a separate problem)

    Whenever there's some sort of problem where the ClickOnce setup on a user's...
  7. Replies
    4
    Views
    6,506

    Re: ClickOnce .NET 4.0 Prerequisite

    Ok, figured it out. Boy! That was hard to find, especially since it was so easy!...
  8. Replies
    4
    Views
    6,506

    Re: ClickOnce .NET 4.0 Prerequisite

    Ok, figured it out. Boy! That was hard to find, especially since it was so easy!...
  9. Replies
    4
    Views
    6,506

    Re: ClickOnce .NET 4.0 Prerequisite

    3.5 does not support a lot of new functions and 4.0 is the highest supported version for XP, so making the requirement 3.5 or 4.5 is not helpful.

    Let me know if anyone figures out how to add 4.0...
  10. Replies
    4
    Views
    6,506

    ClickOnce .NET 4.0 Prerequisite

    I have a program that works under XP just fine as long as the user has .NET 4.0 installed. I'd like to add that as a prerequisite in the ClickOnce installer. However, in the Prerequisites dialog in...
  11. VS 2010 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))

    These are sometimes tough errors to figure out. Took me a long time!
    ...
  12. Replies
    1
    Views
    715

    VS 2015 Re: Not really getting Async/Await

    Never mind. I see now that Async does not actually create a new thread.

    This works as expected:
    Module Module1

    Sub Main()
    CountUp()
    Console.WriteLine("Back from CountUp")...
  13. Replies
    1
    Views
    715

    VS 2015 Not really getting Async/Await

    I've read tons on this, but for some reason I'm not getting it. From what I read, I thought when using Await, it would run the "awaited" function but return back to the caller immediately. Doesn't...
  14. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Great advice. Thank you!
  15. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Wow! So much help! Thank you everyone.

    First, I want to say that "fraught with threads" I think was a bad expression. There's really only 2-3 threads. I am doing asynchronous I/O (MIDI and...
  16. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    I would like to be that expert. It seems hardly anyone does multi-threading apps, and mine are fraught with threads.
    Anyway, let me know what you suggest.
  17. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Thank you for that suggestion. Unfortunately, "attaching" works the same as debugging. The program works properly in that scenario
  18. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Yep.

    The error it seems has nothing to do with the actual problem, as I've seen time and time again with multi-threaded apps.
  19. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Thank you for those suggestions.
    Optimizations disabled makes no difference, unfortunately.

    I re-wrote the program using a lot of VS2015-specific shortcuts/features, unfortunately. Going back...
  20. VS 2015 Re: Best practices for debugging error that happens outside IDE in Multi-Threaded app

    That's not too reassuring. I spent a LOT of time getting my program to work under VS2015/.net 4.6, (even though it's currently built for 4.0 so it'll run on XP) so I'd like to not have to go back.
    ...
  21. VS 2015 Best practices for debugging error that happens outside IDE in Multi-Threaded app

    Multi-Threaded apps are hard enough to debug within the IDE, so how about one that gives errors only when outside the IDE?

    A customer was reporting a crash of the program, and I couldn't reproduce...
  22. Replies
    9
    Views
    1,697

    VS 2013 Re: What's going on with .NET on OSX?

    Anything new on this front?
  23. Replies
    4
    Views
    2,442

    VS 2013 Re: MaximumWidth for a DataGridViewColumn

    Bump, just in case anyone has a good suggestion...
  24. Replies
    4
    Views
    2,442

    VS 2013 Re: MaximumWidth for a DataGridViewColumn

    :-( :cry:
  25. Replies
    4
    Views
    2,442

    VS 2013 Re: MaximumWidth for a DataGridViewColumn

    Nothing?
  26. Replies
    4
    Views
    2,442

    VS 2013 Re: MaximumWidth for a DataGridViewColumn

    Do I need to create a custom DataGridViewColumn? If so, can I override the Width parameter so it also recognizes a MaximumWidth setting?
  27. Replies
    4
    Views
    2,442

    VS 2013 MaximumWidth for a DataGridViewColumn

    This should be really easy, but I'm having a bit of a brain-fart I think...

    I have a couple of columns in my DataGridView that have the AutoResize property set to "fill".
    In addition to having a...
  28. Thread: .NET Native

    by Meestor_X
    Replies
    0
    Views
    1,657

    VS 2015 .NET Native

    Not sure if this is the right forum for this, but does anyone know if this works with VB.NET? The MS page says C#, but there's conflicting info. It would make sense that it would work on VB.NET as...
  29. Re: Warning Function doesn't return a value on all code paths Error

    Here's a suggestion to clean up your function a little...
    Function MyFunc(N as Integer) as Integer
    Dim Result as Integer = 0

    Select Case N
    Case <= 10 : Result = 10
    ...
  30. VS 2013 Re: Accept only 10 characters from DataGridView cell?

    I'll assume txtSearch is a textbox.
    TextBox.MaxLength() is only for user input when you're typing in that TextBox.
    When you say "accept only 10 characters", that is what is what will happen when...
  31. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    With the help of Kevin Pilch-Bisson from MS, he determined the cause in my case was that I had referenced the project's .exe in the project. Once the reference was removed, the forms could be opened...
  32. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    That is correct. Some forms are fine, others won't load. There's several forms in this project.

    So far, I've opened about 10 programs that I created in VS2013 or earlier (or at least have forms...
  33. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    Ok, thank goodness. That's not something I should have to do anyway. The freaking program should JUST WORK. ;-)

    I could, but there's no need. I've tried commenting out everything inside that class...
  34. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    I wish it were that simple, but it doesn't seem to be. I can take the custom Datagridview out of that particular form, but cannot find a way to add it back in without getting the error again.
    Also,...
  35. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    You're absolutely correct about that! :check::cool:


    I've done that several times. The program will run after a rebuild, there's no issue there, the error I am getting are only when trying to...
  36. VS 2015 Re: Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designe

    Ok, so it sounds like nobody reading has run across this issue before.

    I went into the designer.vb file and started commenting out a bunch of it until I found the lines that are causing all the...
  37. VS 2015 [RESOLVED] Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) in VS2015 Designer

    I've been using VS2013 community for quite a while, and decided to update to VS2015 for the extra features.

    I copied my project folder from VS2013 to the VS2015 project folder, and the program...
  38. Replies
    13
    Views
    2,749

    VS 2013 Re: Order of New() when deserializing

    Doh! I figured out a much easier way to do this.
    Of course when deserializing, all Property Get functions run, so I just put my initialization code in there. Works in my case because the...
  39. VS 2013 Re: Serializing and Deserializing references (Shallow copies?)

    Another thought about this...

    Would using NetDataContractSerializer make any difference? It seems like it keeps track of instances of collections, but I may be mistaken on that.
  40. Replies
    13
    Views
    2,749

    VS 2013 Re: Order of New() when deserializing

    How much trouble would I be creating for myself if I changed to DataContractSerializer (which supposedly supports the <OnDeserialzed()> attribute) instead of XMLSerializer?
    My understanding is that...
Results 1 to 40 of 300
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width