Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~8K People Reached
Favorite Forums
Member Avatar for mpdph09

I am not expert. I am trying to delete the files from the directory at button click. I have windows application which have folders populated in combobox1 and files populated in combobox2. I need to delete the selected folder from combobox1 and files within the folder. I am getting error …

Member Avatar for rproffitt
0
5K
Member Avatar for mpdph09

I have windows form with usercontrol to display image. I am trying to reset the autoscroll position to the top of the image if the user had scrolled down to see bottom part of the image. So at index change it should display top part of the next image that …

0
137
Member Avatar for mpdph09

I am working with C# windows application. I am using split container to display image in picture box in the first panel(with scroll bar(50% of the the picture can be seen only by scrolling down)) and data entry fields in the second panel. One field will always be at the …

0
305
Member Avatar for mpdph09

I am working with windows application, I have pictureBox to load image from the directory. I am trying to get some idea how can I display magnified image of particular area depending on the coordinates of that specific area on textbox focus.

Member Avatar for mpdph09
0
470
Member Avatar for mpdph09

HI, I am new to C# programming, I am trying to populate data from databse using adatpter and dataset. I am missing some part in my code, that fails to update selected item at selectindexchnaged. Same part works fine at every form_load. DataSet sdnew = new DataSet(); SqlConnection conn01 = …

0
165
Member Avatar for mpdph09

I am trying to get data from the SQL database with stored procedure using dataset and populate that data in combobox. It gives error as cannot find table 0. SqlConnection conn = new SqlConnection(); conn.ConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["dbConnection"].ConnectionString; SqlCommand cmd2 = new SqlCommand("GetBatch", conn); cmd2.CommandType = CommandType.StoredProcedure; cmd2.CommandText = "usp_CAMR_GetBatch_Status"; cmd2.Connection …

Member Avatar for tinstaafl
0
626
Member Avatar for mpdph09

Save value from the combobox for the index that will be changed. For e.g: If I have 5 items listed and 1st one is selected and when I change index to suppose 4th one, I need to save the value of 1st listed item at time of index being changed …

Member Avatar for Suzie999
0
200
Member Avatar for mpdph09

I am trying to populate textbox on winsows application from database. The stored procedure pulls data using datareader. Data looks fine when I execute stored procedure on SQL server management studio. But when I am trying to populate from the application its not getting same result. I apprecaite all help. …

Member Avatar for mpdph09
0
297
Member Avatar for mpdph09

I am working on C# window form application, which do insert, update of data into the database. I am having trouble, since I am new into this. I have declared temp variable that gets value if record exsits in the database. But in some scenarios if record is loaded onto …

Member Avatar for tinstaafl
0
332
Member Avatar for mpdph09

I am trying to upload folders to comboBox 1 from the directory, and then at selection from comboBox 1 to comboBox2. I have below code, I am getting error when I make selection from comboBox 1 as direcory doesnot exists at bin/debug path of the project. private void Form1_Load(object sender, …

Member Avatar for mpdph09
0
246
Member Avatar for mpdph09

I am trying to upload folders to comboBox 1 from the directory, and then at selection from comboBox 1 to comboBox2. I have below code, I am getting error when I make selection from comboBox 1 as "Unbable to cast object of the type system.string to system.Io.DirectoryInfo { private void …

Member Avatar for tinstaafl
0
229