354 Posted Topics

Member Avatar for tdeck

do in this way: [code] ............... Object x; x = s.Pop(); ArrayList al=x as ArrayList ; if(al!=null) { al.Add("Something"); } ............... [/code]

Member Avatar for tdeck
0
151
Member Avatar for aparnesh

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(); …

Member Avatar for Nine of Hearts
0
518
Member Avatar for dnanetwork

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.

Member Avatar for DangerDev
0
140
Member Avatar for laghaterohan

there is a problem in following line: string FileList = Directory.GetFiles(DirPath).ToString(); it should be : String[] FileList=..............

Member Avatar for laghaterohan
0
147
Member Avatar for yash777
Member Avatar for sknake
0
155
Member Avatar for laghaterohan

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).

Member Avatar for dnanetwork
0
293
Member Avatar for danielc
Member Avatar for Dum_
Member Avatar for sknake
0
66
Member Avatar for VinayRok

you can also use onload event of body tag, described as follows: [url]http://www.w3schools.com/jsref/jsref_onload.asp[/url]

Member Avatar for almostbob
0
276
Member Avatar for vedmack
Member Avatar for rizrash
Member Avatar for husein

[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

Member Avatar for ahihihi...
0
320
Member Avatar for sonia sardana
Member Avatar for DangerDev
0
140
Member Avatar for cljlxwater

install framework 2.0, it will have backward compatibility, but vice verse is not going to work.

Member Avatar for cljlxwater
0
94
Member Avatar for Eager_Beever

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.

Member Avatar for DangerDev
0
128
Member Avatar for Abhishek_Boga

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 …

Member Avatar for skc23
0
3K
Member Avatar for Jack Wetson

Create a method as RamyMahrous said then invoke it using any UI thread. You can do it by control.BeginInvoke().

Member Avatar for Jack Wetson
0
168
Member Avatar for jmumby

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; }

Member Avatar for jmumby
0
137
Member Avatar for ghaith
Member Avatar for deepsha
Member Avatar for Robdale
0
19
Member Avatar for veledrom

use an image element insied the bigger cell: [QUOTE]<td id="large" width="222" rowspan="2">&nbsp;<img id="img1" src=""/></td>[/QUOTE] then set [QUOTE] document.getElementById("img1").src=image_fiele_name;[/QUOTE] it will work

Member Avatar for veledrom
0
82
Member Avatar for Celdecea

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.

Member Avatar for DangerDev
0
215
Member Avatar for lerkei
Member Avatar for anandknd
Member Avatar for omgdork

[URL="http://aspnet.4guysfromrolla.com/articles/051006-1.aspx"]This [/URL]may help you.

Member Avatar for omgdork
0
107
Member Avatar for millsy007

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?

Member Avatar for DangerDev
0
95
Member Avatar for karthi_selva

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.

Member Avatar for Ramy Mahrous
0
388
Member Avatar for karthiknv

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().

Member Avatar for SCBWV
0
277
Member Avatar for k88joshi

do you want to create tool for this? if yes then try using regular expression.

Member Avatar for k88joshi
0
363
Member Avatar for mzd12111

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.

Member Avatar for Luckychap
0
123
Member Avatar for ishaanarora

write a small web server or chat engine. you can also write with very little capability.

Member Avatar for Freaky_Chris
0
120
Member Avatar for san_gwapo19

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?

Member Avatar for DangerDev
0
63
Member Avatar for sonakrish
Re: chat

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 …

Member Avatar for sonakrish
0
106
Member Avatar for sureronald

try these links: [url]http://asm.sourceforge.net/[/url] [url]http://tldp.org/HOWTO/Assembly-HOWTO/[/url]

Member Avatar for DangerDev
0
72
Member Avatar for muek
Member Avatar for DangerDev
0
87
Member Avatar for ssreevidya.m

following discussion may help you. [url]http://www.groupsrv.com/dotnet/about147910.html[/url]

Member Avatar for DangerDev
0
60
Member Avatar for ruchi18

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]

Member Avatar for DangerDev
0
77
Member Avatar for kavithakesav
Member Avatar for MidiMagic
0
194
Member Avatar for jobojo

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.

Member Avatar for jobojo
0
1K
Member Avatar for Alex Edwards

^^Alex Edwards Nice Comparison :) ...one more GOD = Google Oriented Development.

Member Avatar for sneekula
0
185
Member Avatar for shobha1335

[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]

Member Avatar for essential
0
1K
Member Avatar for waaliban

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]

Member Avatar for DangerDev
0
86
Member Avatar for DangerDev

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 …

Member Avatar for DangerDev
0
196
Member Avatar for khbummy

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 …

Member Avatar for khbummy
0
133
Member Avatar for Hannahlv
Member Avatar for carobee

use java script. check tha size of output and accordingly adjust the element.Styel.Font property through javascript.

Member Avatar for Troy III
0
152
Member Avatar for mortalex

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.

Member Avatar for samarinder
0
141
Member Avatar for bhavna_816

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

Member Avatar for hp900
0
77
Member Avatar for dss

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 …

Member Avatar for dadang_sulistiy
0
155
Member Avatar for DangerDev

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 ?

Member Avatar for sneekula
0
582

The End.