Recent content by youngsc

  1. Y

    VB Help: Fix "Conversion from string to type 'Double' is not valid" Error

    Thanks for the reply. I got it figured out, I used C# instead. I'm trying to teach myself quite a bit of this and I'm doing as much of it "example" based as possible. I couldn't find any good examples in VB but found a lot in C#. Thanks again.
  2. Y

    VB Help: Fix "Conversion from string to type 'Double' is not valid" Error

    Ok that problem is solved now I got a new one. Private Sub StockPricetxt_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StockPricetxt.TextChanged Dim StockPricetxt As Double StockPricetxt = CDbl(StockPricetxt) End Sub...
  3. Y

    VB Help: Fix "Conversion from string to type 'Double' is not valid" Error

    Ok I'm just starting to teach myself and I thought I could have at least gotten this part but I'm getting a Conversion from string "" to type 'Double' is not valid. error message. Private Sub StockPricetxt_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
Back
Top