354 Posted Topics
Re: do in this way: [code] ............... Object x; x = s.Pop(); ArrayList al=x as ArrayList ; if(al!=null) { al.Add("Something"); } ............... [/code] | |
Re: hi try this simple code it is working fine in both IE & FF: [code='html'] <html> <head> <title> simple count down</title> <script language='javascript'> var i=0; var tid=0; function ut() { i++; document.frmT.txtB.value=i; tid=setTimeout("ut()",1000); } </script> </head> <body> <form name='frmT'> count down start now : <input type=text name='txtB'/> </form> <script> ut(); … | |
Re: First, one should know the answer to reply here.Second if some body replies without having clear idea what he is dealing with, it would add confusion to the person who is asking question. | |
Re: there is a problem in following line: string FileList = Directory.GetFiles(DirPath).ToString(); it should be : String[] FileList=.............. | |
Re: can you post code what you have done so far? where is current file? | |
Re: Hi, Using standard .NET classes you can zip/unzip only one file. as explain [URL="http://riteshk.blogspot.com/2007/04/how-to-zipunzip-files-using-cnet.html#"]here[/URL]. You may like to look [URL="http://www.eggheadcafe.com/tutorials/aspnet/9ce6c242-c14c-4969-9251-af95e4cf320f/zip--unzip-folders-and-f.aspx"]here[/URL], for folder zip unzip(multiple file zip/unzip). | |
Re: Hi, Try to use Server.Transfer("http://a.b.com/1.wav") | |
Re: you can also use onload event of body tag, described as follows: [url]http://www.w3schools.com/jsref/jsref_onload.asp[/url] | |
Re: dont nest forms [QUOTE](i must do it this way)[/QUOTE] what actually you want to do ? | |
| |
Re: [QUOTE=sonam_01;527169]hi.... hey can u send me d soft copy of the seminar u gave on teleimmersion????? i m in 3rd year comp..i m giving seminar on it so needed some help...plz....[/QUOTE] ....send me too. hi u can choose topic like computer every where "imbutech" or RFID | |
Re: [QUOTE=Rashakil Fol;808340]Start by learning how ASP works.[/QUOTE] :) | |
Re: install framework 2.0, it will have backward compatibility, but vice verse is not going to work. | |
Re: form your query dynamically: ... where ResultDate =" +selected_date; here selected_date is date selected by the user in date time picker. one more thing before preparing the query dont forget to format the date, as it is stored in data base. | |
Re: you can also assign DataGridView's DataSource property any data source like dataTable it will take care of creating required column and filling data. Try out any of the solution given here in thread, and if any problem get back. If you will tell what so far you have done as … | |
Re: Create a method as RamyMahrous said then invoke it using any UI thread. You can do it by control.BeginInvoke(). | |
Re: return true or false from WPChk() based on success or failure, on the base of return value of WPChk() you decide whether you want to proceed further or not. ex: if(WPChk()) { //do this } else { //return; } | |
Re: use an image element insied the bigger cell: [QUOTE]<td id="large" width="222" rowspan="2"> <img id="img1" src=""/></td>[/QUOTE] then set [QUOTE] document.getElementById("img1").src=image_fiele_name;[/QUOTE] it will work | |
Re: i tried with Hindi letter its working: [code="C#"] class सुचना_दो { private String _नाम = "सुचना_दो"; public String अपनी_सुचना_दो() { String सुचना = "मेरा नाम "+_नाम+" है, मुझे फलक ने लिखा है !"; return सुचना; } }[/code] its working with it coz, it can deal with unicode characters. | |
| |
Re: what you have done so far? | |
Re: [URL="http://aspnet.4guysfromrolla.com/articles/051006-1.aspx"]This [/URL]may help you. | |
Re: according to your query above suggestion seems ok, but i think you wanted to ask " suggestion in dropdown box, as it is in google suggesion", isnt it? | |
Re: Hi, Use TreeView.AfterSelect event to fill the Grid, it gets fire when node has been selected. Here you can assign the data associated with selected node, to the GridView. | |
Re: use System.Diagnostics.Process.GetProcessesByName(processName); to get all the process with this name. After this use the process properties like, process.ModuleName etc. to get the required process, then kill the process by calling function process.kill(). | |
Re: do you want to create tool for this? if yes then try using regular expression. | |
Re: You can not refresh the div element alone. You can make the require change in div element, dynamically using JavaScript, which is like refreshing the div. | |
Re: write a small web server or chat engine. you can also write with very little capability. | |
Re: Hi, Can you be more specific? What exactly you want to do? Please also provide information that what you have done and where you are facing problem? If you are looking for internet programming in .net, [URL="http://www.catalyst.com/products/socketwrench/tutorials/tutorial1.html"]this[/URL] may help you? | |
Re: start with understanding [URL="http://en.wikipedia.org/wiki/Comet_(programming)"]comet[/URL]. let say user1 wants to chat with user2. now flow will be like this: 1. user1 will type message and send it - this you can do by simple http ajax request, send message to server using ajax. 2. now server will get message from user1 … | |
Re: try these links: [url]http://asm.sourceforge.net/[/url] [url]http://tldp.org/HOWTO/Assembly-HOWTO/[/url] | |
Re: is it question related to javascript? can you explain it more? | |
Re: following discussion may help you. [url]http://www.groupsrv.com/dotnet/about147910.html[/url] | |
Re: Hi, "SaveAs" has not been implemented in Mozilla, it will work in IE by interfacing via ActiveX. See the document.execCommand reference. [URL="https://developer.mozilla.org/en/Rich-Text_Editing_in_Mozilla#"]here[/URL] | |
Re: can u just give code so that i can understand what u want | |
Re: Hi, define a new array with function: arr3=new Array(no_of_element); then use for loop to populate member of both array in to it as u want. use arr_var[index] to access individual member of array. | |
Re: ^^Alex Edwards Nice Comparison :) ...one more GOD = Google Oriented Development. | |
Re: [QUOTE=shobha1335;682627][B][/B] <c:forEach items="${QantasClubRenewViewBean.membershipQuoteList}" var="membershipQuote" varStatus="status"> <html-el:hidden property="hIndex" value="$(status.index)"/> <html-el:radio property="renewPaymentSelected" onKeyUp="onTab(event)"/> Thanks inadvance....[/QUOTE] is it html code or some other language code. if possible please post html code for your radio button along with javaScript. [CODE]Please use code tag[/CODE] | |
Re: Hi, this is not the Right Place to post your question, please create a new thread in following forum, and post your question: [url]http://www.daniweb.com/forums/forum117.html[/url] | |
Hi, I want to create a DataBase Diagram using MS SQL Server Management Studio 2005. But on context menu of DataBase Diagrams Folder, I am not able to see New Database Diagram menu item for any of the Database. I am getting only two menu item "Working with Sql server … | |
Re: Hi, [code] FastCar fc = new FastCar(); Car c1 = fc; [/code] will be ok. but what you have done is opposite. you can assign pointer of object of child class to pointer variable of parent class but cant do opposite directly. Ex. Whole concept of Stream Zoo in this … | |
Re: Please elaborate your question. | |
Re: use java script. check tha size of output and accordingly adjust the element.Styel.Font property through javascript. | |
Re: use ajax to do that. -as user select Groupname it should send request to the server through ajax, -server will return values in the form of array or simply form all whole sub menu at server. -use this value to form submenu. | |
Re: use ajax. dont call web services directly using client side scripting, instead call a web page which in turn calls webservices and return the result. return result could be in xml format, which is standard. any way that depends on you requirement | |
Re: do you care about employees, or just want work from them? employee satisfaction is what every firm must take care of. i think you should arrange a meeting with them and ask what they expect from you? what kind of work environment they want? give them all and see the … | |
Microsoft want to acquire yahoo for $45 billion. MS's this step is considered as a step to control the webworld or to defeat Google. What's ur opinion ? Do you think yahoo should say yes or no? Do you think it will affect Google, how badly ? |
The End.