Search results for query: *

  1. T

    Flash In memory

    Iv found a couple Components that allow Flash Files to be played in a form from within the resource files (My.Resources). Is there a way to do it without paying an arm and a leg for a component? Preferably free.. Thanks
  2. T

    Windowless Forms

    Solved Thanks That Helped
  3. T

    Windowless Forms

    Im sorry If this was solved befor but I could not find it on the forum and the only ones I googled were for VB 6. How can I be able to drag a windowless/Borderless form?
  4. T

    form.show & me.close

    Sounds like the Project properties are set to end when the first form is closed. Goto Project properties and change to "Close Project when last form closes" or somthing to that nature.
  5. T

    How do you insert a new line in a text field?

    Use vbNewLine <- VB Constant Im assuming you want it in a text bxo with MultiLine? Example: txtTextBox.text = "Some text" & vbNewLine & "Some more text under the first line"
  6. T

    DateTimepicker format

    Sorry I was thinking calendar, try this lblDate.Text = DateTimePicker1.Value.TodayIt will be in Slash Format, theres a number of things you can do In Visual Studion a Popup with different Properties will come up when you put in that last period, (After Value) EDIT: Value.Date would...
  7. T

    DateTimepicker format

    Heres what I did, there might be a another solutuion though I assigned that to a Button lblDate.Text = cal.SelectionEnd
Back
Top