Search:

Type: Posts; User: HyperUniverse

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    15
    Views
    1,551

    Re: split string

    thanks dday9

    I have just changed it to:

    TextBox6.AppendText(String.Format("{0}:{1} / ", letterIndex, input(letterIndex)))


    Regards
  2. Replies
    15
    Views
    1,551

    Re: split string

    thanks dday9

    you know, console is a headache for me
    I like textboxes, and I've got no idea how to get your suggestion:
    Console.WriteLine("{0}: {1}", input(letterIndex), letterIndex) into one...
  3. Replies
    15
    Views
    1,551

    Re: split string

    I think I've done it.




    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
    Dim input = "&dx...
  4. Replies
    15
    Views
    1,551

    Re: split string

    thanks dday9

    it works perfectly,

    With this, I can go around a few times until I get all the data I need.


    But, a last question:
    To make it nicer (although it works as I said), how do I get...
  5. Replies
    15
    Views
    1,551

    Re: split string

    OK, so to make it better for you to understand:
    how do I find the first occurrence of a LETTER (but I don't know what letter it might be) inside a string of numbers.

    That'll solve my problem, as...
  6. Replies
    15
    Views
    1,551

    Re: split string

    Thanks PlausiblyDamp

    Indeed, removing that has fixed my problem.

    Now, the next problem please, if someone has any advice:

    how do I get each of these splitStrings resulted, in a different...
  7. Replies
    15
    Views
    1,551

    [RESOLVED] split string

    Hi,

    Why is my split string not coming out as strings, but as individual characters on each line?



    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  8. Replies
    2
    Views
    485

    VS 2008 serialport string into 2 textboxes

    Hi,

    How do I read a string from serialport, and use it in multiple textboxes?

    I mean I want this string displayed in a textbox.
    I've done that with no problems.

    But I also want just a part...
  9. VS 2008 how do I display hex in a rich textbox

    Hi I'm trying to display the HEX that I am receiving via RS232 inside a rich textbox,
    example:

    01070001480A
    I get this right

    But the next one:

    0107000189CA
    is wrong; I get it displayed as:
  10. VS 2008 unknown number of elements in an array

    Hi,

    My array is made of 7 elements.
    And I have used this kind of code:


    But it appears that at starting up time, the array can have any length from 0 to 7, as I might start the program when...
  11. Stop backlighting from dimming automatically. (wm6)

    Hi,

    How do I stop backlight to dimm automatically?

    I did manage to prevent stadby with this:


    Thanks.
  12. automatically reconnect broken RS232 comms

    Hi,

    Why is my app crashing when it executes this:




    This timer is always enabled, but the crash only happens when I disconnect my appliance from RS232, and even if I reconnect it back in 2...
  13. send SMS from a WM 5 - 6.5 smartphone using a button

    Hi,

    How can I send SMS from a WM 5 - 6.5 smartphone just by using a button?

    I want to send the same message from one button, without having to enter the text message every time.

    I have 20...
  14. VS 2008 Re: show tip when combobox item selected

    Well, actually it turns out that I can do what I wanted, very easy.

    Add the items in your combobox, followed by the tip

    The command that I need to execute after picking up the combobox item is...
  15. VS 2008 [RESOLVED] show tip when combobox item selected

    Hi

    I have a very long list in my combobox
    How can I show a tip about the item that was selected in the combobox?



    The AT#SELINT is the item I am interested in the combobox.
    But how do I...
  16. Replies
    1
    Views
    624

    VS 2008 button at an angle

    How can I put a button at an angle on the form vb net?
    (not the text on the button, but the button itself)

    thanks.
  17. Replies
    1
    Views
    3,098

    bluetooth & keyboard

    Can someone give me a suggestion on how to turn bluetooth ON/OFF and how to show/hide the on screen keyboard from my application?


    thanks
  18. Replies
    5
    Views
    1,867

    Re: HardwareButton

    yeah, you might think that we are stupid,
    but what do you understand from this detail?
    105215
  19. Replies
    5
    Views
    1,867

    Re: HardwareButton

    so, just for test purposes, I have created a very simple new project:
    VS2008, VB, net3.5, mobile 5,
    add a button in the middle of the screen that will say hello! when pressed.

    nothing more...
  20. Replies
    5
    Views
    1,867

    HardwareButton

    I am trying to add HardwareButtons to my app, but I get an error at compiling time:

    invalidoperationexception was unhandled

    pointing up to "Partial Public Class Form1"

    I thought to use a...
  21. Replies
    5
    Views
    3,884

    Re: open internal GPS; and pervent standby

    I am going slightly mad!

    I can't read (or open???) the internal GPS that is set on COM4 with my app.
    To explain better my problem is that if I use ReadExisting with my internal COM4, then I get...
  22. Replies
    5
    Views
    3,884

    Re: open internal GPS; and pervent standby

    I have found a port splitter
    GPS Gate
    I've installed a trial version and now my application works fine with a virtual COM created by the GPS Gate.
    But this GPS Gate is set to use Com4 and 4800...
  23. Replies
    5
    Views
    3,884

    Re: open internal GPS; and pervent standby

    Thank you for your help, but unfortunately it doesn't work.

    This is the code I've used in the first :


    it did not work with my code, and it still doesn't work with your code:


    as for the...
  24. Replies
    5
    Views
    3,884

    open internal GPS; and pervent standby

    Hi

    How do I open the internal GPS on my device?
    Sounds like a stupid question, I know.
    But doing the usual it's not working.

    The internal GPS is set on COM4.
    Set baudrate 4800,
    I checked...
  25. Re: display COM PORTS alphabetically

    Thank you,

    It's working fine.
  26. [RESOLVED] display COM PORTS alphabetically

    Hi,

    How do I display the Ports detected on my device alphabetically?
    Now they are being detected OK, but displayed randomly:

    COM7
    COM4
    COM8
    COM0
  27. VS 2008 Re: replace string at a specific location in a txt file

    Of course they change,
    as I said the "word" that I want to change will be different every time I open the file.

    daniel64 thanks for the sample code, but this is replacing a specific "word".
    I...
  28. VS 2008 replace string at a specific location in a txt file

    Hi,


    I have opened a txt file in a richbox and I want to know how can I replace a string inside the file?

    All examples I've found up to now it shows how to replace a specific "word".
    But my...
  29. Replies
    1
    Views
    617

    VS 2008 [RESOLVED] transparent label

    I have a picturebox with a picture in it.
    I have put a label over them and set its background color to transparent, and the font is red.

    when I run the program I see that the label is not...
  30. Replies
    7
    Views
    987

    VS 2008 Re: add numbers from a text file

    so are you telling me that on a pocket pc there is no way to add the numbers in a text file and display the result on a label?

    you can enter the room via the window
    and you can swallow the whole...
  31. Replies
    7
    Views
    987

    VS 2008 add numbers from a text file

    Hi

    How can I add numbers from a text file (and there are only numbers in that txt file), without using IO.File.ReadAllLines

    is there any other method?


    I can't use the above because my code...
  32. Replies
    2
    Views
    1,949

    Re: sum numbers in a text file

    So, I've found out that my approach is a dead end.
    can anybody help me sum all the numbers in my text file somehow else?

    thanks.
  33. Replies
    2
    Views
    1,949

    sum numbers in a text file

    Hi,

    I'm trying to add the numbers in a text file and show the result on a label.


    For the mobile phone (win6.5) development it comes with an error:


    But if I create a development for a PC...
  34. Replies
    1
    Views
    825

    VS 2008 stop textbox to grow too big

    Hi,

    I've got a textbox that displays a string received via RS232.
    Every second there is a new string of data, that is added to the textbox.

    How do I keep the textbox to a limit, so it won't...
  35. Replies
    2
    Views
    672

    VS 2008 add numbers in textboxes

    Hi

    how do I add numbers from two different textboxes, and then show the result into one of them?

    I tried this, but it won't work


    add_box is the box into which the user inputs a new number...
  36. Thread: rs232

    by HyperUniverse
    Replies
    5
    Views
    941

    VS 2008 Re: rs232

    I've seen the mistake in reading 2 different bytes, and I've changed it to:


    now it works better, updating the labels as it should, only it takes about 5 seconds until it updates (and I know the...
  37. Thread: rs232

    by HyperUniverse
    Replies
    5
    Views
    941

    VS 2008 Re: rs232

    can you give me an example?....
    thanks.
  38. Thread: rs232

    by HyperUniverse
    Replies
    5
    Views
    941

    VS 2008 rs232

    Hi

    I have a lot of data coming through the rs232 port
    If data starts with a capital letter "A to N" then it will be displayed on different labels.
    Example of incoming data:
    B12.7+ vbCrLf...
  39. Replies
    2
    Views
    1,360

    ppc logbook

    Hi

    I need advice on how to make a log book to keep track of my car's fuel consumption.
    To be run on a ppc or wm6.5 phone
    For example when I fill up with fuel, I want to be able to add the...
  40. Replies
    3
    Views
    3,032

    Re: sms application

    Wm6.5
Results 1 to 40 of 79
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width