8,966 Posted Topics
Re: If you look at the source of the webpage, you can see that the save button points to this: zero.sci-hub.se/3659/b0457fed7cde259c21949f7b8dd2f916/lopreiato2015.pdf?download=true Use that information to update your script. | |
Re: If you richt-click your file, then choose "Properties", you will see "Copy to output directory" which is set to "Do not copy". Choose "Copy always". | |
Re: https://barcode-labels.com/getting-started/barcodes/types/ I'd probably choose one of the last three 2D codes mentioned in the above link. | |
Re: Right-click the solution and add a new project, WPF since you think it is XAML. | |
Re: Shouldn't you be using quotes around your IP address, and around you entire JSON message? | |
![]() | Re: Add a check, like this: If My.Settings?.Properties IsNot Nothing Then For Each prop As System.Configuration.SettingsProperty In My.Settings.Properties prop.DefaultValue = "" Next End IF |
I'm looking to build an ASP.NET WebAPI/REST API (not Core) that should accept client certificates as authentication. I've found several examples, so I hope to be able to succeed. However, I'm looking to find out more on the inner workings so to speak of certificates and such, so I'm hoping … | |
Re: Are you looking for this perhaps? https://docs.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0 | |
Re: I especially like the remove filter button at the top of the forum list. Overall, nice improvements :) | |
![]() | Re: Are you perhaps using some third-party tools, and forgot to include those assemblies in your setup? If you create a WeTransfer link containing your setup, I can have a look. Send me the link as a PM here. Note that I won't be able to look before monday. |
Re: > but why the data in database is not change? its same with data before update That means your query has failed. See [this thread](http://www.daniweb.com/web-development/php/code/434415/using-phpmysql-with-error-checking) on how to determine what the error is. | |
![]() | Re: I prefer the 1938 radio broadcast, so cool. Especially when you keep in mind the panic it created. |
| |
Re: Never came across anyone. | |
Re: For one, `System.Windows.Forms.MessageBox` in WPF is `System.Windows.MessageBox`. Your event functions may be different too. | |
Re: string sql = "Select librarycardid, password" + "from library card information" + "where librarycardid = '" + librarycardid + "'" + "and password = '" + password + "' "; There is no space between `password` and `from`, `information` and `where`, etc. | |
Re: Hey Si. You'll need to show some data from your tables and how it should combine, then we can fix the query. | |
| |
Re: On what line above does the error occur? | |
Re: Linux runs Apache as your webserver, where Windows runs Internet Information Server. | |
Re: Dim outcome As String outcome = "xxxxx" You seem to be incorrectly instantiating a textbox variable. What are you trying to achieve? Putting a textbox dynamically on your form? | |
Re: I suggest you look at Javascript to add to your skills. | |
Re: Can you create an SQLFiddle, so we can see (part of) the data you have? Then post your desired result, so people can see what you would like to have. | |
Re: That is not how `JOIN` works. I think you are looking for `UNION ALL`. That requires the columns of the two tables to be the same. If they are not, you must put them in the correct order with the correct name. | |
Re: Line 19 ends with a comma. This might insert an empty item into your array, messing up the build of your query. Remove it and try again. | |
Re: `echo array_sum(array_column($items, 'numberOfPay'));` Here's a nice description of several options: https://www.designcise.com/web/tutorial/how-to-sum-values-of-an-array-with-the-same-key-in-php | |
Re: Show at least the link you found describing your problem and the explanation of the 2100 records. | |
Re: `Dictionary <string,Dictionary<string,string>>` should work correctly. In the case that it doesn't, you can try to create a wrapper class for it, like so: `public class DictionaryStringString : Dictionary<string, string> { }` And use in your model `Dictionary<string, DictionaryStringString>` Try it yourself first. If it still doesn't work let me know, … | |
Re: Jim asked what the situation here is. I live in the dutch region with the most issues. Companies are requested to let people work at home as much as possible. Some schools are already closed just as a precaution. Most major public events are affected, soccer games are played without … | |
| |
Re: Welcome to DaniWeb. | |
Re: I'm no cryptography expert either, but I've refactored your code. If you create all your objects once, the output is what you expect. So it has to do something with one of the properties, but no time to inspect in detail now. using System; using System.IO; using System.Security.Cryptography; using System.Text; … | |
Re: Is this all your code? From the looks of this I'd say that `Cmd1` is uninitialized. | |
Re: Use a UNION to combine all queries into one, then process each returned record. |
The End.