hello,
i have to create a inventory software but for creating a invoice form i need a grid like
1. press a on first colomn then show list of product and select item then come to grid and auto fill price then come to 3rd colomn then enter price press enter then come new row same as all row ,
and edit on mouse click
but in .net control grid not work like that i use many example or try to creating own control but i am not able to creating a like that
so plese give me some idea
or code
thanks
Loading

Dharmesh SharmaPosted Dec 28, 2011, 8:50 AM
i am send a form and that code i hope you can understand
and GUI snap if you see GUI in form
Dharmesh SharmaPosted Dec 28, 2011, 8:39 AM
i have try to creating a grid but face some problem i move a text box on grid but some row its not working good .
anther problem is i am able not edit this grid
so its just a simple code i have already created a Invoice form in inventory software with
MSFlexGridLib
but i want to some alternative of this old DLL
so plesae help and we can more talk on skype,gmail,or live
skype:dharmesh.sharma15
gmail:[email protected]
Live:[email protected]
live:[email protected]
so if you free we can discuss more about may be you get more info or i get from you more
thanks
Pravin GhadgePosted Dec 28, 2011, 7:33 AM
is ur thread has been resolved?
Pravin GhadgePosted Dec 26, 2011, 11:20 PM
I had also faced the problem. So i had try the alternative.
I had open the another form which contains datagridview & shows the product in it on keydown of parent gridview.
for eg:
On Parent Fom:
private void datagridview1_KeyDown(object sender, KeyEventArgs e)
{
if(e.columnindex=0)
{
if(e.keycode=Keys.A)
{
frmAddDescription Show=new frmAddDescription();
show.ShowDialog();
}
}
I have attached the form of AddDescription.