-
Replied To a Post in COSMOS OS won't boot.
This can sometimes be solved by just changing the framework to an earlier version like 3. Have you tried this? -
Replied To a Post in how to convert string from an array and converit to bitmap image using C#?
It sound like you're trying to achieve a captcha. This link is for ASP.NET but you can easily convert it to Desktop etc.. [Click Here](http://www.codeproject.com/Articles/99148/Simple-CAPTCHA-Create-your-own-in-C) -
Replied To a Post in Navigating through images in picture boxes
Well this might be a bad example but you can accomplish this by doing the following. Add a counter for each picturebox In the form load set the PictureBox.Image property … -
Replied To a Post in C# Windows Application Stopped Working On Windows Vista
Are you getting errors? or is the application just not running? -
Replied To a Post in doubt session
You question is very unclear. Please try and clarify your question.. Have you tried any code yourself? -
Replied To a Post in Probably super easy solution but I'm stuck. C# button visibilty
When you step the code and hover on gridTest.Visibility what does the current visibility show? -
Replied To a Post in Database error
It means that your application is trying to login to sql and retrieve the data. but it's being prompted for a username and password. You need to specify this in … -
Replied To a Post in connection string based on Oledb driver version present in PC
Have a look at this article and the links provided [Click Here](http://stackoverflow.com/questions/6570066/c-net-get-the-oledb-provider-version) Seems the easiest way is using registry values. If you can retrieve the version then you can just … -
Replied To a Post in Apply Microsoft Office's theme to my windows application
If you can find out where office stores its theme data you can probably right some code around that. as for the actual theme in your application you'll probably have … -
Replied To a Post in Trouble reading a text file and iterating through the data
Are they going inside the statements? Is the velocity and camera being set to 0? and if not then why is `if (dir == dirUp)` failing if it's suppose to … -
Replied To a Post in Trouble reading a text file and iterating through the data
`if (dir == dirUp)` also add checks on each of these if statements. and make sure the values are updating. best way of checking why the velocity isn't being set … -
Replied To a Post in Trouble reading a text file and iterating through the data
I would suggest you insert breakpoints in ` foreach (Rectangle badTile in core.badTiles)` When you reach the last bad tile ensure that it is contained in core.badTiles by right clicking … -
Replied To a Post in Trouble reading a text file and iterating through the data
`for (int x = 0; x < width; x++)` this line loops x amount of times inside you perform a check `if ((Convert.ToInt32(tileNo[x])) == 1)` so if it passes this … -
Replied To a Post in How to Implement Date Store in DB
I don't see you using timepicker_im.Value.ToShortDateString(); ? -
Replied To a Post in similer procedure works differently in 2 events
Okay then my only suggestion is this The code on this line isn't assigning y to the proper index `int y = cboweekdays.FindStringExact(DR["Day"].ToString());` If you step this line y = … -
Replied To a Post in similer procedure works differently in 2 events
Okay so when you step your code what is the value of `DR["Day"].ToString()` when you add a watch -
Replied To a Post in similer procedure works differently in 2 events
Please note that FindStringExact matches case where FindString does not. I think your only real problem is that `(DR["Day"].ToString()` is not matching the case. and in your click event you … -
Replied To a Post in similer procedure works differently in 2 events
have you tried inserting a breakpoint and checking the values while the program is running? -
Replied To a Post in How to Implement Date Store in DB
It's still the same Date and time that is saved into the database. So when you return the value from the database you can specify the format you need as … -
Marked Solved Status for Referencing Dynamic Controls from dynamically created event handler
So here's the thing and it's been quite simple up to here. I have never been required to do something like this and most tutorials are vague at best. I … -
Replied To a Post in Referencing Dynamic Controls from dynamically created event handler
Short and Simple Thanks. -
Edited Referencing Dynamic Controls from dynamically created event handler
So here's the thing and it's been quite simple up to here. I have never been required to do something like this and most tutorials are vague at best. I … -
Created Referencing Dynamic Controls from dynamically created event handler
So here's the thing and it's been quite simple up to here. I have never been required to do something like this and most tutorials are vague at best. I … -
Replied To a Post in Tools for C# application development
You need to create a new thread. This ons is 4 years old and you're not contributing to it. -
Replied To a Post in Compare datatable row data with textbox value
Is this what you mean? if (MessageBox.Show("record exist. do you want to continue?", "Confirm", MessageBoxButtons.YesNo) == DialogResult.Yes) { //Do Something } else { //Do something else } -
Replied To a Post in Personal Assistant
You could use the TryParseExact method explained here [Click Here](http://msdn.microsoft.com/en-us/library/ms131044(v=vs.110).aspx) The easiest solution would however be just using the dateTimePicker as mentioned by grarhakim. -
Replied To a Post in research about search pattern!
Based on your question "How many search patterns exist" this is quite vague. seeing as there are just as many search patterns as there are file extensions. When using something … -
Replied To a Post in Making a file open with my application
If the lines that contain filenames are unique you can use Regex to identify them. Otherwise you will have to create an exclusion list. -
Replied To a Post in Animated output
[Click Here](http://www.codeproject.com/Articles/79040/Sorting-Algorithms-Codes-in-C-NET) here is an excellent example. Only took 5 seconds to find :) -
Replied To a Post in ListViewItem
So you only want to display {The information to display} ? Could you please specify exactly what type of layout you want to achieve withing the listview and where is … -
Replied To a Post in Trouble saving to xml file
Try implementing some exception handling in your code aswell. Also ensure that you have permission to access the appdata folder -
Replied To a Post in Self proclaimed
Based on your post about helping your "Friend" i'd say you're quite deep in the friendzone and this is your way of coping. -
Replied To a Post in Help
static void Main(string[] args) { double powValue = 0; double sqrtvalue = 0; int NumberOfValues = 9; for (int i = 1; i < 100000; i = (i * 10 … -
Replied To a Post in CRYSTAL REPORT CALLING IN MENUSTRIP in C#
You can try this [Click Here](http://www.codeproject.com/Questions/308667/open-a-crystal-report-through-Csharp-windows-form) Regards -
Replied To a Post in Sad, sad news - Nelson Mandela passed away today
Interesting seeing all of your comments. I am actually from south africa and everyone here basically forgot about mandela until he became sick and subsequently passed away I was born … -
Replied To a Post in How to download Artifactory from .NET
Could you maybe post your code? Does it throw an exception when it stops in the middle? -
Replied To a Post in Unable to move object after it s rotation
private bool InObjectArea(MouseEventArgs e) { if (rect.Contains(cursor)) { return true; } else return false; } Seems this method isn't firing. Seeing as you created a new Rectangle object here. Correct … -
Replied To a Post in unreachable code with goto
Have you tried stepping the code and checking the variable values and determine why it's not working? Also i don't see you ever incrementing the Variable "K" -
Replied To a Post in elevator simulator
I just gave you a hint. You will need to code the logic to set the panel location and the logic to determine if the edges of the panels have … -
Replied To a Post in Load treelistview from datasource with hardcoded root nodes on treelistview
if the nodes are hardcoded. For instance there are 3 hardcoded nodes and you need to reference them and add childnodes to them you can simply do `treeView1.Nodes[Index of the … -
Replied To a Post in elevator simulator
This is just a suggestion. Drag 2 panels onto a blank form and set Panel1's Dock in the properties window to Left and Panel2's Dock to right. For visual purposes …
The End.