Search:
Type: Posts; User: si_the_geek
Search:
Search took 1.94 seconds.
-
If I was the successor I would prefer it had been changed, but would understand if it wasn't.
Doing a few at a time (and potentially giving up after a while) is certainly a valid approach :)
-
Those two code blocks can be changed to these variations:
frmCustomerService frmCustomerService = new frmCustomerService(txtCustNo.Text, tab, sdc)
{
StartPosition =...
-
Debugging is examining what happens as the code runs, for example seeing which parts of the code actually run (due to If statements etc), what the values of variables etc are, and so on.
There is...
-
I'm fairly certain he wont do anything dangerous himself (he doesn't want to look bad), but I am concerned about what he will inspire his fans to do.
The amount of weaponry they turned up with the...
-
I think that is one of the features you get as a PowerPoster (2000+ posts)
-
Time for some good news... Twitter has permanently banned Trumps account.
I wonder what he'll do with his time now, does he still have access to the Nukes? :eek:
-
If you only call it once in total then it doesn't matter.
If you might ever call it more than once while the program is running, then Delaney's suggestion is better (and the other is dodgy).
...
-
If the length of text on each line can be different, you do basically need to read the whole file (and store the data, at least temporarily), so your method is certainly valid.
A List is a...
-
The signature is the bottom part of the post (in my case starting with the MVP logo, in Jacobs case starting with "Useful Forum Tips:").
If you can't see them, at the top-right of the page click...
-
Neither of them are wrong.
.Net Core can be installed on those different platforms.
it is not installed on Vodahost.
If your host doesn't have it installed (and wont allow you to install...
-
Our 'Office Development/VBA' forum is more appropriate for this question, so I've moved the thread there.
-
The good news is that for VB6 you can edit the watch so that you automatically break when the value changes, it makes the hunting much easier.
-
You will repeatedly get values from the same record, unless you use .Read to move to the next record.
-
It certainly doesn't look very modern... hopefully that is because they are focussing all their efforts on the software they make, but it isn't ideal.
-
Welcome to VBForums :wave:
I'm afraid this is nothing to do with VBForums, it seems that you are referring to this site: http://nuke.vbcorner.net/default.aspx
(which has a link to VBForums, but...
-
The drivers market seems to have settled now, and there are some potentially interesting things there, especially with the new people and the returning Alonso.
In terms of teams, things are...
-
Actually the IsNull function used there is basically "If (field) Is Null Then 0 Else (field)"
So it is just a way to avoid returning Null - any rows that are Null will be treated as 0 instead. In...
-
I've moved this thread to the .NET Architecture & Design forum
-
Welcome to VBForums :wave:
Your seem to have missed an SQL statement, or got confused with your variables.
This is the important section of code:
You assign an SQL statement to sqlStr
You...
-
Rather than generating the number yourself, set the field to be an Identity field (or called AutoNumber in Access based databases). The details of how you do that vary based on the database system...
-
George had a brilliant race - shame about the team (radio fail led to the wrong tyres), and the bad luck (the puncture).
He is certainly a star of the future, and will get a good chance soon...
-
Welcome to VBForums :wave:
Due to our spam protection features, posts from some new members don't become visible until they are manually approved by moderators - and the system has chosen you to...
-
I expect George Russell to be a bit slower than Bottas, but it is a good chance for him to show off his skills - and if he does perform better than Bottas, it could boost his career a lot (maybe even...
-
In that case you just need to use the same kind of code for each of the tables you want to add data to (so for 3 tables, you would have 3 blocks of code like that, one for each table).
As...
-
It's hard to keep the driver away from others, for example if there is a crash (even a small one) then the marshals are likely to need close contact with the driver.
There are also several...
-
The crash was certainly horrific, video here for those who haven't seen it: ...
-
Our automatic spam prevention measures mean that some new members need to wait for their first few posts to be manually approved, and unfortunately the system decided you belong to that group.
The...
-
There are a wide variety of technologies and coding methods you could be using to interact with an Excel file, so we aren't going to tell you the possible solutions for each of them.
If you show...
-
Welcome to VBForums :wave:
I have moved this thread from the 'VB.Net' forum to the 'Office Development/VBA' forum (for the VB editor in Excel etc).
-
You've mi-interpreted there, the array is of multiple List(of String)
The issue is that those lists need to be initialised (and can't be in the declaration line), but thankfully it isn't too hard...
-
Thread moved from the 'VB.Net' forum to the 'C#' forum
-
It certainly does hold a lot of promise - and in addition to the rain and start positions, there is the issue of the track surface being new and slippery in the dry (so even if things are going well,...
-
You can stop the current cell being editable by either ending the edit (to save the current value):
DataGridView1.EndEdit()...or by cancelling (so no change is made):
DataGridView1.CancelEdit()...
-
Thread moved from the 'VB.Net' forum to the 'Application Deployment' forum
-
It sounds like the module shouldn't have access to the form, and probably shouldn't have access to the DataGridView either... but in order to determine whether or not that is the case, and to advise...
-
Resources are put into the executable when you compile, so your app will contain the resources at the time you compiled that particular version of the app.
Clicking "start" re-compiles, and adds...
-
There are several vaccines being developed by different companines, and they have different supply chains. There is a good chance that between them they will be able to provide enough stock of...
-
We have good news... a vaccine seems to prevent 90% of infections, and could be available to some people (medical staff etc) within a couple of months:
https://www.bbc.co.uk/news/health-54873105
-
Most of them are likely, especially as the rules are basically staying the same (which should help Red Bull and Ferrari catch up).
The least likely are Alonso (probably a bit too old now) and the...
-
As you haven't indicated which line the error is occurring on we have to guess, but I'm assuming it is on the If statement.
If I'm right, you can avoid the error by putting the check for Null...
|
Click Here to Expand Forum to Full Width
|