Search:

Type: Posts; User: FourBlades

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    807

    VS 2010 Re: Simple Data Binding

    Well the end factor that got the textboxes to update was that I included the following single line of code at the end of each iteration of a certain operation which forced the textboxes values to be...
  2. Replies
    4
    Views
    807

    VS 2010 Re: Simple Data Binding

    I bound using the actual object mUIDataContainer which is the object declared like so:


    Private WithEvents mUIDataContainer As New UIDataContainer

    And Bound like this:


    #Region "Set Data...
  3. Replies
    4
    Views
    807

    VS 2010 Re: Simple Data Binding

    Yup! And that's why I bound also at runtime and that also did not work.
  4. Replies
    4
    Views
    807

    VS 2010 [RESOLVED] Simple Data Binding

    At wits end after 24 hours:

    I've read up on simple databinding and I can't get my textboxes to update when a change is made to the object data source which is a class with properties.
    The Class...
  5. Replies
    5
    Views
    634

    Re: Recreate Project From Executable

    Thanks Chris,

    Kevin, the project was backed up in numerous places including a safe deposit box. Due to circumstances beyond my control, all of the backups in various places were lost or destroyed.
  6. Replies
    5
    Views
    634

    Re: Recreate Project From Executable

    I remember viewing code with Reflector, but will it actually now import the code to VS, or do you have to copy & paste? My project had over 100,000 lines of code plus several separate libraries. ...
  7. Replies
    5
    Views
    634

    Recreate Project From Executable

    So, I've been out of the game for three years. I need to modify a program that I wrote and use for personal use. I lost my project. How can I extract my source code from the executable back into...
  8. VS 2008 Re: Using more event handlers to a handle the same event

    Also, we seem to be assuming that the two listeners (handling subs) are/will be always in the same class. Of course, we may have two different classes (A & B) listening to an event from a third...
  9. Replies
    2
    Views
    557

    VS 2010 Re: Abstraction

    I like the dll idea.
    In my case, all concrete IErrorCheck(s) are run on the using object's data, therefore iteration through a list(of IErrorCheck) will do fine.
    That solves not having to crack...
  10. Replies
    2
    Views
    557

    VS 2010 [RESOLVED] Abstraction

    I have a class that needs to check for errors in the data contained in a object.
    The routines that will check for errors could be implemented in concrete interfaces of supertype IErrorCheck. That...
  11. Replies
    9
    Views
    4,143

    VS 2008 Re: Remove object in List(Of object)

    I believe in post #4 op meant if you have many Logins types.
    If the question is based on which would be faster, I'm afraid I don't know.
  12. Replies
    4
    Views
    701

    Re: screen sizing issue / max=stuck

    Did you use some code from somewhere that remembers the window size and position someplace like in user settings?

    It's hard to answer your question (for sure) without seeing your code.
  13. Replies
    4
    Views
    701

    Re: screen sizing issue / max=stuck

    Well once you call your code below is there any code to change it back?
    Cause once that code has been called, if you don't specifically change it back...


    Dim MonitorWidth =...
  14. Re: Private Function CheckForNull(fieldvalue as string) as Boolean

    Or in the words of the great t3kizzleee:
    "Why don't you just use an if statement?"

    :confused:
  15. Re: Private Function CheckForNull(fieldvalue as string) as Boolean

    I'd also like to say that it's rather pointless to use a function that should be titled IsNullOrEmpty that subsequently uses a function called IsNullOrEmpty.
  16. Re: Private Function CheckForNull(fieldvalue as string) as Boolean

    I'd just like to say that I like the title of your post.
    :thumb:
  17. Replies
    7
    Views
    799

    Re: In need of Plain English Translation

    That's strange. I suddenly got hungry.

    Anyhow...another point is that considering a topic called encapsulation: The object sending out the message does not care who is listening to the event...
  18. Replies
    7
    Views
    924

    Re: Event vs Recursion

    I don't think anyone can really answer this without knowing the nature of the "question", or what can trigger the recursion.

    However, I did notice this:

    "@TG: Technically, there IS a property....
  19. VS 2008 Re: SerializationException was unhandled

    Ok cool.
    But it wasn't a waste of time.
    Someone else will learn from this. :)
  20. VS 2008 Re: SerializationException was unhandled

    NO!

    Sorry my fault.

    Keep your old deserializing code just how you had it except add the new Class "PreviousVersionDeserializeBinder" as I wrote it except replace my old and new assembly name in...
  21. VS 2008 Re: SerializationException was unhandled

    Ok, notice that the message you got was the custom message that I set.
    Note the first exception.
    You still have the same problem. The assembly that is reading the file is seeing either a different...
  22. VS 2008 Re: SerializationException was unhandled

    As you can see all the Binder does is say this:

    "I know that I saved the info using "AssemblyOne" but I want to deserialize it using "AssemblyTwo". So Mr. Deserializer, if you find something...
  23. VS 2008 Re: SerializationException was unhandled

    I changed some names to protect the innocent; and with the exception of my using a generic type for deserialization this will be easily adapted to what you need.

    Ok, You'll need a Serialization...
  24. VS 2008 Re: SerializationException was unhandled

    In this:
    'ProjectSurvey, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'

    The Project name "ProjectSurvey" and the Version number "1.0.0.0" must be exactly the same for both the project...
  25. Replies
    9
    Views
    4,663

    VS 2008 Re: Cancel / Discard Code Being Executed

    What Keystone gave as an example will cancel the executing code immediately. Are you wanting a way to roll back what has been executed up to the point of a user clicking on the Cancel button?

    If...
  26. Re: Can I create an arraylist of objects

    Try using a System.Collections.Generic.List(of YourObjects)

    I think you'll find it better in all situations.
    You can write your own Sort/Search Routines using features that are available in the...
  27. Replies
    4
    Views
    6,560

    Re: Auto-Aligning controls on Form???

    I seem to remember turning off snap lines once.
    You may find an option to activate that function.

    I've never seen an auto-align function in .net.

    You can always set focus on the control and...
  28. Replies
    2
    Views
    671

    VS 2008 Re: How to save Tag with a .gif file ?

    Well it certainly won't work after the program is closed and then opened again because at the point the picturebox is a different picturebox (a new one) with no tag at all. I don't like the comma in...
  29. VS 2005 Re: Option Strict On Conversion verse parse question

    "but the runtime can't assume that for you."

    Actually, CDbl isn't "wired" to assume that for you.
  30. VS 2005 Re: Option Strict On Conversion verse parse question

    You were not comparing apples to apples.
    If in the first example you had used:

    Dim i As Integer = CInt(Me.TextBox1.Text)

    You would have seen that the conversion would fail on a blank just as...
  31. VS 2005 Re: Option Strict On Conversion verse parse question

    The runtime doesn't know how to convert a blank to type Double.
    First check if the textbox is empty. If it is, and you so desire, you can count
    an empty textbox as meaning "0", but the runtime...
  32. Thread: Focusing

    by FourBlades
    Replies
    2
    Views
    660

    VS 2008 Re: Focusing

    You won't be able to keep a user from working outside your program.
    That's what mutitasking is all about.
    In fact, you shouldn't even try.
  33. Poll: VS 2008 Re: Conventions for Roll, Pitch and Yaw (X, Y, and Z)

    Well if you are concerned about ease in following some code you plan to write, what could be easier for the future code-reader than for the variables to actually be named Pitch, Roll and Yaw? Why...
  34. Replies
    20
    Views
    5,905

    Re: write only properties

    So we have some inconsistency from MS.

    I'll double check... FxCop warned there were no upstream calls to the Getter.
    So I made the properties WriteOnly. FxCop presented no new warnings after...
  35. Replies
    20
    Views
    5,905

    Re: write only properties

    A couple of interesting notes from VS 2010 documentation:

    First the reason:
    "Sometimes you want the consuming code to be able to set a value but not discover what it is. For example, sensitive...
  36. Replies
    20
    Views
    5,905

    Re: write only properties

    I guess that won't make complete sense until I mention that I shadowed some of the Form properties and my only reason for not adding methods in the wrapped class was because they were in fact...
  37. Replies
    20
    Views
    5,905

    Re: write only properties

    I recently wrapped a Form with another class for the purpose of reducing the number of user properties to something like 8 or so instead of all of a Forms properties; it was a special top level...
  38. Replies
    36
    Views
    2,593

    Re: Disenchanted with ClickOnce

    Its called True Update.

    http://www.indigorose.com/trueupdate/overview-true-update/
  39. Replies
    36
    Views
    2,593

    Re: Disenchanted with ClickOnce

    I think IndigoRose has some products that might help, but you'll no doubt pay a hefty sum.
    I use Setup Factory for deployment and it's extremely easy to use. So I'm guessing their update software...
  40. Replies
    3
    Views
    490

    Re: what's object ,they use

    There is no way to know for sure.
    There are a number of ways of making the tables to get the desired effect.
    Nobody can say for sure just from looking at the picture how the person who designed the...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width