Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

emacs - how to write a locate-function for ede -


i use emacs c++ ide. have cedet , ede configured , working nicely, have minor problem.

in project header files spread on project tree, need write function ede find headers. have been looking example time, have not found anything. kind me?

thanks in advance.

here's example "quick find file" in project using ede , ido:

 (defun de-ido-find-files-in-project ()   (interactive)   (let ((allfiles nil)  choice)     (ede-map-all-subprojects      ede-object-root-project      (lambda (p)        (let ((targets (oref p targets)))   (dolist (target targets)     (setq allfiles (append allfiles (oref target source)))))))     (setq choice    (ido-completing-read     (format "file in project %s: " (oref ede-object-root-project name))     allfiles nil t))     (when choice       (ede-find-file choice)))) 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -