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

Search:

Type: Posts; User: Toot

Page 1 of 9 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    0
    Views
    5,176

    Binding in Style template

    I'm trying (failing) to create a button template, to be shared between libraries. The template is (currently) basically a bordered circle inside a bordered circle. In order to make the inner...
  2. Thread: TreeView data

    by Toot
    Replies
    0
    Views
    662

    TreeView data

    I've got a DB with some hierarchical data in it which I want to represent using a TreeView. I'd like to store some data (i.e. an object) in each TreeNode so that I can load only when I need to and...
  3. Re: Updating a form, Postback, general confusion

    Duh - ListBox_SelectedIndexChanged, not Page_Load !!
  4. [RESOLVED] Updating a form, Postback, general confusion

    I have a form containing a dropdownlist. Whatever is selected in the dropdownlist gets loaded in the subsequent textboxes, checkboxes, etc. I then have a button to be used to apply changes.
    ...
  5. Replies
    4
    Views
    801

    Re: RegularExpressionValidator

    That's exactly it - you're brilliant and amazing. I wasn't even on the right track! Regular expressions are indeed a world unto their own...

    Thanks again,
    T.
  6. Replies
    4
    Views
    801

    Re: RegularExpressionValidator

    Thanks for the reply. I'm trying to match a string, rather than character set - for example NOT ("Apples" OR "Pears"):
    NOT (and that's the bit I'm having trouble with) "^(Apples|Pears)$".

    Thanks...
  7. Replies
    4
    Views
    801

    RegularExpressionValidator

    Hi there.

    I want to allow the user to select any but a couple of items in a listbox. I've got a RegularExpressionValidator for the listbox but I'm somewhat stuck on the regular expression - how...
  8. Replies
    9
    Views
    1,061

    Re: Multithreaded consumer

    What attribute of Thread is that??? I know you can give them names, didn't realise you could assign an ID too.

    Anyhow, stepping over or into any WebMethod on my WebService blows the thread. So...
  9. Replies
    9
    Views
    1,061

    Re: Multithreaded consumer

    Yup - there's a bit of a debugger hang where nothing seems to happen for a while, then the thread's gone & I see a "The thread 0xnnnn has exited with code 0 (0x0)." in the output window (I know it's...
  10. Replies
    9
    Views
    1,061

    Re: Multithreaded consumer

    Tried that: no difference.... keep the ideas rolling!

    Cheers,
    T
  11. Replies
    9
    Views
    1,061

    Re: Multithreaded consumer

    Nothing missing and after the new, there is definitely an object. Also tried using the member but no difference. It really does seem to be the fact that it's on a different thread; almost as if the...
  12. Replies
    9
    Views
    1,061

    Multithreaded consumer

    Hi. I have a C# WebService with a WebMethod that returns an array of (WebService-defined) objects. If I create a consumer exe and call the method, everything is as expected.
    If I then create a...
  13. Replies
    3
    Views
    612

    Re: Assigning a stylesheet

    The Button has a CssClass property - put the class name from the css in there.

    HTH,
    T
  14. Replies
    2
    Views
    1,207

    Re: displaying welcome message on a web page

    Assuming ASP.NET 2.0 or later, use the LoginView control.

    T
  15. Thread: PasswordRecovery

    by Toot
    Replies
    1
    Views
    566

    PasswordRecovery

    Hi again,

    My password setup is hashed, enablepasswordretrieval=false and enablepasswordreset=true. The email sent out states the username and brand spangly new password. What is this password -...
  16. Replies
    4
    Views
    999

    Re: Login Page Problem

    The only thing that comes to mind there is that you can't use a LoginView's controls directly - so lblErrMsg in the catch in loginsys_Authenticate is probably Nothing. Apologies, I'd normally use C#...
  17. Replies
    4
    Views
    999

    Re: Login Page Problem

    Do you have output of the stack trace?
  18. Replies
    4
    Views
    806

    Re: Creating HTML to insert at run-time

    I follow you. Seems a trifle complicated for something I would have thought would be run-of-the-mill but I appreciate the assistance :thumb:

    I'll let you know how I go!

    Thanks again gurus,
    T
  19. Replies
    4
    Views
    806

    Creating HTML to insert at run-time

    Forgive me, I'm self-teaching a move to ASP.NET from Windows forms...questions questions...

    I want to insert a list, content of which will depend on the user or role. So I think I want to insert...
  20. Enter in Textbox reloads page instead of submitting form

    I'm sure this is simple and there's plenty of close-but-not-quite posts...

    I've got a content page containing a LoginView which has got a Textbox and Button on the AnonymousTemplate. I enter...
  21. Replies
    1
    Views
    629

    static const members

    What's wrong with this?

    namespace somenamespace
    {
    class CMyClass
    {
    // static members
    public:
    static const float ms_PI;
    static const float ms_G;
  22. Replies
    0
    Views
    1,077

    float __gc[,] to plain old float** ???

    Hi again. Simple enough - my C# client passes a float[,] into my managed C++, which needs to pass a float** into a pre-written C function. How?

    I'm actually passing a __int16 array too, but I'm...
  23. Replies
    1
    Views
    976

    Re: StackOverflowException using new or malloc

    FYI, I fixed this problem (which leads me to another, but that's a different story altogether!). First problem was that I was linking with libcmtd.lib and changing to msvcrtd.lib coupled with the...
  24. Replies
    1
    Views
    976

    StackOverflowException using new or malloc

    My C# client is passing a large array into my managed C++ class like this:

    bool JEMFFT::ConfigureInputs(__int16 Samples __gc[], ...)

    My managed class is going to need to take a copy of this...
  25. Replies
    2
    Views
    1,183

    Re: Extending FolderBrowserDialog??

    Yeah not quite so nice though - I only want to be allowing selection if the folder contains some specific files; like the "insert installation disk" idea.

    Never mind - don't ask, don't get! ...
Results 1 to 25 of 212
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured