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

Search:

Type: Posts; User: Psytherium

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    0
    Views
    626

    301 Redirect and URL Rewriting...

    I'm using an open source .NET URL rewriter to handing 301 permanent redirect and url rewriting on my site. We want to use the url rewrite to clean up our urls for SEO purposes, and we want to use the...
  2. Using similar string search to eliminate duplicates in database

    Hello,

    I have a database of about 16,000 apartments that are for the most part user generated entries. Now I have another database of apartments that I have purchased of about 115,000 apartments....
  3. Replies
    5
    Views
    9,093

    Re: Function not returning newest variable

    But if the variable is global, should it not matter? Or is java script different than other programming languages in that sense?
  4. Replies
    5
    Views
    9,093

    Re: Function not returning newest variable

    EDIT: Well, I took a glance at the AJAX forum and saw a thread that talked about SJAX(SynchronousJAX), so I gave it a try and it works. Trying to learn client-side coding, server-side coding, and...
  5. Replies
    5
    Views
    9,093

    Function not returning newest variable

    Here's the deal: I want my doAjaxRequest function to open a CFM file, which then calls a function in a CFC file depending on the ?functions= url. Well, everything works perfectly, except result. The...
  6. Replies
    3
    Views
    690

    Re: Size options when capturing a window

    If I'm not mistaken, isn't PrintWindow the only thing that allows you to capture windows regardless of z-order? I messed around with that code, and just by commenting out the PrintWindow line, it...
  7. Replies
    3
    Views
    690

    Size options when capturing a window

    I know you can specify the size and area of a window I want to capture with Bitblt, but is there a way to do this with PrintWindow? I'd really rather not have to make a window be pushed to the...
  8. Re: Algorithm that searches for multiple patterns in a string?

    Again, thanks for your help! A search that would take a second now takes 5 milliseconds, while only adding 3-5 milliseconds of overhead finding the highest variant line (Even with a height of 250!).
  9. Replies
    2
    Views
    4,163

    Re: Capture from background window.

    I wish there was a faster way than Mr. Golan's solution. Even with modifying his code in CaptureWindow() to only loop through once, it is still about 5-6 times slower than capturing a foreground...
  10. Re: Algorithm that searches for multiple patterns in a string?

    I like this idea a lot. So far I've got the search time for a a 1280x1024 screenshot down to an average of 5 milliseconds. This is of course if the first line has a decent amount of variance. Then,...
  11. Re: Algorithm that searches for multiple patterns in a string?

    I tested out the Rabin-Karp algorithm and I'm not sure if it will be fast enough. Maybe it's the way I implemented it, I'm not sure. I found the algorithm on wikipedia(...
  12. Algorithm that searches for multiple patterns in a string?

    I'm wondering if there is an algorithm out there that searches for multiple patterns in a string. I need it to also find out if each pattern is a certain distance from the pattern before it. Is there...
  13. I have function that finds a smaller image within a big image, but I'm stuck

    Here's my function that takes two bitmaps as parameters. The first bitmap is a larger image, and the second image is a smaller image. The function then searches through the larger image to see if the...
  14. Replies
    0
    Views
    812

    Simpler than it seems array problem...

    EDIT: Fixed the problem with jagged arrays.
  15. Re: Controlling/sending messages/getting info from other programs

    Thank you very much for your response. It definitely helps broaden my understanding. I tried playing around some more with Spy++. This time, I was using it on AIM. I filtered out some of the messages...
  16. Controlling/sending messages/getting info from other programs

    I am seeking out information on controlling, or sending messages and receiving information, to/from other programs. I've been searching the forums and google on this, and I've had some progress. I'll...
  17. How do I find the length of an array of ints after it's passed into a function

    I'm doing a simple sorting function of ints. I have an array of ints, such as:



    int test[] = {1,0};


    and I pass it in to a function void sort(int * pointer).

    Once it's passed into sort,...
  18. Re: Having trouble creating a library...unresolved external symbol errors.

    Ok, so I figured out I should use something along the lines of:



    #ifdef MYDLL_EXPORT
    #define MYDLL_PUBLIC __declspec( dllexport)
    #else
    #define MYDLL_PUBLIC __declspec( dllimport)
    #endif
  19. Having problems using native methods, errors when creating the .dll...

    I'll first start with some background. I'm creating a poker program where you can play against "bots". So, part of this program deals with evaluating hands so the bot can make decisions. Well, I've...
  20. Having trouble creating a library...unresolved external symbol errors.

    I'll first start with some background. I'm creating a poker program where you can play against "bots". So, part of this program deals with evaluating hands so the bot can make decisions. Well, I've...
  21. Replies
    3
    Views
    1,757

    Re: Searching a WEB FORM ListBox...

    Thanks a ton for the reply. I knew there had to be some way to clear the whole list, just couldn't put my finger on it.

    With the search, what if I didnt just want to search the beginning, but the...
  22. Replies
    3
    Views
    1,757

    Searching a WEB FORM ListBox...

    I want to be able to perform a search on a Web Form ListBox. It would be sooo much easier if the web form version had the FindString() member that the win form version has. I tried using IndexOf()...
  23. Re: Getting information of another window in java...

    That's when the compiler starts to whine at me...What's weird is when I try to compile the .cpp in Visual C++ it compiles fine, but when I try to compile in the command prompt using cl, it gives me...
  24. Re: Getting information of another window in java...

    Does anyone have any experience with GetWindowText() and other functions of that sort with JNI?
  25. Re: Getting information of another window in java...

    This is the first time I've tried messing with JNI, so from what I read I tried through together some code. I first tested out the Hello world idea and that worked fine for me. Then II took my code...
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured