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

Search:

Type: Posts; User: gitter1226

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    5,751

    Re: Need help with AJAX and JSF

    From my own experiences, I suggest that you wrap the XML config files with an object on the server side. AJAX then doesn't need to know how the data is stored, it only needs to make the asynchronous...
  2. Replies
    4
    Views
    1,492

    Re: parsing prefix expression small bug?

    I'm not sure how you're seeing those results. I took your code as is and am getting 8 for both of your examples
    + ( + 4 4 ) 4
    and
    + 4 ( + 4 4 )

    Looks like you've got some refining to do.
  3. Re: Help with DOS batch script - nested script calling

    I'm no batch script expert, but I *do* know that cd is the command used to change directories. Have you tried using that?

    Have you considered perl? You could even write it inline on the command...
  4. Replies
    4
    Views
    1,510

    Re: onmouseup not recognized if mouse moves

    By which Peej means to do this: http://www.quirksmode.org/js/events_tradmod.html
  5. Replies
    11
    Views
    8,937

    Re: Javascript; FileSystemObject;Localhost

    That is exactly what it is doing. For instance, let's say you're using IIS and the root for your web page is in c:\inetpub\wwwroot\myapp. You likely have a file in there called index.html (or...
  6. Thread: question

    by gitter1226
    Replies
    1
    Views
    5,071

    Re: question

    Short answer: no. Go over the tutorials at http://www.w3schools.com.
  7. Replies
    11
    Views
    8,937

    Re: Javascript; FileSystemObject;Localhost

    Take the http:// off the front, that indicates a URI or URL. Just use a relative path starting from the root location of your web app.
  8. Replies
    11
    Views
    8,937

    Re: Javascript; FileSystemObject;Localhost

    I believe it is failing because it is expecting a path, not a URI. Have you tried using relative paths?
  9. Replies
    1
    Views
    5,147

    Re: Organising my PHP scripts

    There are any number of paradigms to follow when developing a large web application. The beauty of MVC is that it allows a separation of concerns. The controller and any helper objects are the...
  10. Replies
    2
    Views
    13,292

    Re: Auto Complete List Box

    I actually coded a control like this for a web framework last year some time. I literally layered a textbox with no borders over the top of the select box control. The drop down button of the...
  11. Re: how to remove flickering when the data is being postback

    I had a similar problem with flickering once. Since you can't control what the browser is doing while you're updating the DOM, what I did is hid the control first, updated it and then made it...
  12. Replies
    4
    Views
    1,638

    Re: CSS Layout Issues

    Well Peej, apparently you are wrong as it wasn't working. I think the major difference here is that inline and nowrap weren't applied to the same element. Rather the nowrap was being applied to a...
  13. Replies
    4
    Views
    1,638

    Re: CSS Layout Issues

    Well, regardless of whether or not this is a real issue with using those two properties together, I have found a solution. For posterity's sake, here's what I did :

    First, when building the...
  14. Replies
    4
    Views
    1,638

    [RESOLVED] CSS Layout Issues

    I am having problems with layout using CSS. I have an unknown number of divs, each with a background-image and an anchor element inside them. What I want is for the divs to be laid out left to...
  15. Re: Problem running VB DLL in Internet Explorer

    I don't really have an answer for you... Have you tried trapping the error in Visual Studio by attaching to the running IExplore process and recreating the error? You should also be able to drop...
  16. Replies
    5
    Views
    15,681

    Re: XMLHttpRequest not getting initialized?

    I realize you've found your solution, but there is another possibility that is helpful sometimes:



    function save(id)
    {
    ...

    xmlHttp.onreadystatechange = stateChanged;
    xmlHttp.id = id;
  17. Replies
    1
    Views
    826

    Re: my problem & xml with dom in php

    Well I haven't looked at your code, but I'm curious as to why you are using the old domxml php extension. domxml was in wide use in PHP4 but as of the first released PHP5, SimpleXML was integrated...
  18. Thread: Php Ide

    by gitter1226
    Replies
    7
    Views
    1,447

    Re: Php Ide

    Zend Studio does allow you to trace through your PHP code for debugging which is a big advantage over Eclipse. Personally? I use vim. ;-)
  19. Re: Swapping frames causes zero widths in Firefox/not working in NN

    I think your best bet would be to leave the 'width' property alone, as a width of 0 will not render correctly in some browsers. I would put them both in the same frame, or div or however you decide...
  20. Replies
    1
    Views
    5,903

    Re: getting the height of an image

    I don't know if it's possible to get the dimensions of an image like that. I think there may be another way though. Put all of those images (unformatted) in a div whose .style.display='none' so it...
  21. Replies
    3
    Views
    7,102

    Re: User presence monitoring

    My product, also written in php is similar. What you need to do is, rather than just stamp a time for login/logout, is create a session object on server side. I have a simple process, written in c,...
  22. Re: Problem with AJAX in FF:synchronous request doesn't work

    Don't be too hard on him Bnt. There are times when such synchronous requests are useful within the scope of a larger application and such classes as he developed that handle both asychronous and...
  23. Replies
    7
    Views
    38,037

    Re: AJAX encoding problem

    I'm not quite sure what you're trying to say here.

    AJAX in and of itself doesn't support anything. It's just a design pattern that encompasses many technologies. If you are using Client-Side and...
  24. Replies
    2
    Views
    11,607

    Re: getting value of dropdown list in AJAX

    Got Code?
  25. Re: Firefox doesn't play nice with margin-bottom

    Actually, no. I used what I posted earlier. I didn't need to use the display:block; property. We were just talking in circles around each other, lol.

    Thanks again.
Results 1 to 25 of 56
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured