16,020,162 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 Visual Basic questions
View Javascript questions
View .NET 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 14649324 (Top 13 by date)
Member 14649324
19-Oct-21 12:28pm
View
@Richard Deeming Thank you so much it work perfect
Member 14649324
18-Oct-21 15:20pm
View
I have a table that contain two columns one columns have for example fruits like Apple Orange Manago and one columns contain vegtables Carrot Tomato,Onion now want combine these two columns values and show as drop downn list in combobox like
Mango
Orange
Tomato
Onion
Member 14649324
25-Jun-21 3:27am
View
Thank you so much got an idea
Member 14649324
25-Jun-21 3:06am
View
i have a window form that take the doner name Age adress and save them in the database. then i retrive them in datagridview for updating with an update button. the record is saved with date. so when i want to update his name age and date again it can not update his records untill three months because for a doner can not give blood again in three months
Member 14649324
17-Dec-20 4:11am
View
i try this but its not working can you edit the code for me plz and make the full code for me the one i provided about it will be a great help
Member 14649324
17-Dec-20 3:09am
View
@Sandeep Mewara I tried this but its not working because when i draw the line with mouse events then angle is not finding
Member 14649324
13-Nov-20 2:55am
View
@Griff But this query is also not working syntax error is it complete
Member 14649324
31-Aug-20 10:55am
View
Thank You so I will try this
Member 14649324
31-Aug-20 7:06am
View
Sql database
Member 14649324
30-Aug-20 15:39pm
View
can you help me plz how i can implement this in the sql can you help me with the query or what ever the requirements
Member 14649324
30-Aug-20 15:07pm
View
how you do this in vb.net plz can you tell mee i am a new to vb.net
Member 14649324
8-Nov-19 14:02pm
View
Deleted
public void loadImage() {
try {
File OrignalImage = new File("c:\\images\\2.jpg");
img = ImageIO.read(OrignalImage);
} catch (Exception e) {
}
}
public void createBufferedImages() {
bufferedimageSrc = new BufferedImage(img.getWidth(this),img.getHeight(this),BufferedImage.TYPE_INT_RGB);
bufferedimg = bufferedimageSrc.createGraphics();
bufferedimg.drawImage(img, 0, 0, this);
bufferedimageDest = new BufferedImage(bufferedimageSrc.getWidth(this),bufferedimageSrc.getHeight(this),BufferedImage.TYPE_INT_RGB);
bufferedimage = bufferedimageSrc;
}
if(gray) {
Imgproc.cvtColor(src, dst, Imgproc.COLOR_RGB2GRAY);
public void update(Graphics g) {
g.clearRect(0, 0, getWidth(), getHeight());
paintComponent(g);
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2D = (Graphics2D) g;
g2D.drawImage(bufferedimage , 0, 0, this);
}
}
}
when i clcik the greyimage button its not working
Member 14649324
8-Nov-19 12:54pm
View
The image is loaded to the ghraphics2d but dont know about the processed image like want to to canny edge so how i can do that to load the edged image to the graphics to show
Show More