Search:
Type: Posts; User: techgnome
Search:
Search took 3.77 seconds.
-
He's scraping a website and putting it into an Excel spreadsheet.
-tg
-
Also, the rate of the side of effects is negligible... on the order of the side effects of the flu vaccine... The J&J one though... yeah, I just saw this morning, they've decided to pause the roll...
-
clientb.Download2("http://192.168.14.205/KABOJJAAPPAPI/api/HandlerVBLoadterm/GetCustomersJSON/", Array As String("customerId",phone,"customerId2", sx))
That's because you're passing them as...
-
Well, a null reference error means that some object, somewhere in a line of code you're using is NULL or Nothing. What exactly that could be is anyone's guess at this point. It could be an object,...
-
If the BUTTON had been disabled, it may have worked... but because the picture box, which is the container, was disabled, the message never gets through, so the ShowAlways doesn't happen.
By...
-
hehehe... yeah. That'd be the one.
-tg
-
^^^ This. Can't recommend it enough. That's essentially how we've got a number of things hooked up in our system that I work on (although in Java). We have a class that's what we calla a POJO (Plain...
-
Waht kind of project is this for? I can't even imagine needing more than a few dozen classes, let alone a 1000, and there shouldn't even be a need for 3000 classes in anything... Wot in the heck are...
-
Yeah, I'd break things up based on functionality or domain (business) ... Let's say you have a program that represents a car. Rather than have it all crammed into one app, break it up......
-
Look up how to use the keyword OPTIONAL...You want an optional parameter in this ccase.
-tg
-
Yes... .Add does add a new node... but where you're using it, it just adds a node to the treeview... with no parent... so it puts it in the root. That's not where you want it is it? No. you want it...
-
This line doesn't do what you think it does:
TreeView_Dir_List.SelectedNode = TreeView_Directors_List.Nodes.Add(OpenFileDialog.SafeFileNames(i)) ' Add the new item to the selected node
It...
-
That IS how to do it properly. A right and proper host will only allow their databases to be hit from inside their firewalls... so you need to create a web API of some kind that will run on the...
-
No... you nailed it... he's trying to pass the three parameters to IsDBNull rather than the IF() ternary function...
.Account = If(IsDBNull(sdr("Account"), String.Empty, sdr("Account"))
vs...
-
I saw the perfect response to anti-vaxxers the other day... I wish I had saved it. Rather than trying to convince them they are wrong... embrace the conspiracy and turn into the skid... use their own...
-
That would depend on what your host supports. It could be ASP, ASP.NET, PHP, Java, etc.
-tg
-
https://en.wikipedia.org/wiki/GNU_General_Public_License#Linking_and_derived_works
It seems that it is ambiguous and up for debate, and depends on how it "derivative work" is interpreted.
-tg
-
I'd forgotten about LAzarus... glad you brought it up. Last time I had looked which was some time ago, there wasn't much of an IDE, it's come a long way. Took some effort to get it on my Linux system...
-
Mazepin - https://twitter.com/HaasF1Team/status/1376255269232128004
Ummm... like maybe completing an actual lap of actual racing with other cars on the track? Jezzes. I didn't have high hopes for...
-
Seemed like a much better race than the parades we got last year.
Looks like RB & Ferrari might finally be able to take the fight to the front this year... time will tell though.
The car has...
-
Like Funky I fall into the sometimes camp. Depends on how much control I have. If I can, I'll go with as much natural keys as I can. Sometimes it just isn't possible. Addresses are among the worst....
-
If it's a wordpress site you're looking to post to... use the WP API... it's there for a reason. Don't try to go around it. With themes, add ons and other stuff, things will get moved around and...
-
Im sorry... but even with that fix... no... no. no no.....
First, you only need one if statement, with the TryPArse.... if that succeeds, then you have your number. If it doesn't then you show the...
-
I never said anything about dumping the CSV. I simply said use a Collection to keep track of the LAbelIds as you use them. When you read one from the CSV data, you look to see if it's in the...
-
Yuck.
Use a Collection. Check to see if the LABELNAME# is in it, if not, create the shortcut, then add it to the Collection. If it is, then skip it and move on to the next row.
-tg
-
Will the names be consecutive like that, or can they appear anywhere?
ie, is it always like this:
MSI-MACHINE01,adm-testaccoun!,LABELNAME1
MSI-MACHINE0!,adm-testaccount,LABELNAME1...
-
I think this, and another account are actually some kind of bot... they ask some simple questions, the other account answers with something simple... then they move on to some older threads and reply...
-
Unless they are YOUR libraries, I would NOT install them to the GAC. Why? Because it may cause other apps to use them in error when they should be using others from another location. If the...
-
Complications from what exactly? Training my immune system to fight off something that it might otherwise not be able to fight off? What is it about the vaccines exactly that had people...
-
Yeah, those are our Phase 1a, 1b, and 1c categories... The "some groups with certain health conditions" is 16+ with any underlying heath conditions that make them susceptible. That's how my and the...
-
Take a look at Open Source Web Design. It's my go-to place when I need a new look. The template search can be filtered by SEO capability I think.
-tg
-
If ul IsNot Nothing And ul.Text = "X" And cell.text <> "X" Then
Since we're pilling on here.... I'd go ahead and use "AndAlso" here, rather than just "And" ... And will cause all three...
-
Here's how it worked for us: Two weeks ago today, (being Monday) SC opened up phase 1b (why b, and not just phase 2, which doesn't actually exist, I don't know, but what ever)... which now included...
-
1) What do you get? You've stated what you want, but not what you actually get.
2) What is in your table? (data)
3) Just as equally important, what does your table look like? (fields and so on)
4)...
-
I got the Moderna one... pretty much the same thing, soreness at the injection site. Felt like l had a bruise in my shoulder. Got the shot on Friday afternoon, the soreness was at its worst on Sat,...
-
That is a bit... odd... Try this: Type Me. and see if MenuStrip1 shows up in the list... if it does... select it, and continue with the code... see if that makes a difference. It probably won't....
-
Well I got the first half of the vaccination today... so far so good.
Installing Windows 10 feels... right... right now. I'm assuming the urge to subscribe to Office 360 and XBox Live comes after...
-
Well, to be fair, it's all conjecture... I'm not sure what the custDoc object is other than a Document --- but a Document of what namespace?
I'm sure that the error message is a red-herring, and...
-
The adding of the table before I assume worked... so I looked at how it was different from the one that didn't... and here's what I noticed:
Dim table1 As New PdfPTable(11) <--...
-
Ah... I know the effect you're going for any way... use a RadioButton instead, change its Appearance to Button. That will give you the up/down effect, plus you can also change the label or icon...
|
Click Here to Expand Forum to Full Width
|