15,666,286 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 Python questions
View Javascript questions
View C++ 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 Udesh-Ranjan (Top 16 by date)
Udesh-Ranjan
5-May-21 19:26pm
View
thanks Richard its difficult to understand with mathematical perspective.
Udesh-Ranjan
3-Jan-21 21:11pm
View
thanks @Afzzal Ahmad Zeeshan
Udesh-Ranjan
3-Jan-21 2:04am
View
@Afzaal Ahmad Zeeshan if we use ip address which will change It will cause problem and making it static is as well can we use something else through which we can send string from one system to another.
Udesh-Ranjan
2-Jan-21 21:16pm
View
@Afzaal Ahmad Zeeshan thanks for the such a detailed and helpful
explanation.
Udesh-Ranjan
23-Dec-20 0:38am
View
@Shao Voon Wong thanks for helping {:)I am trying to find what mistake I am doing.
Udesh-Ranjan
23-Dec-20 0:37am
View
@Richard MacCutchan thanks, am trying to find where I am doing mistake.
Udesh-Ranjan
22-Dec-20 20:10pm
View
I have included this header file
Udesh-Ranjan
22-Dec-20 10:38am
View
I have include the above classes and functional headerfile as well
Udesh-Ranjan
22-Dec-20 10:33am
View
They are abstract classes.
Udesh-Ranjan
20-Dec-20 20:36pm
View
@Richard MacCutchan thanks I got it
Udesh-Ranjan
20-Dec-20 20:35pm
View
Will use debugger from here on thanks
Udesh-Ranjan
17-Dec-20 4:40am
View
@OriginalGiff thanks a lot
Udesh-Ranjan
17-Dec-20 4:00am
View
@Richard thanks I will try to debug now but it runs successfully and also inserts into table
Udesh-Ranjan
17-Dec-20 3:52am
View
@Richard Deeming
Entering insertIntoTable
# ERR: SQLException in DBManager.cpp
# ERR:
(MySQL error code: 0
, SQLState: 00000 )
Exiting insertIntoTable
this is the error msg which I have got cant tell exactly where's the issue.
Udesh-Ranjan
5-Mar-20 10:52am
View
@OriginalGriff thanks for your suggestion.
I tried it now but it didn't work for me.
Can u sent me the code?
Thanks in advance ;)
Udesh-Ranjan
5-Mar-20 10:24am
View
@Kris thanks for helping me out
public void keyPressed(KeyEvent e) {
if(e.getKeyCode()==KeyEvent.VK_LEFT){
flag=true;
repaint();//Now flag is true so paint method will create a square of same size
//and also with same background color so the image will be erased.
x--;//Now the position of cube is changed
flag=false;
repaint();//flag is false so paint method will draw the cube in new position
}
if(e.getKeyCode()==KeyEvent.VK_RIGHT){
flag=true;
repaint();
x++;
flag=false;
repaint();
}
}
Show More