Click here to Skip to main content
15,889,096 members

Videos


Page 2 of 3
1 2 3


21. how to capture the dialog window is open
I am gonna think that you are using desktop application and displayed a dialog and dont want the user to do anything unless he answers for that dialog and you trying the hard way to do this :-)so here is your answer according to my clear imagination to your unclear question...
a1mimo Updated: 21 Oct 2012
Rating: 1.00/5 ( (1 vote))
22. Smart Device Project
Actually it will only run on windows phone not any mobile OS can run it there is another tools for other OSs like Eclips for Android so its better to use Java in this case Java will make your program run on many if not all mobile OSs
.NET » »
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))
23. Convert image in image control to byte
Try thisbyte[] imagebyt = new byte[Image1.ImageUrl.FileBytes.Length+1]; imagebyt = Image1.Imageurl.FileBytes;MemoryStream ms = new MemoryStream(imagebyt,0,imagebyt.Length);cmd = new MySqlCommand("Insert Into db_image (Image) values (@imag)", con); ...
Web Development » ASP.NET »
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))
24. Perform validation on data binded textbox before updating data source
Use the DataMemberChanged event in the BindingSource to validate your data
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))
25. How to chane gridview value by clicking button outside gridview
here is the code for your problemprivate void button1_Click(object sender, EventArgs e) { foreach(DataGridViewRow Row in dataGridView1.Rows) { if (Row.IsNewRow) { } ...
Gridview » »
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))
26. Making Connection MySql Server with Asp.Net 3.5 on Go-Daddy Hosting Server.
I know exactly what is your problem because I had this one before, actually the problem isn't in your code its about the connection you use for connecting your Mysql database, simply you need to use ODBC connection to connect to your database and here is an example of how to do so ...
Web Development » ASP.NET »
a1mimo Updated: 21 Oct 2012
Rating: ( (No votes))
27. clicking menu strip to go the next page in C# windows application
lets assume the Form you want to go to named Form2 so in the event you want to call the other form from type this codeForm2 f2 = new Form2();f2.Show();orForm2 f2 = new Form2();f2.ShowDialog(); // to use the DialogResult in your Form2orForm2 f2 = new...
a1mimo Updated: 28 Apr 2011
Rating: ( (No votes))
28. How to get the text of a label in a datalist control?
Hello guysI have a datalist control and in its item template I have a label and an imagebutton the lable is binded to column in databasethe scenario is that the label is the title for a book and the details is in another page, I want that when I click the image button to redirect to the...
Web Development » ASP.NET »
a1mimo Updated: 27 Apr 2011
Rating: ( (No votes))
29. How to get the values from asp controls and pass it to another page?
Hello GuysHere is my problem I have a careers page in my website I want the user to be able to search for jobs using some filters the filters parameters is coming from database and they are binded like thisjob type binded in radiobuttonlistdepartment binded in...
Web Development » ASP.NET »
a1mimo Updated: 27 Apr 2011
Rating: 4.00/5 ( (1 vote))
30. How to make the selected datagridview row ReadOnly Property to false
if you want the row ReadOnly property to be false then use thisdataGridView1.CurrentRow.ReadOnly = false;
Desktop Programming » Windows Forms »
a1mimo Updated: 15 Apr 2011
Rating: 5.00/5 ( (2 votes))
31. how take last two number from 6digit number
I think you mean that you want to to change your last 2 numbers for example if they are 12 you want them to be 22 right?I will assume the answer is right anyway :-Dso here it is all you have to do is to add 1 to your number :-)123456 + 1 = 123457 and here is the fromand add...
Web Development » ASP.NET »
a1mimo Updated: 14 Apr 2011
Rating: 5.00/5 ( (3 votes))
32. Is there a way to change text on MessageBox buttons?
Hello guys,My question is really simple I want to change the text on messagebox buttons to something elsefor example I want to make 'yes' button say 'sure'can I do this ?I did google this some while ago and I remember I couldnt find anything helpful so if somebody get me a google...
Desktop Programming » Windows Forms »
a1mimo Updated: 13 Apr 2011
Rating: 5.00/5 ( (1 vote))
33. how to validatate (restrict string )allow number followed by upto four decimal by regular expression in c# web application
you know what I dont really have that experience in regular expression but here is an answer that might help youput this before the eventstatic int afterdot=0;static bool dot=false;at text changed event put this codefor(int i=0;i{ ...
a1mimo Updated: 13 Apr 2011
Rating: 3.00/5 ( (1 vote))
34. Reuse variable in another class
lets assume your first class name is first, all you have to do is to declare those variables as publicand call them using first.x and first.y
a1mimo Updated: 12 Apr 2011
Rating: 4.00/5 ( (1 vote))
35. How to retrieve data from a table and inserting the retrieving the data into a another table using a gridview
I dont know how exactly do you bind your data into your gridview so I will tell you what you have to do and you make this on your own codeyou have to check the cell end edit event for the dataGridView and check for the value of the first column of yours and fill the other columns the way...
a1mimo Updated: 12 Apr 2011
Rating: ( (No votes))
36. How to control text changed event?
you might find it better to put your code at the validating event.
a1mimo Updated: 12 Apr 2011
Rating: 2.33/5 ( (3 votes))
37. Active Form Status check
try this Form.ActiveForm.ActiveMdiChildand also as santosh saidForm.ActiveForm.ActiveMdiChild.Close();I hope I helped:-)
a1mimo Updated: 12 Apr 2011
Rating: 3.00/5 ( (1 vote))
38. DataGridView row disable depending on 1 cell value
try this oneif(dataGridView1.CurrentRow.Cells["the name of the column you wish to check its value"].Value=="whatever the value to check"){ dataGridView1.currentRow.ReadOnly=true;}I hope I helped :-)
a1mimo Updated: 12 Apr 2011
Rating: 2.00/5 ( (1 vote))
39. Removing last character in textbox
I would suggest you try this textbox.Text.Remove(textbox.Text.LastIndexOf(','),1);its easier way and you can use it in whatever the event you would like to use it inI hope I helped:-)
a1mimo Updated: 12 Apr 2011
Rating: 5.00/5 ( (2 votes))
40. how to post form data from asp.net page to another url?
see this it might help you http://www.w3schools.com/asp/asp_inputforms.asp[^] I hope I helped :-)
a1mimo Updated: 10 Apr 2011
Rating: ( (No votes))

Page 2 of 3
1 2 3