-
Replied To a Post in Generate custom autonumber
Personally, I'd use three separate (number) columns for this, combined with an INSERT trigger. The value you want to show can be a calculated column, combining the three into your … -
Replied To a Post in RDLC reporting with parameters
Shouldn't you pass a value to your parameter? `Dim param_allocatedjobs As New ReportParameter("allocated_jobs", True)` -
Replied To a Post in Formatting web pages for various displays
> I don't care to learn javascript for this one simple thing. I just want to know if allowing for different displays is such a big deal. In most cases … -
Edited Answer to my 100% tools thread
Thanks everybody for the discussion So here's the thing. I was invited on an interview for a company to do there SEO and they gave me access to their SemRush … -
Gave Reputation to antwanlee in AI Code Assistants
I'd recommend you to go with ollama: https://ollama.com/ Its FOSS and easy to install: ``` curl -fsSL https://ollama.com/install.sh | sh ollama run dolphin-mixtral ``` Other than that I use chatgpt … -
Replied To a Post in AI Code Assistants
Well, I've just recently started using Codeium and I must say, it's a great help in simplifying/accelerating the repetitive tasks required within my/our code. -
Marked Solved Status for Hello all, again
It's been a while ;) Still very busy, but hoping to pop in on a regular basis. How's everyone been? -
Marked Solved Status for New message doesn't show
I archived all the messages in my message list (also yours Dani). Now, if I get a new message (from you) I get a popup stating I have a new … -
Marked Solved Status for Endorse members
I've found myself on the "Endorse Members" page:  -
Edited AI Code Assistants
Anyone here that wants to share if they use AI Code Assistants professionally, which one and why? I'm looking for experiences with backend .NET development in Visual Studio to be … -
Created AI Code Assistants
Anyone here that wants to share if they use AI Code Assistants professionally, which one and why? I'm looking for experiences with backend .NET development in Visual Studio to be … -
Gave Reputation to pyeri in minimal-mvc: Frugal PHP micro-framework with basic routing and templating
@pritaeas Most modern PHP frameworks like Slim make heavy use of OOP which introduces cruft and bloat. As you can see in that example itself, just for printing a simple … -
Replied To a Post in minimal-mvc: Frugal PHP micro-framework with basic routing and templating
Why would I choose this over a package like [Slim](https://www.slimframework.com/)? -
Replied To a Post in Why i am not able to edit in social bookmarking submission site?
Your question is very vague, can you rephrase or be more specific? -
Created Leaked Google documents?
https://www.theregister.com/2024/05/29/internal_google_search_documents/ Are these going to be useful? -
Marked Solved Status for Page is broken, showing deleted posts too
https://www.daniweb.com/articles/latest/unanswered -
Created Page is broken, showing deleted posts too
https://www.daniweb.com/articles/latest/unanswered -
Replied To a Post in Calling an object from another in PHP using construct
That causes an infinite loop as described by jkon. I'd go for a container class: ```php class Container { private $A; private $B; private $C; public function __construct($A, $B, $C) … -
Replied To a Post in APIs and SDKs in a PHP project
> I am also using PHP procedural programming and I noticed that these SDKs use OOP. > Can someone help me make my first API call using an SDK? Do … -
Replied To a Post in Calling an object from another in PHP using construct
Show some code of how you expect it to work. -
Replied To a Post in Hi everyone, I'm clarawilliams
Welcome. -
Replied To a Post in What's the most unexpected hobby or interest you have outside of coding?
> OK, you know what? I have a dog. I devote all my free time to her. Let's go with that. :) Pets are always fun. We have two dogs, … -
Replied To a Post in A Whirlwind Day: A Blend of Chaos and Joy
Welcome. -
Replied To a Post in Hi everyone, I'm Danish_17
Welcome. -
Replied To a Post in What's the most unexpected hobby or interest you have outside of coding?
Probably the most unexpected (for a die-hard old-fashioned technical programmer) would be Reiki. I feel like since I've been doing this, my master has introduced me into so many things … -
Replied To a Post in AirTM API: How to Build a Form?
https://docs.airtm.com/purchases-payins/create-purchase You can choose PHP in the dropdown above the sample code. That way you can see what your PHP should contain. -
Replied To a Post in Read file properties of video files in C++
> It's open source, meaning one could look into the code That's the way I learn... There is no real Windows API to read video info, as this info is … -
Replied To a Post in Read file properties of video files in C++
Here's a good place to start: https://mediaarea.net/en/MediaInfo -
Replied To a Post in Hi everyone, I'm michael senter!
Welcome. -
Replied To a Post in Things I hate about TV shows
> is there ever going to be a second season for Squid Game Yes, already announced, available soon. -
Replied To a Post in What are you watching on TV?
Doesn't the link I posted open? https://www.imdb.com/title/tt4922804/ This is the tagline on IMDB: "A post-apocalyptic thriller set in near-future Brazil, where a select few are allowed to join a privileged … -
Replied To a Post in What are you watching on TV?
I liked the concept, but some choices in the movie I remember I thought were strange. However, this is a while back, so please don't ask specifics. Resident Alien started … -
Replied To a Post in Lots of new members but no one posts
Spammers? Perhaps auto-deleted? -
Replied To a Post in AirTM API: How to Build a Form?
You cannot safely use a form to post directly to AirTM. Post to your own PHP script, which can then use curl to make the request, including headers. -
Replied To a Post in Hi everyone, I'm davidsaar
Welcome. -
Replied To a Post in DomContentLoaded vs jQuery Ready fn
> However, as a jQuery user, what is the difference between DOMContentLoaded and the jQuery ready fn? No difference really, although some sources state that the ready function might fire … -
Replied To a Post in What's up with XOAuth?
Correct, you can also use the MS Graph API to use SMTP, if you cannot get that lib of yours to work. E.g. https://github.com/microsoftgraph/msgraph-sdk-php -
Replied To a Post in Improve HAVING BY performance
Perhaps a smarter someone on this forum can help you look at the execution plan of your query and suggest some improvements. -
Replied To a Post in What's up with XOAuth?
I have not used this with PHP, but are you connecting to the Graph API or EWS? -
Replied To a Post in Hi everyone, I'm HYSTOU
Welcome. -
Replied To a Post in Please I need guidance
Yes, that's what this forum is for. -
Replied To a Post in Hi everyone, I'm Dragoș
Welcome. -
Replied To a Post in Hi everyone, I'm jessicaboland
Welcome. -
Replied To a Post in how convert cur images to image?
Not easy, but [here](https://github.com/thetrik/VbPng)'s a lot of information. Basically, it's an [ICO file](https://docs.fileformat.com/image/cur/). -
Replied To a Post in how converte C to VB6?
This might work too: shiftedValue = py And &HFC00& -
Replied To a Post in Extracting values from a regex match
Sidenote: If you want to learn, understand and experiment with regexes I can highly recommend RegexBuddy. -
Replied To a Post in Design vs. Coding
> I think that to be a good coder one must show some talent for design. And to be a good designer one must show some talent at code. I … -
Replied To a Post in Hello everyone, I am Michael Brown
Welcome. -
Replied To a Post in Problem with the external hard drive
I'd recommend to stop messing around and bring it to a specialized recovery shop, as rproffitt already mentioned. The more you tamper with it, the more chance you'll lose your … -
Replied To a Post in Hi everyone, I'm Khurshid-ahmad
Welcome.
The End.