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

Search:

Type: Posts; User: richiebabes

Page 1 of 20 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    0
    Views
    1,092

    Can't get text of ASP label

    I have this JQuery code:

    $("#<%= FundingRequested_11.ClientId %>").html(funding.toFixed(2));

    Then after the user clicks another button I want to grab the text that is in FundingRequested_11...
  2. Re: Problems running from source code located on a network drive.

    Can anyone else help. Sorry, David, but you don't seem to be making any sense. I have no idea why you started talking about IIS in the first place. Can't you just explain the steps I need to go...
  3. Re: Problems running from source code located on a network drive.

    My pretty good reason is that it is my own post, so obviously I should be able to delete it.

    Now, back to my question. It seems you don't know much about webconfig files. Can you point me to...
  4. Re: Problems running from source code located on a network drive.

    Why can't I delete my own post?
  5. Re: Problems running from source code located on a network drive.

    But I am not changing the webconfig file. The webconfig file that works fine when I run the code contained on my local machine does not work when THE EXACT SAME webconfig file is on the mapped...
  6. Re: Problems running from source code located on a network drive.

    Why are you trying to get me to get IIS to work? IIS already works. It was installed ages ago, it works fine.

    Again: did you even read my question? Why can't I run webconfig on my mapped drive?
  7. Re: Problems running from source code located on a network drive.

    What the dickens? Why are you asking me to add IIS? I already have it installed!

    Did you even read my question?
  8. Re: Problems running from source code located on a network drive.

    I am sorry, I have absolutely no clue what you are talking about. What advanced programs and features? What about IIS? Install and reboot what? What .NET extensions?
  9. Re: Problems running from source code located on a network drive.

    I clicked on http://localhost and it said it couldn't open it. What other advice should I follow specifically? I am really sorry - you've completely lost me.
  10. Re: Problems running from source code located on a network drive.

    How do I do that?
  11. Problems running from source code located on a network drive.

    In order to facilitate backing up of source code developers are working on that they haven't yet checked in to TFS we have decided to check out source code onto a network drive instead of one's local...
  12. Re: Access VB.NET objects from web page clicks

    Let me rephrase my question because the responses from dglienna just seem bizarre, and maybe the fault is with how I am asking the question. In the world I am used to - stand alone desktop...
  13. Re: Access VB.NET objects from web page clicks

    Of course I don't want to scrape the content off someone else's site. What on earth are you talking about? I want an easy way, without having to make a bunch of web service calls, where I can store...
  14. Re: Access VB.NET objects from web page clicks

    Huh? Not sure I follow. I am used to creating a stand alone application where you can have a set of objects for use throughout the application. All I am asking is whether I can do this with a web...
  15. Re: Access VB.NET objects from web page clicks

    Hello?
  16. Access VB.NET objects from web page clicks

    Yes I am a newbie to VB.NET and relatively new to web programming in general and I have a mind block. I am working on a web application where the user goes through a series of pages by clicking...
  17. Replies
    1
    Views
    1,134

    Tree view that dynamically updates

    I am trying to create a tree view that re-populates itself when a user adds something somewhere else on the page. I am stuck with an existing data source which is a list of folders and links in...
  18. Replies
    7
    Views
    3,776

    Re: CArray copy constructor

    Hmm, maybe a vector is a good idea.
  19. Replies
    7
    Views
    3,776

    Re: CArray copy constructor

    Yes I know, but I want to remind myself of how to write a copy constructor in this instance.

    Anyone else can help?
  20. Replies
    7
    Views
    3,776

    CArray copy constructor

    I have a struct:



    struct shape
    {
    CString sName;
    CArray <CPoint, CPoint> ptPoints;
    int nSides;
    };
  21. Replies
    1
    Views
    878

    Drawing panel control for dialog?

    Is there a drawing panel control extant that I can put on a dialog? All I want is a little square drawing area on a dialog that I can draw a preview of something or other.

    Thanks!
  22. Replies
    20
    Views
    2,325

    Re: Memory leak - arghh!

    Drama over - I malloced instead. :)
  23. Replies
    20
    Views
    2,325

    Re: Memory leak - arghh!

    This is embarrassing - but I am rusty! The memory leak comes from this line of code:


    char *chpts = new char[sPoints.GetLength() + 1];

    How can I delete it? A simple delete chpts causes things...
  24. Replies
    20
    Views
    2,325

    Re: Memory leak - arghh!

    OK, but how does any of that help.

    WHERE SHOULD I DELETE THE shape VARIABLE?????????
  25. Replies
    20
    Views
    2,325

    Re: Memory leak - arghh!

    OK, thanks for the clarification - yes, I thought so.

    So how come when I deallocate the shapes array at the end I still get a memory leak? When should I delete shape? Doesn't deleting the array...
Results 1 to 25 of 478
Page 1 of 20 1 2 3 4





Click Here to Expand Forum to Full Width

Featured