Ask Experts Questions for FREE Help !
Ask

Search:

Type: Posts; User: melondotnet

Search: Search took 0.00 seconds.

  1. Answers
    1
    Views
    565

    Run program via saved file.

    Hiya all,

    I have dicided that a program of mine should have the capablility to load a saved file, when the saved file is run.

    e.g..

    >Run SF.sfs
    >Progam Starts
    >Program Loads SF.sfs...
  2. Got lost! - Make sure that you take of the dollar...

    Got lost! - Make sure that you take of the dollar symbol, else it will try handeling it as an integer, which is always bad. Just to check, does scr(val) convert 'val' into a String? Ages since I used...
  3. Answers
    1
    Views
    736

    Okay, Use a for, for starters (like the pun? )...

    Okay,

    Use a for, for starters (like the pun? )

    For val = 1 to 7
    ~~YOUR CHECK CODE HERE~~
    Next

    This will just keep running until val = 7.
  4. Answers
    1
    Views
    646

    Please be more specific... - What is the...

    Please be more specific...

    - What is the that stored as/in?
    - What code do you already have?
    - Which type of VB are you using?
  5. Answers
    1
    Views
    447

    Yes, each value is an item. For I = 1 To 10 ...

    Yes, each value is an item.

    For I = 1 To 10

    tValue = ComboBox1.Item(I - 1) ' Ithink Items are numbered 0,1,2,3 not 1,2,3,4

    Next

    Note: If I am on the wrong end of the stick, please say.
  6. Answers
    4
    Views
    653

    Sorry, I was talking about server/client ports.

    Sorry, I was talking about server/client ports.
  7. Answers
    1
    Views
    1,246

    Take two household object which recive different...

    Take two household object which recive different charges when charged (ooooo) and hold them both near the tramoline. One should attracted, the other repel. The repelling one will probably be more...
  8. Answers
    4
    Views
    1,021

    Correct, all objects with mass have a...

    Correct, all objects with mass have a gravitational field. It may also have something to do with pressure, I am not sure...
  9. Answers
    3
    Views
    1,075

    I only use .NET for programming, feel free to...

    I only use .NET for programming, feel free to post me, and if you want a gook book, look up 'Visual Basic 2005 Step by Step' in Amazon. It is part of the MicroSoft press.

    Best of luck, Melon Dot...
  10. Answers
    4
    Views
    653

    I don't think you can, but you could always have...

    I don't think you can, but you could always have your program switching between each port.

    Start Loop

    Check Port1

    Check Port2

    End Loop
  11. Answers
    2
    Views
    2,881

    Umm, quick note, it is worth defining the type of...

    Umm, quick note, it is worth defining the type of style you are using in the head:

    <style type="text/css">

    CSS
    CSS
    CSS

    </style>
  12. Answers
    1
    Views
    674

    Can you please give us a list of operation you...

    Can you please give us a list of operation you would like us to produce answers for.

    Here are some simple things.

    Roots (Square root of 4) can be written as powers:

    EXAMPLES (The Carat [^]...
  13. Question: If statement

    by melondotnet
    Answers
    2
    Views
    562

    It may be better to create a system by which the...

    It may be better to create a system by which the user can not procede without entering the correct num of things, by having a continue button disabled.
    Form:

    Imaging you have three text boxes,...
  14. Question: Translation

    by melondotnet
    Answers
    1
    Views
    769

    You will need to loop through individual words,...

    You will need to loop through individual words, which should be easy with the .spilt method.

    I am assuming something rather like this:

    Words = txtEnglish.Text.Split(" ")

    Now loop through...
  15. Answers
    1
    Views
    1,963

    I am not great in my symbols, but if you prvide...

    I am not great in my symbols, but if you prvide me with them then I may be able to help.
  16. Answers
    3
    Views
    873

    Umm, just heating would only work until the...

    Umm, just heating would only work until the solution cooled again. It is imperative that you add more solvent.
  17. Answers
    7
    Views
    702

    Please explain more fully... :confused: Do...

    Please explain more fully... :confused:

    Do you want it so that the user can enter the number of 'Backspaces' to 'Execute'?
  18. Answers
    3
    Views
    873

    Heat the solution, and add more solvent. The...

    Heat the solution, and add more solvent.

    The heating bit is not required, but it makes it quicker, I think.
  19. Answers
    2
    Views
    4,691

    1) I think a is true, and molecules are made of...

    1) I think a is true, and molecules are made of atoms, which are their-fore smaller than them.

    Umm, I think q3 is d (neither of these) because mercury has an atomic mass of 80, while gold has an...
  20. Answers
    1
    Views
    737

    In my opinion it means we know how to 'treat' ...

    In my opinion it means we know how to 'treat' air, and it can be used as evidence to show that as this increases, global; warming becomes more of a threat, sort-of.
  21. Answers
    1
    Views
    509

    Speed (s) = Distance (d) / Time (t) d = s * t t...

    Speed (s) = Distance (d) / Time (t)
    d = s * t
    t = d / s
  22. Answers
    7
    Views
    702

    In vb.net (2005) ...

    In vb.net (2005)

    StringVar1.Remove(StringVar1.length,1)

    This may require revising...
  23. Answers
    2
    Views
    1,037

    Hi, I can program in VBA... Try replacing...

    Hi, I can program in VBA...

    Try replacing cells, with range.

    To get the value, you use .text, but to write to a cell, use .FormulaR1C1

    Note: R1C1 relate to a number-by-number referance, R =...
Results 1 to 23 of 25