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

Search:

Type: Posts; User: rachelason

Page 1 of 6 1 2 3 4

Search: Search took 0.15 seconds.

  1. Replies
    4
    Views
    1,054

    Re: converting Time

    thanks for the reply. Standard time i meant time in a normal format like 15/4/2009 11.15 or Apr 15 2009 11.15 preferably the later.

    Thanks
  2. Replies
    4
    Views
    1,054

    converting Time

    HI!, I have time in milliseconds since 1/1/1970. Can someone tell me to how to convert that to standard time?

    thanks
  3. Replies
    4
    Views
    1,671

    Re: sending value from one page to another

    How can i use session in my example if i understood it right, session variables remain the same during a particular session.
    My requriement is if the user click first link it should carry a one...
  4. Replies
    1
    Views
    768

    data to display in a table

    HI All,
    I want to display a table with the values from a System.Collections.ArrayList?
    I could do that with the <asp:dropdownlist datasource> but i can't find a datasource attribute for...
  5. Replies
    4
    Views
    1,671

    Re: sending value from one page to another

    thanks for your quick reply. I'll try different value to pass as you suggested.

    Also, can you please be kind enough to tell me, what is the best way to carry same value to different pages. Say the...
  6. Replies
    4
    Views
    1,671

    sending value from one page to another

    HI!
    I am desperately trying to solve a problem.
    I have a list of values which i display on a page.



    file1

    file2
  7. Replies
    1
    Views
    1,004

    Re: ntldr missing

    if this post is useful to anyone in future, here is what i have to do to fix it. I had to reset my bios settings, then the boot disk allowed me to repair it and then i copied ntldr from the cd to the...
  8. Replies
    1
    Views
    1,004

    ntldr missing

    Hi All,
    This morning my computer wouldn't boot, it came up with ntldr missing, press ctrl+alt+del to restart.
    After several try, i put the window xp professional(x64 bit) cd and tried to boot from...
  9. Re: how to access api object in all the pages

    Thanks for your reply.
    1.IN the first page i did



    Session["myCom"]= myinterface;



    Will it make much difference to use the add method and the above?
  10. how to access api object in all the pages

    HI!
    I am quite new to asp.net and c#.
    I have a question regarding calling a COM api from my asp.net application. The .net application displays pages with the data from the COM api. SO in the...
  11. Replies
    7
    Views
    2,184

    Re: asp.net tag questions

    Do you by any chance mean using System.Data.Dataset to collect the data?
  12. Replies
    7
    Views
    2,184

    Re: asp.net tag questions

    I am a bit lost...Are you suggesting it's best not to use the c# Tablerow etc to build the table, instead save the result of the com api data in a datastructre and then let asp.net build the table....
  13. Replies
    7
    Views
    2,184

    Re: asp.net tag questions

    I understand the use of asp:table to table. I changed to asp:table and changed the c# code to use Table rather than HtmlTable.

    I don't use any database, the values are coming from a com API....
  14. Replies
    7
    Views
    2,184

    Re: asp.net tag questions

    Thanks Scott for the explanation.
    I was using response.write as i need to create a table of cells dynamically with it's content as hyperlink. After your suggestion i did some research and found out...
  15. Replies
    7
    Views
    2,184

    asp.net tag questions

    Hi All,
    1. Does <frameset> tag work in asp.net application? I had a simple 3 page application with <frame>, it seems to work only in the development server. Is it a good idea not to use <frameset>...
  16. Replies
    3
    Views
    797

    storing a value in a dialog

    HI All, This could be simple, but i can't figure out how.
    I have a combobox in my dialog where the value and the name are picked up from another class...eg.,



    std::vector<cmyclass> vecmyclass;...
  17. Replies
    3
    Views
    1,806

    Re: help to choose .net technology

    I have created a new asp.net web project. To include my COM API in to this project, i believe i have to create a metadata for the COM dll, so run



    tlbimp <mycomdll> /out:<comrc.dll>



    ...
  18. Replies
    3
    Views
    1,806

    Re: help to choose .net technology

    THanks for the reply.

    The webpage i want to create needs to interacts with the user and needs to validate what has been typed, so static html is out of question.

    I want the user to type in...
  19. Replies
    3
    Views
    771

    Re: Modifying my application

    Zerver, thanks for the reply.
    Adding the code as you mentioned stopped the empty child frame to open and my existing code to work the way i want. Great!

    How much ever searching the google or...
  20. Replies
    3
    Views
    771

    Modifying my application

    HI All,
    I need some suggestions to change the way my exisitng application works.
    It's a mdi which open a dialog to start with. Then whatever is chosen in the dialog, it creates an xml and this xml...
  21. Replies
    0
    Views
    664

    Default installation folder

    HI !

    I have created a setup/deployment project using vs2005. My question is , is it possible to choose the default folder to install the msi file when i run the installation in another computer?...
  22. Replies
    20
    Views
    3,018

    Re: Operator overloading

    ok, if i understand you correctly, then instead of setting a variable value true or false, return it. In your code, you haven't used the ==, i believe that part of my code is right?




    if(...
  23. Replies
    20
    Views
    3,018

    Re: Operator overloading

    bool retval;
    if( _first < p._first )
    retval = true;
    if(_first > p._first)
    retval = false;

    if(_first == p._first)
    if(_i1 == p._i1)
    if(_i2 == p._i2)
    retval = false;
  24. Replies
    20
    Views
    3,018

    Re: Operator overloading

    To make it simpler i tried




    return _first < p._first || _i1 < p._i1 || _i2 <p._i2;
  25. Replies
    20
    Views
    3,018

    Re: Operator overloading

    what happens if the find return true? doesn't it mean i need a == operator overloading?
    I am doing this for the first time , so it's a learning curve for me.
Results 1 to 25 of 132
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured