Hi EveryBody Is there any update regarding this issue..... Thanks and Regards, Atul Kumar
atulonweb hotmail com
Posts
-
Online Radio -
Online RadioOpen this URL www.radioteentaal.com/masala128.wax It will run live radio.Same thing to be done through C3 code.
-
Online RadioHi I mean to say FMRadio.exe kind of utility having different radio stations in drop down box and on selecting any,perhaps it calls .asx file or something like that behind the scene to run that radio. Thanks Atul Kumar
-
Online RadioHi EveryBody I am trying to make Online Radio untily in dot net.do anybody have any idea From where to start. I am Cliking with any idea. Thanks Atul Kumar
-
command line argumentsI think you are talking about console application in c# if u look at your main method static void Main(string[] args) { // // TODO: Add code to start application here // /// Added next line to print input on console Console.WriteLine(args[0]); } it accepts array of string, this is area where u can pass values e.g myapplication.exe parameter Atul kumar
-
Printing a Form -> Texbox is emty :(Hi To print window form you have to use window API This may help you http://www.knowdotnet.com/articles/printform.html[^] Atul Kumar
-
Default value selected in Combo Box after another form closes.Hi Bhoomi I think u want to change the index of combos of first form on closing of second form. If this is question then events and delegates are used int this scenario.... Atul Kumar
-
Default value selected in Combo Box after another form closes.Hi bhoomi I think you want to select values of combos on first form on the closing of second form.... is it??? Atul
-
Get text of textbox from any other websiteHere comes a curl.It is free available on net.you can use curl library for this purpose. cheers Atul
-
window serviceHi all Is it possible to call a public method of a window service from a window application... As in case of web service we can call webservice method explicitly, is it possible in case of window service... Actually i have to pass parameter to window service from a window application and service will process those parameters Thanx Atul Kumar
-
debugging stored procedureThanx a lot It helped me a lot.. One more thing Is it possible to debug stored procedure when debugging out code from visual studio like pressing F11 while debugging code and debugger can reach on stored procedure statement ..... Regards Atul
-
debugging stored procedureHi All I want to debug stored procedure from visual studio. I tried a lot but in vain.. Can anybody let me know how can i .... I have windows XP,sqlserver 2005 ,Dot net 2005 Atul Kumar
-
A Few Quick Questionshi 1. Partial - its a new kyeword introduced in c#2.0 and is use to write a class in distributed form E.G - look at the designer of your form it is Form1.designer and where u write code is partial class form1. similarly u can have no. of class u want with the same name like partial Form1 and write and these will be combined in a single class i.e Form1.. Realy a good feature..like Sometime when no.of developers need to work on same class and so others. 2. Refactoring - provided to help u need writting templetes in code. For C# there is inbuilt Refactoring in dot net and for VB.net need to install third party. one can provide own code snipette and use refactoring to use them Simple best way to make lazy programmer. 3. Delegate - this is a something that works between event source and event target. It handles the event. Atul kumar
-
how to access the data stored in one form's control into other form belonging to the same project in C#hi yes he is right. u would be able to access information of ur control as creating an object would create new instance of form1 i just told that declaring a control as public would make that control accessible in another form..But to pass value u need to use delegate to communicate between them. cheers.
-
how to access the data stored in one form's control into other form belonging to the same project in C#Declare control on form1 as public,these will be available on another form via object of form1 Atul kumar
-
Event issueThanx a LOT Josh It is working.
-
Event IssueHi If there is not any button control on winform then forms key press event is fires But if we place button control on winform then focus directly goes to button and keypress event of the form does not get fired.What can be the reason. It can be easily replicated by just writing any code in keypress event of windows form there should not be any control on the form then its keypress will be fired, now just place a button control u will see form's key pressed is not getting fired. It seems focus issue.Can anyone advice. Atul Kumar
-
Event issueHi If there is not any button control on winform then forms key press event is fires But if we place button control on winform then focus directly goes to button and keypress event of the form does not get fired.What can be the reason. It can be easily replicated by just writing any code in keypress event of windows form there should not be any control on the form then its keypress will be fired, now just place a button control u will see form's key pressed is not getting fired. It seems focus issue.Can anyone advice. Atul Kumar