Its simple, read data in all the table and generate xml file...
M Aamir Maniar aamirOnline.com
Its simple, read data in all the table and generate xml file...
M Aamir Maniar aamirOnline.com
Compare ActualStartDate with DateTime.MinValue. if its same treat as null or empty...
M Aamir Maniar aamirOnline.com
Simple way to do is, create two classes one base class another derived class. In base class property set browsable attribute to true and in derived class property set browsable attribute to false... Interchange object from baseclass to derived class. Thats it...
M Aamir Maniar aamirOnline.com
You are using Window based Timer. User System.Threading.Timer instead...
M Aamir Maniar aamirOnline.com
:) New verion of Generics.Net is coming next week. That will solve your problem...
M Aamir Maniar aamirOnline.com
I have not seen those mentioned by you, but you can achive what you are expacting by encrypting, encoding or moving files to Isolated Storage.... There are many ways to do it...
M Aamir Maniar aamirOnline.com
Even though its possible, its not simple... Why dont you u use datagrid? Its easy to do that with datagrid....
M Aamir Maniar aamirOnline.com
Try this out!!! . . . FileStream fs = new FileStream("str.xml", FileMode.Open); XmlTextReader reader = new XmlTextReader(fs); XmlSerializer sr2 = new XmlSerializer(typeof(MyClass)); MyClass mycls2 = (MyClass)sr2.Deserialize(reader); . . .
M Aamir Maniar aamirOnline.com
Yup, and you can also use application as library...
M Aamir Maniar aamirOnline.com
You will fild lots of projects at codeproject.com, sourceforge.net, codeplex.com... Check them out :cool:
M Aamir Maniar aamirOnline.com
Nope... Thats not required. Cheers :)
M Aamir Maniar aamirOnline.com
You can avoid flickers but playing with flags...
M Aamir Maniar aamirOnline.com
There are some open source text editors available. You can start by looking their code. For example - SharpEdit : http://sourceforge.net/projects/sharpedit/[^] - Fireball Code Editor : http://www.codeproject.com/useritems/fireballcodeeditor.asp[^]
M Aamir Maniar aamirOnline.com
What does this mean?
M Aamir Maniar aamirOnline.com
Two things... 1 - You are not dwawing on a PictureBox and 2 - You are trying to fetch drawn image from the PictureBox where painting has not taken place... Cheers ;)
M Aamir Maniar aamirOnline.com
On the safer side i would suggest to take latest from VSS and recover your web.config. However i would recommand you to grasp thorough understanding of Web.config. It is must if you are into web delopment with asp.net. Internet is the perfact repository for finding information. At the moment i would just say that Web.Config is an organized configuration file which manages your settings and configration on differenct area of web site development. Following list tells you about different section of configuration file. - AppSettings : Handles custom settings in the form of name and value pair. - SessionState: Session related settings. - ConnectionStrings: An organized place for putting connection strings. - CustomErrors: Centralized error manangement settings. - Trace: Centralized location for application tracing. - Providers: Different provider related settings like MembershipProvider, RolesProvider etc.... - Configuration and ConfigurationSection : Allow creating custom application specific settings.... - Etc... One more thing ============== If you install .Net 2.0, IIS gives you a UI for editing web.config file. Hope this much information if okay for you to get started with the Web.Config
M Aamir Maniar aamirOnline.com
Well what's the problem then. Go ahead, create a dynamic file in you web application directory and use it.:sigh:
M Aamir Maniar aamirOnline.com
This is juat a hint that yahoo messenger uses InternetExplorer control for displaying messages... You need to get control of the underlaying IE if you need to trap yahoo messages... :)
M Aamir Maniar aamirOnline.com
I would suggest you to use DateTime because it will be more convanient...
M Aamir Maniar aamirOnline.com
I dont know why do you have such requirement. However I can say that its difficult but not impossible. You will need to create another type at runtime using reflaction emit, from the object you wish to bind to property grid. This type will have only those properties which you want to bind to the grid. Once type is created, assign populated object of newly created type to the grid... Hope this piece of information will be useful to you.
M Aamir Maniar aamirOnline.com