Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

deostroll

@deostroll
About
Posts
124
Topics
60
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Damn c# { }'s
    D deostroll

    Maintain codebase in vb. There is nothing different between the two...except may be for productivity features enabled through use of the ide. There are probably other ide that give better productivity support. Try sharp develop for a change : [^]

    The Lounge csharp question career

  • Computer Science Majors, Your Degree May Not Be As Valuable As You Think
    D deostroll

    The main divide here is that people can't relate to what is taught in colleges with what's out there.... But the fundamental take away here is learning should never cease.

    The Insider News com

  • mobile version of search
    D deostroll

    Is there a mobile friendly version of cp article search?

    Site Bugs / Suggestions question announcement

  • how do you search within "my bookmarks"
    D deostroll

    Went to the search page, where we had a series of checkboxes and selected "My Bookmarks" checkbox with the intention of searching my own bookmarks, but I got results which are not in my bookmarks. And whenever I "un-check" the Everything checkbox, the page postbacks and the checkbox is checked again...I think this is probably a bug...

    Site Bugs / Suggestions algorithms help

  • How to find the last added bookmark in my bookmarks?
    D deostroll

    Need to know what is the best way I can revert back to an article I bookmarked yesterday. I don't seem to remember the article title.

    Site Bugs / Suggestions question tutorial

  • site similiar to codepad.org to execute java programs
    D deostroll

    hi, is there a site similar to http://codepad.org wherein I can type in my java code in some convenient way and view the output on submit...? Please share such sites if you know. Thanx in advance.

    The Lounge java question

  • how to validate a wmf image?
    D deostroll

    There is an image capturing device which outputs images in wmf. This image is directly stored in the db. These images are supposed to appear on web page (in IE). Only some of the images appear; others don't. When we investigated the problem we observed various things: a) Those problematic images don't appear visible on the web page, but they are still there! If you right click the image and try to save it on your hard disk from IE browser, you get a file. b) This file is viewable via desktop image viewers like Microsoft Picture Viewer. c) We can view this image if we convert the file into jpeg. The jpeg alternative seem viable, but its simply too much processing on the web server if we adpoted that approach. Its only that some of these images have this problem. We have millions of records of data with images. We figure only 10 % of images do have the issue. Is there a way to detect such problematic wmf files?

    C# help database sysadmin tutorial question

  • Linux IDEs for web development
    D deostroll

    Don't do anything professionally with linux. At home I use Bluefish editor, and at times Screem too. Hate the latter tho.

    The Lounge question learning csharp java html

  • online service similar to View Source Chart (firefox add-on)
    D deostroll

    hi is there an online service similar to this[^] firefox addon. In other words looking for something that visually organizes your html...thanx in advance.

    The Lounge html

  • Site diagram: what does cluster of pages mean?
    D deostroll

    Hi What is the best way to represent site navigation in a requirements document for developing a web application? Have looked at the following link: http://www.boxesandarrows.com/view/site_diagrams_mapping_an_information_space[^] There seems to be an icon for a representation for a cluster of pages. What does that mean - cluster of pages? How do you represent the following scenario? Your page is a single page but with many tabs which can fetch/post dynamic data, forms, etc.

    IT & Infrastructure question com business

  • design a database to store an expression tree [modified]
    D deostroll

    Hi, I need some help with the database design for storing an expression tree. It should basically store a whole expression. I'd want to query out data (in one or more result sets as necessary) so that I can finally evaluate it somehow in my front-end application. Just kind of need a table(s) structure to store and represent the relationship. The expressions I plan to store in the database will be mostly logical expressions. Meaning they'd evaluate to a true or false mostly. Here is a diagrammatic representation of what I want (as a result set(s)).

    modified on Thursday, March 4, 2010 8:31 AM

    Database database html com design data-structures

  • what programmer am I?
    D deostroll

    haven't worked with java. But given a program I'd somehow research and do it. In the interview I may not do all that well at answering questions; I probably won't have a squat idea about questions they'd be asking. But while programming I might have gone through those concepts without noticing it. I believe that there are programmers of this sort. What do you call one such programmer?

    The Lounge java question career

  • Leave application system design brain storming
    D deostroll

    Hi, Looking for sample workflows, class diagrams, scenarios, use cases, etc which depicts how a fictitious HR leave application would work. I am in some kind of brain-storming phase which is why I ask this...I didn't know where else to post

    The Lounge design

  • Need to create a video quickly - what tools to use?
    D deostroll

    wht do u need 2 get started with flash on a linux box?

    The Lounge linux tools question

  • Need to create a video quickly - what tools to use?
    D deostroll

    The scene opens with a heart; it expands slowly until it becomes huge. And then it bursts into many little hearts. From the center of this chaos, a video should zoom out. It shouldn't occupy the whole screen. This is a separate video; it will be merged with what I am creating. After this I am supposed to show some two or three quotes; I want to show some sliding or fading effects for each quote; one after another. Need to do this quickly. I usually work on an ubuntu machine. Hence looking for free tools that do this as first preference. Also tell me the tools I need if I'd have to work on windows...thanx in advance.

    The Lounge linux tools question

  • an outlook like twitter service
    D deostroll

    Is there any online twitter service which is free and has the feature of keeping track of whether you've read tweets on your timeline or not...?

    The Lounge question

  • MFC: calling a menu item from another menu item
    D deostroll

    Hey, I don't mean to call another dialog from another dialog. I just put a messagebox in one of my menu item's event handler. It is just to test if the code executes...which it apparently does not? k, on the topic on non-modal dialogs I don't understand the difference between the following 2 snippets:

    /* Snippet 1 */
    CMyDialog* dlg = new CMyDialog();
    dlg->Create(IDD_MY_DIALOG);
    dlg->ShowWindow(SW_SHOW);

    /* Snippet 2 */
    CMyDialog dlg = new CMyDialog();
    dlg.Create(IDD_MY_DIALOG);
    dlg.ShowWindow(SW_SHOW);

    Snippet 2 doesn't work! Why is that so?

    C / C++ / MFC c++

  • MFC: calling a menu item from another menu item
    D deostroll

    What if the dialog was non-modal? Wouldn't this be a valid scenario? Btw how do u do a modeless dialog box?

    C / C++ / MFC c++

  • MFC: calling a menu item from another menu item
    D deostroll

    suppose I had a modal dialog box. I click a button on it, I'd want to call the same routine (i.e. the Call Message Box click event) via SendMessage(). Is this not possible? I've rewritten and debugged my code...and found out that the values I am sending for wParam and lParam are wrong

      this->SendMessage(WM\_COMMAND,
    	HIWORD(ID\_APP\_CALL\_MESSAGEBOX),
    	LOWORD(ID\_APP\_CALL\_MESSAGEBOX));
    

    what are the correct values?

    C / C++ / MFC c++

  • MFC: calling a menu item from another menu item
    D deostroll

    I have two menu items under the File menu - Call My Dialog & Call MessageBox. Call MessageBox will invoke a message box. I am trying to do the same thing when the user hits Call My Dialog menu item.

    void CMainFrame::OnFileCallmessagebox()
    {
    // TODO: Add your command handler code here
    MessageBox(_T("hello world!!"), _T("Sample message box"));
    }

    void CMainFrame::OnFileCallmydialog()
    {

    /\*this->SendMessage(,
    	HIBYTE(ID\_APP\_CALL\_MESSAGEBOX),
    	LOBYTE(ID\_APP\_CALL\_MESSAGEBOX));\*/
    
    HWND hwnd = AfxGetMainWnd()->GetSafeHwnd();
    ::SendMessage(hwnd, WM\_COMMAND, 
    	HIBYTE(ID\_APP\_CALL\_MESSAGEBOX),
    	LOBYTE(ID\_APP\_CALL\_MESSAGEBOX));
    

    }

    Whatever I do I keep getting some failure assertion

    C / C++ / MFC c++
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups