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

Search:

Type: Posts; User: AndyTheAce

Search: Search took 0.07 seconds.

  1. Replies
    6
    Views
    23,284

    Timeout for recv() ?

    Hi Folks,

    I've written a multithreaded server application with the following problem:

    On a client connect, a new thread will start.
    Clients will send a pingsignal for validating server...
  2. Replies
    2
    Views
    2,277

    Re: Low Level Keyboard Hook problem

    Thanks for reply, you were right I forgot to catch that.
    But its still not really good... when I pass the scanCode the result
    is a senseless number of characters.. but when I pass (LPARAM)0...
  3. Replies
    2
    Views
    2,277

    Low Level Keyboard Hook problem

    Hi Folks,

    I'm currently writting a LLKeyboard hook, my goal is to redirect all inputs just to one window, regardless what other applications are running.
    I made it acutall working so my problem...
  4. Replies
    1
    Views
    7,050

    Sys is undefined ?

    IE7 throws an javascript error "sys is undefined" when I put the
    <ScriptManager> section into my aspx.

    I'm using a masterpage so I have to put the ScriptManager into this file
    because of the...
  5. Replies
    0
    Views
    559

    Table blow up

    Hi Folks,

    I'm not sure if this is the right spot, but maybe someone can help me.
    In my asp.net project some table heads sometimes blow up (screenshots below) and if I reload the page it looks...
  6. Replies
    10
    Views
    10,610

    IE7 and "the path" part II

    Hola,

    I posted this problems a few weeks ago, discussed it with PeejAvery coming to no solution.
    Maybe anyone knows something new about it or a workaround:

    Simple problem, since IE7 it's not...
  7. Replies
    10
    Views
    10,610

    Re: Javascript problem with IE7

    that code works with a normal html file (IE7 asks me for allowing active content bla bla if I open this in html)

    If I put the code to the output of my aspx its the same as I describe in my...
  8. Replies
    10
    Views
    10,610

    Re: Javascript problem with IE7

    First of all, thanks for your help PeejAvery,

    I did it like you suggest, but I'm experiencing some problems.

    this is the line of code for changing the picture:
    ...
  9. Replies
    10
    Views
    10,610

    Re: Javascript problem with IE7

    maybe be ..
    Didn't try with html, I need it badly working with javascript.

    tried it with document.anyimage.src= "c:\car.jpg" ?
  10. Replies
    10
    Views
    10,610

    Re: Javascript problem with IE7

    I already did as I described, it does not work even with a hardcoded absolute path.

    So.. what could you do now if you want to display a selected image
    immediatly after selecting it (i.e. with...
  11. Replies
    10
    Views
    10,610

    Javascript problem with IE7

    Hi Folks,

    I got a problem with some of my scripts with the new version of the
    internet explorer (7.0).

    It seems like this kind of assign:

    document.anyimage.src= "c:\car.jpg"

    does not...
  12. Replies
    2
    Views
    792

    Holding data in a WebService

    Hi Folks -

    I'm trying to use a Webservice as "interface" for a an oracle database.
    So my goal is, that all users on my website share the database connection
    and are always up to date by...
  13. Replies
    5
    Views
    722

    Re: How to save uploaded files in database

    Maybe this post won't help you much, but its "easily" possible
    with an oracle sql server.
    You can save files as binary large objects (blob) there.

    But I don't know if access got something...
  14. Re: Issues with browsers BACK and FORWARD buttons

    why is it useless?
    The code is executed once you load the page, so browsers caching for that
    page is no longer active.

    Absolutly no need for javascript.
  15. Replies
    9
    Views
    701

    Re: Destroy sessions

    True, under this aspect you are right.
    Maybe check HttpCacheability settings.. even if it makes no sense
    if the same page works on other browsers

    ...
  16. Re: Issues with browsers BACK and FORWARD buttons

    Clear your login session variable in pageload of your login.aspx.
    Check this session in all your other modules, if its nothing redirect to login.

    add these two lines of code in the pageload of...
  17. Replies
    9
    Views
    701

    Re: Destroy sessions

    Hard to imagine that this is a problem of Opera (or a client) since
    the code you've posted is executed on the server...

    if it works on any browser it actually must work on every browser.
  18. Replies
    3
    Views
    575

    Re: Masterpages / Forms question

    Hello & thanks for answer,

    yes I tried it with a manual __doPostBack by using btnname.Attributes.Add().
    Didn't work, the postback was also blocked by the javascript code from the validation.
    ...
  19. Replies
    3
    Views
    575

    Masterpages / Forms question

    hello,

    I'm using masterpages in my asp.net web application, my problem is that the login is placed in the masterpage.
    That works actually very well, but on some content pages I'm using validate...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured