15,746,302 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 codeprojectddx (Top 26 by date)
codeprojectddx
7-May-18 4:27am
View
I have install linux and use it native .but for some reasons , I still want to use windows and bochs to debug . Bochs is useful and convenient to debug in windows .
codeprojectddx
6-May-18 23:33pm
View
I am wandering elf enulator's work .Is it helpful to link and get an elf execute file ?
I am going to try the second approach
codeprojectddx
6-May-18 23:31pm
View
I am writing an os .so the underlying progras does not exist. How to emulates linux at the command level
codeprojectddx
6-May-18 10:49am
View
when you use treeView1.Nodes ,you are getting those root notes .In fact the second level and below notes are not in the treeView1.Nodes.
codeprojectddx
28-Apr-18 19:34pm
View
But I have not make a breakpoint when the os is running .
codeprojectddx
17-Jan-18 18:29pm
View
i am gonna debug net framework source code in vs ,so i need that the source code version is the same with dll.now the source code is 4.6.1 ,i need 4.6.1 dll such as mscorlib.dll to be loaded not 4.7.2.
apologise for my poor english
codeprojectddx
17-Jan-18 12:24pm
View
My god . Now i just want to unistall .net 4.7.2 ,and I have not installed this version .net framework. But it is there ,the os is win10.Why can not I unstall?
codeprojectddx
17-Jan-18 9:35am
View
now i have 4.7.1 source code,i want my app which targets .net 4.7.1 to run and load the same version assembly of 4.7.1 not 4.7.2 assembly
codeprojectddx
16-Jan-18 18:03pm
View
now i am looking for a way to uninstall version 4.7.2
codeprojectddx
16-Jan-18 11:43am
View
Thanks a lot .I doubt that i have never install .net framework 4.7.2 but when running the exe , it will load the 4.7.2version dll .Why?
PS:I really hope my application well be running under v4.6 or lower.
codeprojectddx
16-Jan-18 11:39am
View
Thank you . I wanted to debug .net 4.5.1 in vs. To keep source code and loaded dll match each other , I think load specified version dll is a good idea.
Now i have got the specified version dll ,the version is about file version . But I have no idea how to load it other than gac dll.
codeprojectddx
30-Aug-16 20:35pm
View
Yes,what I just want to know is the "dynamic menu mechanism".Thanks for your post.not long ago I did not know the phrase,now I know it is called "dynamic menu mechanism".
codeprojectddx
21-Sep-15 6:32am
View
HFONT MyCreateFont( void )
{
CHOOSEFONT cf;
LOGFONT lf;
HFONT hfont;
// Initialize members of the CHOOSEFONT structure.
cf.lStructSize = sizeof(CHOOSEFONT);
cf.hwndOwner = (HWND)NULL;
cf.hDC = (HDC)NULL;
cf.lpLogFont = &lf;
cf.iPointSize = 0;
cf.Flags = CF_SCREENFONTS;
cf.rgbColors = RGB(0,0,0);
cf.lCustData = 0L;
cf.lpfnHook = (LPCFHOOKPROC)NULL;
cf.lpTemplateName = (LPWSTR)NULL;
cf.hInstance = (HINSTANCE) NULL;
cf.lpszStyle = (LPWSTR)NULL;
cf.nFontType = SCREEN_FONTTYPE;
cf.nSizeMin = 0;
cf.nSizeMax = 0;
// Display the CHOOSEFONT common-dialog box.
ChooseFont(&cf);//select a font form the list ChooseFontDialog of MS's CommDlg
// Create a logical font based on the user's
// selection and return a handle identifying
// that font.
//cf.lpLogFont->lfOutPrecision=OUT_TT_ONLY_PRECIS;
int err = GetLastError();
cf.lpLogFont->lfHeight=15;
cf.lpLogFont->lfPitchAndFamily=2;//set not seam width
hfont = CreateFontIndirect(cf.lpLogFont);
err = GetLastError();
if(err>0)
{
MessageBox(NULL,L"Failed",L"wrong",MB_OK);
}
return (hfont);
}
codeprojectddx
8-Sep-15 8:41am
View
As I know ,as to every interrupt,a handler is here. So I want to find the handler of the interrupt that The timer can trigger,and I want to stop the context switch.If the context switch is over,I can trace a system call into the end.
codeprojectddx
7-Sep-15 10:20am
View
Thank you very much!Now I am looking for the handler in windows os, some suggestion?
codeprojectddx
6-Sep-15 1:34am
View
is the timer hardware not exist?"Timer interrupts are triggered in all cases"means that when the cpu is executing every instruction,the interrupt can happen?
codeprojectddx
5-Sep-15 21:05pm
View
thanks for your answer.i have read the intel manual and some other books about os,and i find that every time a context switch happens,a timer is triggered,and the handler begin handling the trap,the questions is where the handler is.i cannot find it as i find int3 trap handler.
codeprojectddx
1-Dec-14 22:24pm
View
thank you for your post ,I have seen the link you provided.
codeprojectddx
21-Oct-14 19:05pm
View
yes ,i really changed the mapping mode.Now I modify the mapping mode MM_TEXT,when I maxizime the window I find the rect.width is 1366 and the rect.height is 686. Thank you for your answer.
codeprojectddx
9-Sep-14 2:33am
View
My goals is that I want to capture the point where the mouse is,whenever the mouse moves,the point changes and I want show the coordinates on the cursor.I know that,the cursor is really a bitmap,as a result I operate the bitmap and create and destroy the bitmap when the mouse moves. But I donot have a better idea.
codeprojectddx
4-Jun-14 10:20am
View
thank you ,then How to use the function ExtCreateRgn,second element of the struct RGADATA ,char [1] that I do not understand what it means .
codeprojectddx
21-May-14 20:33pm
View
no
codeprojectddx
11-May-14 8:36am
View
It is in single click .It will occur when I click on any special control.
codeprojectddx
8-May-14 5:30am
View
I have told it again ,see it again please,thank you
codeprojectddx
7-May-14 20:41pm
View
thank you
codeprojectddx
7-May-14 10:20am
View
Enter the mouse hook proc two times.the codes below:
Show More