DangerDev 107 Posting Pro in Training

Actually you are looking something like storing user preferences, see this article:
http://msdn.microsoft.com/en-us/magazine/cc163949.aspx

RoyMicro commented: helpful +1
DangerDev 107 Posting Pro in Training

the way you are using clearInterval is not correct.
its should be something like this:

var t;
//to start
t=setTimeout("someFunction()",1000);
//to stop
clearTimeout(t);

for more information in this, just see:
http://www.w3schools.com/js/js_timing.asp

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

Don't look for code here. Spoonfeeding is strictly avoided here. Let us know what you have done so far.

DangerDev 107 Posting Pro in Training

In this scenario binary search will not do the job, simple go for linear search. Here is algorithm:

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 and go to step 2.
DangerDev 107 Posting Pro in Training

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.

you can do this by having a table(say login_detail) in server with column:
UserId, ClientSessionValue

When ever user login, store unique cookie(ClientSessionValue) in browser as well as in login_detail table. so if user is going to login from 3 machine, store his id 3 times against the 3 different ClientSessionValue in data base table.

So when ever user want to logout from a machine, delete one row from login_detail of corresponding ClientSessionValue.

When ever any request will come from client it will come with ClientSessionValue cookie. so if this value is not present against that user means, that user is logged out of that machine.

Now, if user want to expire or log out all other login from different machines, just delete all rows except one row from where delete request has come.

DangerDev 107 Posting Pro in Training

By PDF form, do you mean .pdf or some thing? are you creating them using HTML?

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

when you will go to second form, values of fields of first form will be submitted at server, then you can fill these values in the appropriate fields in second form.

DangerDev 107 Posting Pro in Training

Do you think this "comet programming" is what helped created Project APE? http://www.ape-project.org/

Yes, it seems they have created a nice API, you should explore this also.

Basically exactly what I am trying to achieve; to be able to have me do something (or say something) on one browser, and have everyone else with the browser open view it in as close to real-time as possible!

This is where comet will be useful :)

DangerDev 107 Posting Pro in Training

w3school is good place for SQL to start with.
For Data Controls this and this seems good to me.
Happy Learning :)

DangerDev 107 Posting Pro in Training

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

DangerDev 107 Posting Pro in Training

Your problem is having two part:
1. Upload the image and its detail.
2. Search the image.
Take one part at a time and solve it, please do post the problem you face.

DangerDev 107 Posting Pro in Training

Try Comet.

DangerDev 107 Posting Pro in Training

What exception it is throwing?
How do you know its not working?

DangerDev 107 Posting Pro in Training

So what really you want from us??

Do you expect us to write complete code for you?

DangerDev 107 Posting Pro in Training

Yes it is possible !!!

DangerDev 107 Posting Pro in Training

Are you sure this method doesn't support ico files? I haven't seen that claim anywhere until now. Sure would be helpful to know for sure.

Even i have not seen such claim, but i tried and was talking about result.

DangerDev 107 Posting Pro in Training

It seems this method doesn't support ico file. I tried with .bmp files, its working fine.

DangerDev 107 Posting Pro in Training

during changing password you dont have to send user name and password to client, instead just ask current password and new password to the user, take those password to server and validate the current password, if current password is matching, reset the new password.

DangerDev 107 Posting Pro in Training

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 input text box value with its value.

DangerDev 107 Posting Pro in Training

If by saying forum you mean forum and if you need to develop a forum ( like daniweb etc.), then you have to store data some where, and in present era data base is the best option, so you need data base.
Similarly you need some sort of processing at server side, so you need a server side language, like PHP, ASP etc.

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

Can you post your working code?

Any ideas?it is so stanger thet nobody has any ansewer for this,one of microsoft bugs?

I don't think its a bug, may be there are some other way to do so and we are not aware of it. Or may be there is another explanation for the problem you are facing.
One thing you would have noticed, once you export the excel, image is not inside any cell, basically its floating above excel sheet. so it seems its an object floating over sheet.

DangerDev 107 Posting Pro in Training

then how you are going to store data?
what kind of forum it will be?

DangerDev 107 Posting Pro in Training

Try this or this or this.

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

could you please tell, what you have configured and which user you have added?

DangerDev 107 Posting Pro in Training

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 -> Component services ->Computers -> My Computer -> DECOM Config.(click here)
3. Now in right side in list of components search for 'Microsoft Excel Application'
4. Right click on it and go to properties.
5. It will open property window.
6. In property window go to security tab.
7. Change the launch and activation setting, and add the user.
8. Change the Access Permission, and add the user.

In above both the cases you will be adding user: Internet Guest Account.

DangerDev 107 Posting Pro in Training

this is not the correct forum for this question.

DangerDev 107 Posting Pro in Training

are you asking about how to send user name and password to server with security ?

DangerDev 107 Posting Pro in Training

did you try putting table inside table cell ?

DangerDev 107 Posting Pro in Training

I dont think any one will give you complete code. You first try your self and then ask question, if you face any problem.

The solution adatapost has given in mentioned post, is a way to solve the problem, you can extend it.

The Python solution is also a hint for you, you can take the algorithm and solve it in C#.

DangerDev 107 Posting Pro in Training

Did you see this ?

DangerDev 107 Posting Pro in Training

Its ok hket89, our point is use the english whatever you know, don't make it like SMS language, even if you are not understandable it is OK, but don't use SMS like language.
Now, if you dont have question just mark this thread as solved, so that people will stop posting here.

DangerDev 107 Posting Pro in Training

you mean to say, your screen saver should start on mouse move or on keyboard press, is it?
if so, then sorry to say, its not screen saver. You should probably reformat your question.

DangerDev 107 Posting Pro in Training

you want to build an application which behaves like screen saver.
or
you want to build a screen saver with some extra capability.
???

what is the problem with this or this or this ?

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

hi why you want to merge cell and put the image in center of it?
you can have your image say in 5th column with only 2 cell merged:

Response.Output.Write("<tr><td></td><td></td><td></td><td></td><td colspan='2' align='center'><div align='center' style='text-align:center'>" + imagepath + "</div></td></tr>");

do you want this?

DangerDev 107 Posting Pro in Training

Simple way will be to fill the data in to DataTable and simply set DataSource property as table:

DataTable table = new DataTable();
//fill the table with data
dataGridView1.DataSource = table;

for filling the table, you create column with name ones,tens,hundred etc.
Here you can get detail of how to create and fill data table.

DangerDev 107 Posting Pro in Training

Could you please post the code where you are exporting image to excel?
It would help us to help you.

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

Some suggestions:
==============
1. Use data grid for it.
2. First divide number.
3. Fill it in data grid.

DangerDev 107 Posting Pro in Training

this is how you can start.

DangerDev 107 Posting Pro in Training

Please use proper English, didn't you read above posts by yellowSnow?

Salem commented: It appears they haven't read anything yet +36
DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

Please post your question.
Please use English which every one can understand.
What is vf?

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

Congrats... Its good long time.

DangerDev 107 Posting Pro in Training

Nop,
I believe in GOD. (Google Oriented Development) :)

DangerDev 107 Posting Pro in Training

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.

DangerDev 107 Posting Pro in Training

I think you should start with a basic C book. You can not learn each and every language construct by communities.