- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
Re: is it compulsory that you don't want to write filestream outside the loop? Let me know if it is the case. otherwise in simple way you can write a function which will accept your itemdesc,price etc as a parameter and write this code inside the function See Below Mentioned Code: … | |
Re: private void Form1_Load(object sender, EventArgs e) { dateTimePicker1.Format= DateTimePickerFormat.Custom; dateTimePicker1.CustomFormat=" "; } select your datetime picker control and select <ValueChanged> event, then write the code as below... private void dateTimePicker1_ValueChanged(object sender, EventArgs e) { dateTimePicker1.Format = DateTimePickerFormat.Short; } | |
Re: 1)Add Panel in which video will be displayed...background color of panel is black In second Panel (background color of panel is black) 2)Add Button to browse the path of a vedio file 3)Add Button to Play 4)Add Button to Pause 5)Track Bar 6)Add status strip below the second panel [CODE]namespace … | |
Re: exec <name of the procedure> if you have parameterized stored procedure then exec <name of the procedure> <'param1'> <param2> ....etc Note single quote for char value and no quotes for int parameter |
The End.