15,743,429 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 Javascript questions
View C++ questions
View Python questions
View Java 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 C
hris
L
osinger
(Top 19 by date)
C
hris
L
osinger
16-May-21 10:34am
View
'Griff, Original'
And clearly this is a homework assignment to test knowledge of regex escapes, not an actual first name tester.
C
hris
L
osinger
7-Jan-21 17:24pm
View
Yes.
C
hris
L
osinger
25-Oct-17 13:27pm
View
What you've posted here won't even compile.
C
hris
L
osinger
12-Jul-12 16:34pm
View
does the chromium framework provide you with access to the DOM of the contained web page? if so, is there a 'submit' function for button elements?
http://magpcss.org/ceforum/viewtopic.php?f=6&t=240&start=0
C
hris
L
osinger
15-Jun-12 11:10am
View
you should do your own homework
C
hris
L
osinger
13-Jun-12 16:12pm
View
seriously?
C
hris
L
osinger
27-Apr-12 9:30am
View
go to Project / Settings / C|C++ . do you you have anything in the "Preprocessor definitions" field?
C
hris
L
osinger
27-Apr-12 9:08am
View
what preprocessor symbols are you defining when you build zlib, and which are you defining when you build your project?
C
hris
L
osinger
27-Apr-12 7:28am
View
you can't delete anything from the external dependencies folder. that folder is just to show you the files that have been included based on your #include statements and the include paths you've defined.
C
hris
L
osinger
26-Apr-12 11:05am
View
can you show me the link that you downloaded?
C
hris
L
osinger
26-Apr-12 10:47am
View
the zlib calls are inflate, inflateInit, inflateEnd.
if commenting those out eliminates the crash, then the problem is probably that the zlib functions are not being exported from the DLL with the calling convention that your application expects.
what did you do to get zlib to compile as a DLL?
C
hris
L
osinger
26-Apr-12 10:26am
View
can you try commenting-out just the calls to zlib ?
C
hris
L
osinger
26-Apr-12 10:06am
View
did you build the copy of zlib.dll that you are using?
C
hris
L
osinger
26-Apr-12 10:02am
View
are you using any other (non-MS) external libraries ? (statically linked)
C
hris
L
osinger
26-Apr-12 9:40am
View
when you #include "zlib.h", are you doing this:
#ifdef __cplusplus
extern "C" {
#endif
#include "zlib.h"
#ifdef __cplusplus
}
#endif
?
C
hris
L
osinger
26-Apr-12 9:38am
View
i'm assuming you're using pngLib to create your PNG file. so, you would do the png_write_chunk wherever you are doing all the other libPng stuff.
C
hris
L
osinger
26-Apr-12 9:29am
View
how are you #including the zLib header?
C
hris
L
osinger
26-Apr-12 7:38am
View
you can use a tool like pngsplit to insert a custom chunk into an existing image. to add a new chunk to an image while you're writing it, use png_write_chunk (after png_write_info, IIRC).
C
hris
L
osinger
12-Apr-12 14:12pm
View
"Module" is not an English verb. You can't "module" anything.
you can modulate a number: x = x % 1007;
Show More