-
Replied To a Post in Hi everyone, I'm evelyne88
Welcome. -
Replied To a Post in need some suggestions and ideas
Welcome. -
Replied To a Post in Get one item of duplicate if found
> That because inside this select * query I then loop through each to get other relavent data that has the same uid so I only need to get one … -
Replied To a Post in Get one item of duplicate if found
If you query the following: SELECT * FROM yourtable WHERE msgfrom='user' ORDER BY uid, mdate DESC You have all the information you need in the correct order. -
Replied To a Post in Hi everyone, I'm codingaspirant
Welcome. -
Replied To a Post in Get one item of duplicate if found
Show some data. What do you have in your database, and what do you want as output? -
Replied To a Post in introductioning my self
Welcome. -
Replied To a Post in Hi everyone, I'm Kenny!
Welcome. -
Replied To a Post in Validate an idea
It has to be one hell of a service for me to pay $100 per month. Although you idea might be valid, the price is hefty IMO. -
Replied To a Post in Hi everyone, I'm sammizabbi123
Welcome. -
Replied To a Post in curl download external file
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. -
Replied To a Post in Hi everyone, I'm cargotrends
Welcome. -
Replied To a Post in How do I add file copying functionality to my .csproj file?
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". -
Replied To a Post in Hi everyone, I'm geoguy09
Welcome. -
Replied To a Post in Bar code generation + inventory management.
https://barcode-labels.com/getting-started/barcodes/types/ I'd probably choose one of the last three 2D codes mentioned in the above link. -
Replied To a Post in Hi everyone, I am Prithula Tasnim
Welcome. -
Replied To a Post in Hi everyone, I'm jackdaniel12
Welcome. -
Endorsed dimitrilc
-
Endorsed dimitrilc
-
Replied To a Post in Introducción de mi
Welcome. -
Replied To a Post in PHP - API error [code: 422, message: "Validation failed."]
Shouldn't you be using quotes around your IP address, and around you entire JSON message? -
Replied To a Post in Clean all my settings VB.NET
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 -
Replied To a Post in In a C# solution, how do I add an .EXE project to a solution of DLL's?
Right-click the solution and add a new project, WPF since you think it is XAML. -
Replied To a Post in Hi everyone, I'm Oscar
Welcome. -
Created Books on certificates
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, … -
Replied To a Post in SharePoint authentication via console app C# Visual Studio
Are you looking for this perhaps? https://docs.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0 -
Replied To a Post in Hi everyone, I'm Ahmadbabajo
Welcome. -
Replied To a Post in Do you participate in any other communities?
Late, must've missed this. > Pritaeas, are you active on SO? Is it the high activity that keeps you there or are there other actionable things that work there that … -
Replied To a Post in UI changes across the board
I especially like the remove filter button at the top of the forum list. Overall, nice improvements :) -
Replied To a Post in Problem with working vb app not install on user pc
@Schol-R-LEA Indeed, that's what I was referring to. @RalphGarner Items 1 and 2 will do for now. -
Replied To a Post in Problem with working vb app not install on user pc
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. … -
Gave Reputation to Dani in jQuery differences between .data('key') and .attr('data-key')
I just racked my brain for the past hour trying to fix a bug, and learned something new in the process. I always thought that the jQuery function `.data('key')` was … -
Replied To a Post in Hi everyone, I'm AghaSherazi
Welcome -
Replied To a Post in Hi everyone how are you?
Welcome. -
Replied To a Post in Hi everyone, I'm julio77
Hello, and welcome. -
Replied To a Post in I have this error
Line 37 should be terminated with a semi-colon. -
Replied To a Post in Are we able to start coding without a computer?
Never came across anyone. -
Replied To a Post in sqldatareader reader = cmd.executereader() incorrect syntax near
string sql = "Select librarycardid, password" + "from library card information" + "where librarycardid = '" + librarycardid + "'" + "and password = '" + password + "' "; … -
Replied To a Post in small issue with INNER JOIN with php and mysql
Hey Si. You'll need to show some data from your tables and how it should combine, then we can fix the query. -
Replied To a Post in visual basic login system
On line 5 change `@user1` to `@pass1` -
Replied To a Post in Notice: A non well formed numeric value encountered in C:\wamp64
On what line above does the error occur? -
Replied To a Post in Hi Everyone, I'm Arvind
Welcome to DaniWeb. -
Replied To a Post in Hi everyone, I'm safost56
Welcome to DaniWeb. -
Gave Reputation to Reverend Jim in Image File Tagging App in Python/wxPython
**Requires:** 1. Python version 3.8 or newer 2. wxPython version 4.0 or newer 3. exif module 4. Windows with NTFS file system To ensure you have the required packages please … -
Replied To a Post in how to define a var = ???.text in vb.net
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? -
Replied To a Post in Get Net Income from Income and Expenditure Tables by Date
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. -
Replied To a Post in How to Build a responsive app with php
I suggest you look at Javascript to add to your skills. -
Replied To a Post in MySql and Wpf Forms
For one, `System.Windows.Forms.MessageBox` in WPF is `System.Windows.MessageBox`. Your event functions may be different too. -
Replied To a Post in How to search data in multiple table using mysql
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, … -
Replied To a Post in Fatal error: Uncaught PDOException: SQLSTATE[HY093]:
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.
The End.