Post: How to make a Client list C#?
08-07-2014, 05:30 PM #1
LBP1906
Little One
(adsbygoogle = window.adsbygoogle || []).push({}); Hello i'm working on my 1st tool and i want to add a client but i found a good tutorial only crap =/
(adsbygoogle = window.adsbygoogle || []).push({});
08-08-2014, 01:46 AM #2
Smooth
< ^ > < ^ >
you found a good tutorial only crap? :ha!: google and yt are your best friends, otherwise look around in the forums, there are tutorials.
08-11-2014, 04:52 PM #3
seanhellen
Are you high?
This is how I did mine - Make a datagridview with 2 columns - client # and client name. Then add a button. double click the button and put this in it

    if (dataGridView1.RowCount == 1)
{
dataGridView1.Rows.Add(11);
}

for (uint i = 0; i < 12; i++)
{
dataGridView1[0, Convert.ToInt32(i)].Value = i;
dataGridView1[1, Convert.ToInt32(i)].Value = ClientNames(i);
}
}

public static string ClientNames(uint client)
{
string getnames = PS3.Extension.ReadString(0x0178646c + 0x5808 * client);
return getnames;
}


That should do it Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo