CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: jagmit

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    5,188

    problem with page display

    I have a master page which is using the style sheet..

    My problem is that my vertical scrollbar does not work and horizontal scrollbar is not showing when i restore down the page.

    here is my...
  2. Replies
    2
    Views
    9,507

    store arraylist in database

    I have an arraylist which has a list of structures stored in it
    Now i need to store these structures in a database, where each structure has its own line.

    public struct BackupSpecEntry
    {
    ...
  3. Replies
    2
    Views
    4,340

    Re: enter a value from dropdownlist to database

    ok i got it........
  4. Replies
    2
    Views
    4,340

    enter a value from dropdownlist to database

    I have a checkbox which when enabled the value of the dropdownlist is entered in database and if not enabled a default value should be enterd in the database....

    my code is :

    if...
  5. Replies
    3
    Views
    4,432

    Re: add values to dropdownlist

    Darwen thanks, it worked just fine..
    vandel212 that worked too....

    Thanks guys..
  6. Replies
    3
    Views
    4,432

    add values to dropdownlist

    i have a code...

    protected void Page_Load(object sender, EventArgs e)
    {
    if (!IsPostBack)
    {
    for (int i = 1; i <= 100; i++)
    {
    ...
  7. how to add current date time in bigint field...

    I need to add the current date time in a bigint field in a database... and then display from that only the date in format: october 1, 2009.

    I am currently thinking of storing the value in string...
  8. Replies
    2
    Views
    4,924

    form raunt server problems

    I have a master page with two contentplaceholders.
    I have a default page.aspx which uses this masterpage.
    In the default page one contentholder has a treeview and the other has a gridview.
    Now i...
  9. Replies
    0
    Views
    3,853

    form raunt server problems

    I have a master page with two contentplaceholders.
    I have a default page.aspx which uses this masterpage.
    In the default page one contentholder has a treeview and the other has a gridview.
    Now i...
  10. Replies
    6
    Views
    1,761

    Re: dynamic treeview problem

    the code to populate the tree node:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using...
  11. Replies
    6
    Views
    1,761

    Re: dynamic treeview problem

    No, I am selecting only one node i.e. the parent node or a child node.
    But since the treenodes are being populated from the database i dont know how to generate an event when a particular node is...
  12. Replies
    6
    Views
    1,761

    Re: dynamic treeview problem

    Is there no 1 who knows the answer to this?/?
    Even how to go about information will do.
  13. Replies
    3
    Views
    1,755

    Re: dynamic treeview problem

    Is there no 1 who knows the answer to this?/?
    Even how to go about information will do.
  14. Replies
    6
    Views
    1,761

    Re: dynamic treeview problem

    I have the code to retrieve values from the database and display on the treenode dynamically.
    Just the selection is a problem.

    If there is a tutorial of any other information please let me kow
  15. Replies
    3
    Views
    1,755

    Re: dynamic treeview problem

    I have the code to retrieve values from the database and display on the treenode dynamically.
    Just the selection is a problem.

    If there is a tutorial of any other information please let me kow
  16. Replies
    3
    Views
    1,755

    dynamic treeview problem

    I have a treeview control in ASP.NET and C#.

    Root node This is fixed
    ---Parent Node 1 Parent node and child are populated from the database directly.
    ----Child node1
    ----Child node2...
  17. Replies
    6
    Views
    1,761

    dynamic treeview problem

    I have a treeview control in ASP.NET and C#.

    Root node This is fixed
    ---Parent Node 1 Parent node and child are populated from the database directly.
    ----Child...
  18. Replies
    2
    Views
    728

    Re: how to populate a treeview

    I want to populate my treeview dynamically from my database.
    In the above example they are providing the node values.
  19. Replies
    0
    Views
    610

    how to populate a treeview

    I have a database of a company XYZ.
    It has two tables Departments-(customer support, executives, HR)
    and Machines-(PC1, PC2, PC3, PC4)
    The PC

    I want my tree view to look like

    XYZ

    --...
  20. Replies
    2
    Views
    728

    how to populate a treeview

    I have a database of a company XYZ.
    It has two tables Departments-(customer support, executives, HR)
    and Machines-(PC1, PC2, PC3, PC4)
    The PC

    I want my tree view to look like

    XYZ

    --...
  21. Replies
    4
    Views
    1,140

    Re: code to count number of emails sent

    it can be through loutus notes
    but is it possible using outlook express
  22. Replies
    4
    Views
    1,140

    code to count number of emails sent

    Hi,

    What is need to do is...

    There are two departments which are on one email network. I need to calculate the number of emails sent by each user in one department to a user in another...
Results 1 to 22 of 23





Click Here to Expand Forum to Full Width

Featured