Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [MFC]no subclass, no derivation, just redirect one function of CButton, is it possible? Pin
«_Superman_»3-Mar-14 17:12
professional«_Superman_»3-Mar-14 17:12 
QuestionGood way to optimize or replace a nested for loop? Pin
NilssonCreative2-Mar-14 14:37
professionalNilssonCreative2-Mar-14 14:37 
AnswerRe: Good way to optimize or replace a nested for loop? Pin
«_Superman_»2-Mar-14 15:48
professional«_Superman_»2-Mar-14 15:48 
GeneralRe: Good way to optimize or replace a nested for loop? Pin
NilssonCreative3-Mar-14 6:20
professionalNilssonCreative3-Mar-14 6:20 
GeneralRe: Good way to optimize or replace a nested for loop? Pin
«_Superman_»3-Mar-14 14:53
professional«_Superman_»3-Mar-14 14:53 
GeneralRe: Good way to optimize or replace a nested for loop? Pin
NilssonCreative3-Mar-14 16:07
professionalNilssonCreative3-Mar-14 16:07 
QuestionAdding new GUID to uuids.h and the new library won't link Pin
Vaclav_1-Mar-14 7:48
Vaclav_1-Mar-14 7:48 
AnswerRe: Adding new GUID to uuids.h and the new library won't link Pin
«_Superman_»1-Mar-14 20:46
professional«_Superman_»1-Mar-14 20:46 
GeneralRe: Adding new GUID to uuids.h and the new library won't link SOLVED Pin
Vaclav_2-Mar-14 5:37
Vaclav_2-Mar-14 5:37 
GeneralRe: Adding new GUID to uuids.h and the new library won't link SOLVED Pin
Vaclav_2-Mar-14 7:11
Vaclav_2-Mar-14 7:11 
JokeRe: Adding new GUID to uuids.h and the new library won't link SOLVED Pin
«_Superman_»2-Mar-14 15:43
professional«_Superman_»2-Mar-14 15:43 
QuestionCircular buffer for file Pin
Dansveen28-Feb-14 10:36
Dansveen28-Feb-14 10:36 
AnswerRe: Circular buffer for file Pin
CPallini28-Feb-14 12:44
mveCPallini28-Feb-14 12:44 
QuestionMFC App & Physical Memory Pin
Don Guy28-Feb-14 9:41
Don Guy28-Feb-14 9:41 
AnswerRe: MFC App & Physical Memory Pin
Richard Andrew x6428-Feb-14 10:28
professionalRichard Andrew x6428-Feb-14 10:28 
GeneralRe: MFC App & Physical Memory Pin
Don Guy28-Feb-14 10:57
Don Guy28-Feb-14 10:57 
AnswerRe: MFC App & Physical Memory Pin
Richard Andrew x6428-Feb-14 11:02
professionalRichard Andrew x6428-Feb-14 11:02 
AnswerRe: MFC App & Physical Memory Pin
David Crow1-Mar-14 6:05
David Crow1-Mar-14 6:05 
QuestionProgram Involving Many changing strings, library’s, and or databases and files? Pin
Craig McRae28-Feb-14 8:01
Craig McRae28-Feb-14 8:01 
AnswerRe: Program Involving Many changing strings, library’s, and or databases and files? Pin
Garth J Lancaster28-Feb-14 11:47
professionalGarth J Lancaster28-Feb-14 11:47 
I'd break it down into units/chunks of work, each unit/chunk exploring one small aspect

your first one may be to be able to use a html query to a website like http://dictionary-api.cambridge.org/index.php/help/resources#c#[^] to get a definition for a word and display it - could be console or forms based

Once you know how the data comes back, you then have to be able to parse/render it into a form you can use for matching - and possibly store it in memory

btw, I showed the c# api for that dictionary - 'better programming language' ? I don't know - there's this big thing about abstraction and using the right language/tool for the job - sometimes like this dictionary api, you may not find an api for your language - that doesn't stop you from having a mixed component approach - I think c# would also be ok for this project - it'll just take you longer to do 'this bit' in c++ since they don't supply an api - so you'd have to model the java or Objective-C one.

So, I'd start in an 'agile' frame of mind, small steps, refined, combined - I don't think the big issue here is getting the dictionary definitions, its the matching - so you may need to think about storing dictionary results in memory or some other appropriate form so you can develop an algorithm for matching and/or retrieving more dictionary entries - and also 'backtracking' if you come to a dead end
GeneralRe: Program Involving Many changing strings, library’s, and or databases and files? Pin
Craig McRae2-Mar-14 16:20
Craig McRae2-Mar-14 16:20 
GeneralRe: Program Involving Many changing strings, library’s, and or databases and files? Pin
Garth J Lancaster2-Mar-14 19:58
professionalGarth J Lancaster2-Mar-14 19:58 
GeneralRe: Program Involving Many changing strings, library’s, and or databases and files? Pin
Craig McRae4-Mar-14 8:24
Craig McRae4-Mar-14 8:24 
GeneralRe: Program Involving Many changing strings, library’s, and or databases and files? Pin
Craig McRae2-Mar-14 16:22
Craig McRae2-Mar-14 16:22 
AnswerReply 2 Pin
Garth J Lancaster28-Feb-14 11:55
professionalGarth J Lancaster28-Feb-14 11:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.