Search:

Type: Posts; User: 1BadSlug

Search: Search took 0.04 seconds.

  1. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    bump...
    sting name Weapon is not working, why is it not selecting a new byte?
  2. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    I am still stuck on this.


    byte getWeapon(string weapon)
    {
    byte Weapon = 0x00;
    switch (Weapon)
    {
    case 0: Weapon = 0x58; break;
    ...
  3. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    SelectedText is going to select the text from a combobox and/or textbox.

    But Ive also added a referance to each text to a byte ex. case "gun": weapon = 0x01
    So in the combobox you select the...
  4. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    Can you personally see an issue with the problem im having?
    Is there a possible fix that you could help me out with?
  5. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    byte getweapon(string weapon)
    {
    byte Weapon = 0x00;
    switch (metroComboBox3.SelectedText)
    {
    case "gun": Weapon = 0x01; break;
    ...
  6. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    I'm sorry for the missing information. I'm new and still learning C#, this is my first project.

    metroCombobox2 contains...
    Soldier # 1 - Load Out # 1
    Load Out # 2
    Load Out # 3

    metroCombobox3...
  7. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    Sorry for the double post.
    Forgot to mention I was able to narrow it down too 2 comboboxes, as mentioned above.
  8. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    byte getweapon(string weapon)
    {
    byte Weapon = 0x00;
    switch (metroComboBox3.SelectedText)
    {
    case "gun": Weapon = 0x01; break;
    ...
  9. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    byte getweapon(string weapon)
    {
    byte Weapon = 0x00;
    switch (metroComboBox3.SelectedText)
    {
    case "gun": Weapon = 0x01; break;
    ...
  10. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    This did not work i got an error on the last part {combobox2.text}
  11. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    Ah ok thats the coding for the buttom, but instead of it writing to a message box how would I send it to ps3?

    PS3.SetMemory(0x10000000, new byte[] { 0x01 }) (this, comboBox1.Text +...
  12. Replies
    19
    Views
    11,364

    Re: Ultimate combo box challenge please help.

    Thank you for the reply.
    How would I code this, if I have 3 different offsets in two seperate comboboxes, and thrird combo calling for bytes. Then calling it all into one button?
    Like where does...
  13. Replies
    19
    Views
    11,364

    Ultimate combo box challenge please help.

    Hello everyone, Im currently making a personal tool. Im learning c# and I've hit a snag using multiple comboboxes and one set button.

    ComboBox1 = Soldier
    ComboBox2 = Loadout
    ComboBox3 = Weapon...
Results 1 to 13 of 13



Click Here to Expand Forum to Full Width