I've never actually used that class myself but, from a quick look at the documentation, it appears that you are probably calling the WaitForNextEvent method, which is synchronous and gets just the...
Type: Posts; User: jmcilhinney
I've never actually used that class myself but, from a quick look at the documentation, it appears that you are probably calling the WaitForNextEvent method, which is synchronous and gets just the...
If you're talking about interfacing with external hardware then that hardware will pretty much always come with accompanying software, so the first thing you should do is review the documentation for...
"By and large" is actually a nautical expression, or at least a combination of nautical terms, that pretty much means "into the wind and with the wind". That means that, as an every day expression,...
Happy birthday jmcilhinney. You are the toppest of top blokes and obviously everyone thinks you're tops. Keep up the top work.
That information mentions System.Drawing and an OutOfMemoryException. Are you doing anything with Images in the application?
The column supports that situation without any extra code from you.
http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcheckboxcolumn.threestate.aspx
First of all, you should only ever be writing Catch blocks for exceptions that you know for a fact can reasonably be thrown. You don't just stick Catch blocks in just in case something might happen....
If you have a question that relates specifically to the topic of this thread then just ask it, rather than asking if you can ask it. If it doesn't relate specifically to the topic of this thread...
Using SQL Server CE is pretty much exactly as I've shown above, as it is for pretty much any data source when using ADO.NET. You need to add the SQL Server CE ADO.NET provider, which you do by...
The Form class has a TopLevel control. To nest a form inside another form you must set TopLevel to False for the child form.
Editing designer-generated code by hand should generally be avoided for two reasons:
1. You might do something that will break the designer.
2. Each time you make a change in the designer it will...
The most common reason for this issue is the working directory. When you run an EXE from the commandline, its working directory will be the folder containing the EXE. If you run an EXE by calling...
As I said in my previous post, if you want to sort and filter the data locally then you use the Sort and Filter properties of the BindingSource. That said, if you only want a portion of the data to...
The code you posted originally must already be in the form. That code accesses the Controls collection of the form. In order to get its Controls collection, you must already have the form. What do...
Are you saying that you want to navigate to the page containing the graph(s) in a WebBrowser control or that you just want to download the data and display it some other way?
Firstly, don't create a DataView. If you have a typed DataSet then add a BindingSource and bind your DataTable to that and bind that to the DataGridView. You set the DataSource and DataMember of...
Consider this. If you had a bag and you wanted to list all the things that were inside the bag, would you add the bag to that list? Of course not. When you loop through the form's Controls...
If you're talking about navigating in the drop-down calendar, that is provided by the OS so it's not really something you can change unless you do it all yourself from scratch and don't use the...
The easiest way would be to actually add a column to your DataTable and set its Expression and then let that be bound to the grid. The fact that the column exists in the DataTable does not mean that...
A tree is an inherently recursive structure so, unless you have a compelling reason to do otherwise, it makes sense to use recursion to populate it, e.g.Private Function GetFileSystemNodes(folderPath...
Firstly, please don't ask unrelated questions in the same thread. It just makes it harder for everyone. If have questions on two different topics then please create two different threads that each...
The 'Await' keyword is very new, introduced in VB 2012, which is why there's not so much information around about its use and many have little to no experience using it, myself included.
If you can't open the forms in the designer then you obviously can't delete the FlexGrid control(s) in the designer. What you can do is open the designer code file and delete the field referring to...
This is a bit of an educated guess but I think that you'll need to set the DefaultCellStyle.NullValue property of the column to Nothing.
That's the configuration of the ID column in your DataTable, which you're not even using in that code. What's the configuration of the corresponding database column?
You could have a look in the DataSet code file and see if there is indeed a TableAdapterManager class definition in there. As I said though, deleting the DataSet and generating a new one should...
Or rather:
If oRng IsNot Nothing Then
End If
Functioanlly equivalent but much more natural, which is why IsNot was added to the language.
Maybe if you were to actually describe the errors rather than just say that they exist, then we may be able to determine the cause. That said, you could simply delete the whole typed DataSet and...
.NET was specifically designed with side-by-side installation in mind, so you can have every version of VS, from VS.NET 2002 to VS 2012, all installed at the same time if you want, and you can even...
It's mostly fairly simple stuff. You would use a For Each loop to go through the rows in the grid. For each row, you can use Directory.GetFiles to get the full path of a file with a specific name...
Images are displayed against nodes in a TreeView the same way they are displayed against items in a ListView. You create an ImageList and assign it to the ImageList property of the TreeView. You...
I had every desire to help but my repeated requests for relevant information were apparently falling on deaf ears. Again, I assure you that you could get much clearer than the description you...
You'd certainly want to be using double-buffering at least, i.e. draw everything to a single Bitmap first and then, on the Paint event, draw that Bitmap with a single call to DrawImage.
I understand that it was an honest mistake but you then compounded it by creating a duplicate thread even after I specifically said that I'd asked the mods to move the existing thread. Anyway,...
I assure you that you could get much clearer than that. What does "stopped" mean? Does it mean that the process has completed? That the application is not responding? Something else entirely? ...
God damn it! I specifically told you in your other thread that I had asked the mods to move that thread. You've posted in the wrong forum and now you've compounded that error by posting a duplicate...
Remember when I said:What exactly does "seized up" mean?
Because you have the data in three different collections, you need to get an index from somewhere to get the three items to combine. You would normally do that using the loop counter in a For loop. ...
If animation is fundamental to your application then you may be better off looking into WPF. It's more work to learn than Windows Forms but has native support for animation.
If you are going to...
So, what's the question?