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 : [^]
deostroll
Posts
-
Damn c# { }'s -
Computer Science Majors, Your Degree May Not Be As Valuable As You ThinkThe 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.
-
mobile version of searchIs there a mobile friendly version of cp article search?
-
how do you search within "my bookmarks"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...
-
How to find the last added bookmark in my bookmarks?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 similiar to codepad.org to execute java programshi, 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.
-
how to validate a wmf image?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?
-
Linux IDEs for web developmentDon't do anything professionally with linux. At home I use Bluefish editor, and at times Screem too. Hate the latter tho.
-
online service similar to View Source Chart (firefox add-on) -
Site diagram: what does cluster of pages mean?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.
-
design a database to store an expression tree [modified]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
-
what programmer am I?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?
-
Leave application system design brain stormingHi, 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
-
Need to create a video quickly - what tools to use?wht do u need 2 get started with flash on a linux box?
-
Need to create a video quickly - what tools to use?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.
-
an outlook like twitter serviceIs 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...?
-
MFC: calling a menu item from another menu itemHey, 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?
-
MFC: calling a menu item from another menu itemWhat if the dialog was non-modal? Wouldn't this be a valid scenario? Btw how do u do a modeless dialog box?
-
MFC: calling a menu item from another menu itemsuppose 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?
-
MFC: calling a menu item from another menu itemI 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