354 Posted Topics
Re: In this scenario binary search will not do the job, simple go for linear search. Here is algorithm: [code] 1. take pattern as patternString. 2. take one string from string array as strToCompare 3. If patternString and strToCompare are matching then print strToCompare. 4. go for next string in array … | |
Re: Try [URL="http://en.wikipedia.org/wiki/Comet_(programming)"]Comet[/URL]. | |
Re: [QUOTE]In short I want to implement a feature used by gmail where one user can expire or log out all other users on different machines using same user id's.[/QUOTE] you can do this by having a table(say login_detail) in server with column: UserId, ClientSessionValue When ever user login, store unique … | |
Re: By PDF form, do you mean .pdf or some thing? are you creating them using HTML? [QUOTE]For example: If someone chooses an item from a list on the first page. I want their selection to show up in a field on the following pages so they don't have to keep … | |
Re: Hi, You don't need to master it, just try to know how it works, then you can go to silver light. As you face problem in silver light come back and know more. :) | |
Re: What exception it is throwing? How do you know its not working? | |
Re: It seems this method doesn't support ico file. I tried with .bmp files, its working fine. | |
Re: are you asking about how to send user name and password to server with security ? | |
Re: Based on what information you want to add child nodes? Can you explain more about why you want to do this, this will help us to provide better solution. | |
Re: You can go for image buttons, and represent a button by two images. First image will be for normal state of button and second image will be for push state. you can search more about it in google. Now regarding second problem: when you push a button just set the … | |
Re: Can you elaborate your question? Don't you want to use ASP or any server side language? you can go for PHP as server side language and MySQL as Database. | |
Re: [URL="http://www.google.com/search?hl=en&safe=active&client=firefox-a&channel=s&rls=org.mozilla:en-US:official&ei=VNF_SpjKF4vQsQPGtqTvCg&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=creating+screensaver+in+c%23&spell=1"]this[/URL] is how you can start. | |
Re: Its is security related problem. You need to give com permission to user who is trying to access your page. For this go to: 1. Control Panel->Administrative Tool -> Component Services. (click here, 'component services' window will open) 2. In component services window, in left side tree goto: Console Root … | |
Re: Try to avoid GOTO. Put main loop inside one more loop or try some other logic. Use of GOTO will create all the mess at last. | |
Re: Did you see [URL="http://www.google.com/search?hl=en&safe=active&client=firefox-a&channel=s&rls=org.mozilla%3Aen-US%3Aofficial&q=creating+non+rectangular+form+in+window&aq=f&oq=&aqi="]this[/URL] ? | |
Re: Please post your question. Please use English which every one can understand. What is vf? | |
Re: 1. Why you created two different threads for the same problem. @ moderators : please delete new one. 2. What you have done so far? i don't think any one will provide you source code here. | |
Re: Some suggestions: ============== 1. Use data grid for it. 2. First divide number. 3. Fill it in data grid. | |
Re: do this: 1. Fetch the data from data base. 2. Have a loop to fill the data in array. Post the code what ever you have done so far, for better help. | |
Re: Hi, I have following suggestions for your problem: 1. In private void dinle(), use finally block where close the socket and release other resources. 2. Whenever you are closing application there also dont just abort the thread but also release all resources like closing sockets etc. | |
Re: No body is here to spoon feed, so no body is going to provide you source code. First try it yourself, if you face any problem.....................every body is here to help you, ..............just post your problem. | |
Re: What you have done so far? Don't expect someone to do all work for you? First try yourself and if you face any problem, just post here. | |
Re: please also post the HTML code as in above code you have lot of divs | |
Re: on DataReceived event you can do timer.Start() or timer.Stop(), what ever you want. Did you asked this? | |
Re: if you have to create a file then you should not use: StreamWriter oFile = new StreamWriter(@"C:\Users\fjones\Documents\Visual Studio Projects\bin\Debug\output.txt"); instead use this: String file_name=@"c:\ab.txt"; using( FileStream fs = new FileStream(file_name, FileMode.OpenOrCreate, FileAccess.Write)) { //do something with open file } this will create a file if it doesn't exists and open … | |
Re: [URL="http://en.wikipedia.org/wiki/Windows_Presentation_Foundation"]wpf[/URL] [URL="http://en.wikipedia.org/wiki/Windows_Communication_Foundation"]wcf[/URL] [URL="http://en.wikipedia.org/wiki/Windows_Workflow_Foundation"]wwf[/URL] | |
Re: Its not a good idea to have source code sent via email. Please answer everything here in this community, let others also learn. :) |
The End.