Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tsisher

    Keep updating Session object with a List<string> in c#

    Thanks Jason Meckley. At some point I have to extract values from all the list in the session object. How can I do that? Many thank again.
  2. tsisher

    Keep updating Session object with a List<string> in c#

    I have a Session object Session["MyListObjects"] = null; When a user hits a button I want to creat a List<string> object and add to session object. Let's say if user hits the button 10 times, I would get 10 List<string> ojects and add to Session["MyListObjects"] and Finally I want to read...
  3. tsisher

    Calculate div position

    say I have multiple controls in different div tags (textbox, textarea, button) and through css I want to layout these controls on the form at different layout position. eg : one control could be adjacent to the other or some control right under different control or some other position What's...
  4. tsisher

    Change the color of lines of text box lines using javascript

    Is it possible to do this ? Let me explain this. // aspx <asp:TextBox runat="server" ID="txtOld" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:TextBox runat="server" ID="txtNew" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:Button Text="Compare"...
  5. tsisher

    Comapring two &lt;asp:TextBox&gt; lines

    Any idea how? Thanks
  6. tsisher

    Comapring two &lt;asp:TextBox&gt; lines

    Is it possible to do this ? Let me explain this. // aspx <asp:TextBox runat="server" ID="txtOld" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:TextBox runat="server" ID="txtNew" TextMode="MultiLine" Columns="70" Rows="30" Width="425px" /> <asp:Button Text="Compare"...
  7. tsisher

    Please help with this

    I have a web form where I call a method, if page is not post back some thing like if (!IsPostBack) FillCustomerDetails(); and FillCustomerDetails call a third party component and get a string back. I chop that string fill few asp:TextBox like txtAddress.Text = obj.Address...
  8. tsisher

    A simple question

    Yes- I have already split this functionality. I also have a login form. Okay- let me explain-- Some one logs in - lets say admin- He can create new users and modify existing users- For new user - my routine is fine which checks whether new email is already existing in the database- if yes...
  9. tsisher

    A simple question

    Hi, I have a win form where users get registered and can update/modify details as well. On this form I have certain fields (like email, country, etc.). The important field is email. Why important? This gets checked against database whether this email address already exists or not. 1) New User...
  10. tsisher

    Create excel file c#

    Hi, I am working on c# application and the requirement is when I get data from the database, I have to do few calculations and based on those business logics I have to create a new excel file and save some data on the excel file. Solution I am after, 1) How to create an excel file within...
  11. tsisher

    UnArchive eats up all the memory or system resources

    I'm waiting for your response guys.. What do I do so that it runs separately and does not effect other windows opened.
  12. tsisher

    UnArchive eats up all the memory or system resources

    Hi, Unarchiving sucks all the memory or system resources, as i don't know what is going on. I have a utility which unarchive hundreds of files but while unarchiving the files it does not allow me to do any thing. Example, while unarchiving, even I open internet explore it does not even allow...
  13. tsisher

    How do avoid flickering win form

    Thanks Jason, At last I got some input. I'll start looking at BackGroundWorker object. You did mention about async handlers. What are those? Do you have any sample? Regards,
  14. tsisher

    How do avoid flickering win form

    Now I have found while the method is processing the files and if I move to some other window, for example while it is processing and say I open internet explorer or windows explore they start flickering heavily. Even the internet explore is not allowing me to type the url. Where the focus goes...
  15. tsisher

    How do avoid flickering win form

    Hi, I have a method which process the files(read/create many files) which I am calling like that.. Thread t = new Thread(new ThreadStart(ProcessFiles)); t.Start(); ProcessFiles() is the method which does all the file work. Every think works fine but my win form keeps flickering which I...
  16. tsisher

    Is there any way of doing this..

    Thanks a lot . I'll try this and come back to you later. Regards
  17. tsisher

    Is there any way of doing this..

    I have got two User controls 1) ListEmployee.ascx(Has got a DataGrid to list all the Employees and a View Button to show the Detail) 2) DetailEmployee.ascx(should display the employee list if pass a Employee ID) Now I have got Two .aspx pages 1) ListEmployee.aspx (Which Has got...
  18. tsisher

    How to do this bit...

    it open the new links if i click the links.. it doesn't work if i close the window.. That means some how onunload event is not being fired for opening a new window but onunload event works fine if i put some alerts..
  19. tsisher

    How to do this bit...

    If you run the whole project it opens in I.E. But you can be view indiviual page by right clicking the page and pick the option view in browser and it opens in some kind of its own browser in vs.net ONLY(not I.E). And this is where it works fine...
  20. tsisher

    How to do this bit...

    All the web pages are .aspx pages. But for the time being there is no code behind only these javascripts. I do have google pop up blocker as well as yahoo but are set to pop up allowed. I have a felling that this is some thing to do with the browser. Because every thing works fine if I run...

Part and Inventory Search

Back
Top