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

Search:

Type: Posts; User: tarunk

Page 1 of 10 1 2 3 4

Search: Search took 0.13 seconds.

  1. Thread: Vector

    by tarunk
    Replies
    3
    Views
    652

    Re: Vector

    Managed to find out that the string value is going out of scope because its a LPCTSTR. I used CString and it worked !!
  2. Thread: Vector

    by tarunk
    Replies
    3
    Views
    652

    Vector

    HI All,
    I need some help in creating and accessing vector.
    I have a class...
    Class CMyPage{
    MyPage::MyPage(Cstring strfilename, LONGLONG liEditpoint):
    m_filename(strfilename)
    ...
  3. Replies
    4
    Views
    849

    Re: Writing to a file

    Thank you for the reply.

    CFile myfile;
    CFile myfile2; // for consecutive files
    myfile.Open("file1.xml", modecreate|modewrite);
    myfile.write(the header);

    a while loop to go through the...
  4. Replies
    4
    Views
    849

    Writing to a file

    Hi There,
    I need some help in writing files using CFile .
    This is my requirement.

    Open the file.
    Write the header
    Write the content.
    WHen it reaches 10000 lines
    write the footer
    create a...
  5. Replies
    0
    Views
    587

    debugging asp.net project

    HI! I am using a com api for my asp.net project. Is there anyway i can stepinto the comapi code while debugging the project?i have included the com project in the solution though i am actually using...
  6. Thread: User of ASP.net

    by tarunk
    Replies
    0
    Views
    540

    User of ASP.net

    Hi everyone.
    I need some suggestion or help in tracking my problem.

    I have an asp project which uses a com api and it works fine in debug mode. When i create an MSI file and install it in the...
  7. Replies
    18
    Views
    33,984

    Re: vs

    Sr_jay,

    I have created a setup project for my project(even you can try your example projects), and then installed the msi in another server, the tags <input checkbox> etc, doesn't appear in the...
  8. Thread: setup project

    by tarunk
    Replies
    0
    Views
    645

    setup project

    sorry wrong post
  9. Replies
    2
    Views
    3,040

    Re: Radio buttons in Repeater

    HI! Did you check this thread! http://www.codeguru.com/forum/showthread.php?t=472529
    Looks like you have similar requirements.
  10. Replies
    18
    Views
    33,984

    Re: vs

    Thanks sr-jay. That seems to work. You have been very helpful. I appreciate that.
  11. Replies
    18
    Views
    33,984

    Re: vs

    I have another question!
    Is it possible to make only one checkbox click at a time. Say the first checkbox is already checked, the user clicks the second checkbox, then the first one should uncheck...
  12. Replies
    18
    Views
    33,984

    Re: vs

    Thanks Sr_jay. I'll try the example. I appreciate your help.
  13. Replies
    18
    Views
    33,984

    Re: vs

    The latest code seems to do the trick. Response.Write is the way to go rather than btn.attribute.add(onclick.....). is there any reason why it works only at the second click?
    I appreciate your time...
  14. Replies
    18
    Views
    33,984

    Re: vs

    I have changed my code to include the javascript, infact i tried with your example.
    Instead of sending the id of the submit button, i am sending id of the check to the javascript.





    ...
  15. Replies
    18
    Views
    33,984

    Re: vs

    You got my requirement right except one bit where the submit button appears only once after the <asp:repeater>.

    The difference I noticed in your code is you have added('"+somevariable+"' at...
  16. Replies
    18
    Views
    33,984

    Re: vs

    Window.open function does nothing if the first argument is a string variable.



    if(mychk.checked){

    string strvalue = mychk.value;
    string strUrl =...
  17. Replies
    18
    Views
    33,984

    Re: vs

    Using <input type=checkbox> is ideally what i wanted. THanks for suggesting that.

    In the onbuttonclick, i can't see the checkbox being clicked.




    private void onbuttonclick(object sender,...
  18. Replies
    4
    Views
    4,732

    Re: need help in opening a popup window

    I tried everything and anything but the only way i could make it work is




    <input type="button" onclick="javascript:window.open('target.aspx?id=<%#DataBinder.Eval(Container.DataItem,"id")...
  19. Replies
    4
    Views
    4,732

    Re: need help in opening a popup window

    THanks for the reply.
    THe id is coming for the database not from previous page.




    <asp:repeater id="myview">
    <....
    >
    <tr>
  20. Replies
    4
    Views
    4,732

    need help in opening a popup window

    HI Again,
    I have another query which could be simple but i am not able to resolve it. I need to have a button or link in my page which needs to open a popup window and need to be able to send a...
  21. Replies
    18
    Views
    33,984

    Re: vs

    Thanks for your reply.
    My column needs to have a checkbox and a hyperlink that users can click. So i can't have a text property for the checkbox. Bascially it should be a checkbox with just a value...
  22. Replies
    18
    Views
    33,984

    Re: vs

    I understand the point. But I need to pickup a value if this check box is clicked, true/false won't be enough. The checkbox is inside a <asp:repeater> so the value of the checkbox changes according...
  23. Replies
    18
    Views
    33,984

    vs

    HI All,
    I need to be able to assign a value to my checkbox, so that when the user checks it, the c# code will know what value has been checked. In a plain html tags we can use value attribute to...
  24. Replies
    3
    Views
    975

    Re: System.collections question

    THanks for your reply. I was thinking system.collectios.Arraylist...i beleive it is different to arraylist isn't it?
    Anyway, will try List.
  25. Replies
    3
    Views
    975

    System.collections question

    HI there,
    Is there any way i can create a multidimensional array at runtime? my arraylist need to hold object, string , string string and i need to databind this to my asp page.

    I saw couple of...
Results 1 to 25 of 246
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured