15,796,456 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Python questions
View PHP questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Member 8428760 (Top 30 by date)
Member 8428760
27-Oct-22 15:31pm
View
Someone needs to use their brain when considering what is spam or not.
Member 8428760
26-Oct-22 11:35am
View
Thank you Mike. I had the click function inside the method again. lol
Member 8428760
26-Oct-22 10:57am
View
I looked up extension and found one that said free trial. So at some point they have the right to sell it. Maybe they can tell you more. https://marketplace.visualstudio.com/items?itemName=WholeTomatoSoftware.VisualAssist
Member 8428760
12-Oct-22 23:59pm
View
Have you followed what it says for ASP here? https://owasp.org/www-community/controls/SecureCookieAttribute
Member 8428760
12-Oct-22 14:41pm
View
Thank you Richard. I have never used Grid Layout. I want my site to be mobile responsive, but not sure if I can do that with fixed width height on the boxes.
Member 8428760
12-Oct-22 10:00am
View
The first diagonal has a variable x. The other diagonal will be 4-x where 4 is the length of the line.
Member 8428760
12-Oct-22 9:50am
View
You should look up a tutorial CRUD (Create, Read, Update, Delete) for Visual Basic.
Member 8428760
11-Oct-22 23:36pm
View
I updated the code to show 4 boxes. I need them to align like they are, but also be inside the red div box. I will be adding another row of boxes as well, so this just a test to see how it is done. I tried what you suggested, but either all the boxes are on one line, or they are each on their own line.
Member 8428760
11-Oct-22 23:28pm
View
Print cleanerRemover and make sure it is not getting set to null.
Member 8428760
11-Oct-22 21:18pm
View
Try select TRIM(';' FROM convert(varchar, getdate(), 112)+convert(varchar, getdate(), 114))
Member 8428760
11-Oct-22 20:23pm
View
This is an annoying detail, but try print(word1 + " " + word2). There has to be a space between them.
Member 8428760
11-Oct-22 16:59pm
View
Can you take the same query and paste it into the rldc report designer?
Member 8428760
11-Oct-22 16:46pm
View
Deleted
What is the error?
Member 8428760
11-Oct-22 16:36pm
View
If there are no comments explaining it, then what I usually do is scan the query and find the tables that it uses. Then you can see what columns out of the tables they are pulling. The rest of the query will be filtering what data they pull and manipulating the data they get. The query types are select, insert, update, delete. Focus on the select type statements and the rest will be easy.
Member 8428760
11-Oct-22 13:20pm
View
That worked. Thank you so much!
Member 8428760
10-Oct-22 22:08pm
View
I guess it is because I had a link to code pen. If this site has the ability to run the code, then I'm not sure how to do it.
Member 8428760
10-Oct-22 20:23pm
View
Have you verified that this is getting set properly? $_SESSION['captcha']
Member 8428760
10-Oct-22 20:14pm
View
select a.sifra, b.nazif
from dbo a, vp_kalkulcija_roba b
where a.column = b.column
Member 8428760
10-Oct-22 20:13pm
View
Without being able to see the code, it is hard to know what is blocking it.
Member 8428760
10-Oct-22 19:39pm
View
Are you using an auto filler to populate the fields? Sometimes it doesn't pick up the data even thought it is in the boxes.
Member 8428760
10-Oct-22 19:21pm
View
https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/program-structure/
Member 8428760
10-Oct-22 19:10pm
View
In your loop, instead of > put >=
Member 8428760
10-Oct-22 19:04pm
View
In the form tag put an action="path to php file"
Member 8428760
10-Oct-22 18:52pm
View
frequency(data.next(),console.next()); data.next() has nothing at this point.
Member 8428760
10-Oct-22 17:39pm
View
The path might need to be escaped. like if it is c:\yada change it to c:\\yada
Member 8428760
10-Oct-22 16:57pm
View
select t.tag, max(t.price) from (select * from clothing_sales where tag = 123) t
Member 8428760
10-Oct-22 16:51pm
View
The append function is like push in other languages for an array. += used more for math and concatenation. So I think it is mostly convention.
Member 8428760
10-Oct-22 16:50pm
View
Have you tried pandas with dataframe? You might be able pull the lines in as a table column, then modify it and save it back out.
Member 8428760
10-Oct-22 16:43pm
View
In the partition by section did you mean to pull both effective from dates from er?
Member 8428760
10-Oct-22 16:32pm
View
try parseFloat(str).toFixed(4)
Show More