Ask Experts Questions for FREE Help !
Ask

Search:

Type: Posts; User: dan28

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    1,439

    ]> Is that where...

    <!ELEMENT URL (#PCDATA)>
    ]>

    Is that where I've done something wrong?
    I checked my code on a xml validator and got 15 errors.

    I don't understand what I've done wrong and what it should be.
  2. Answers
    4
    Views
    1,439

    What have i done wrong in this?

    Hi, I'm new to XML and have been struggling. Where have I gone wrong in this bit of code?


    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE bibliography [
    <!ELEMENT bibliography (book+)>
    ...
  3. changing text of a listbox item to match item above

    I need this code to be able to take the time out of an item in a list box and replace the time of the item under. The code then needs to take the time in brackets at the end of the item and add it to...
  4. Answers
    11
    Views
    2,519

    Thanks perito. With using your code and some...

    Thanks perito. With using your code and some others my partner and I have gathered we came up with this:



    Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  5. I worked it out. Turned out I I hadn't declared...

    I worked it out. Turned out I I hadn't declared something earlier in my code.
    Still having problems with the time though. Its not adding the times up properly. Instead of adding the time from just...
  6. I'm using 2008 express edition, and they are...

    I'm using 2008 express edition, and they are created at compile time because on the interface
  7. And yes gbxBakeryItems is a groupbox for the...

    And yes gbxBakeryItems is a groupbox for the bakery items
  8. Thanks perito, I'm getting an error message...

    Thanks perito,
    I'm getting an error message saying: "option strict on disallows late binding" for the line with chkBakeItem.Checked and both lines with chkBakeItem.Text.
    Also, I tried it with...
  9. Thank you, works well. Any ideas how to get the...

    Thank you, works well.
    Any ideas how to get the times working? The code I have for that section is:
    Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  10. Add a checkbox item to a listbox at chosen position

    How can I add the text from a checkbox into a listbox before some text already in there and after some other text?
    As the picture attached shows, I need to add the bakery items after "Turn on,...
  11. Answers
    11
    Views
    2,519

    Thanks for your help Perito. I've managed to...

    Thanks for your help Perito.
    I've managed to get the start time working.
    My next problem is getting the bakery items to insert after the "Turn on, Heat" text in the list box and before the other...
  12. Answers
    11
    Views
    2,519

    A few error messages from that code. From this...

    A few error messages from that code. From this part:

    For I As Integer = 0 To lbxOven1.Items.Count - 1
    tStr = lbxOven1.Items(I)
    ... ' parse the string into the time, TimeStr, and...
  13. Answers
    11
    Views
    2,519

    Sorry, "Turn on, Heat" not "Turn oven on"

    Sorry, "Turn on, Heat" not "Turn oven on"
  14. Answers
    11
    Views
    2,519

    Yes tbxStart is the "Shift Start time." When the...

    Yes tbxStart is the "Shift Start time."
    When the time is changed the time next to "Turn oven on" in the selected listbox should be updated, therefore updating the times of the other things in the...
  15. Answers
    11
    Views
    2,519

    This is the latest code I've tried ...

    This is the latest code I've tried

    Private Sub tbxStart_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tbxStart.TextChanged

    Dim dtmTurnOvenOn As...
  16. Answers
    11
    Views
    2,519

    Add a time from a TextBox into a ListBox

    I need to add a time from a textbox into a list box with a message after that time.
    I've tried many different codes all with poor results. Either I can't change the time or when I changed the time...
Results 1 to 16 of 17