Search results for query: *

  • Users: jason2li
  • Content: Threads
  • Order by date
  1. J

    Domain Name Availability

    I want to have the functionality to search for a domain name, and have it return whether it's available or not, similar to Complete Web Solutions: domains, hosting, site builders and SSL. or Domain Names, Domain Name Registration and Web Hosting | Network Solutions, etc. Do they pay a fee to...
  2. J

    Question Load large image into a Bitmap object

    I have a large image (PNG: 22,550 x 16,7000) that I need to somehow split into several 256x256 JPG tiles. But when I try to load it into a Bitmap (or Image) object, I keep getting an "Out of Memory Exception" error. So, I was wondering if there is a better way to split an image up? Or is...
  3. J

    Implement a "Suggest correct spelling" or "Did you mean" feature

    I am trying to write a search script for my company's website. I know how to search using the basics, like: SELECT * FROM myTable WHERE myColumn LIKE '%what%ever%'; and such, but I would like to implement some sort of "did-you-mean" feature, similar to Google. So, if a user misspells...
  4. J

    Getting contacts from Gmail/Yahoo/etc.

    I am developing a website, and I've seen some sites (like LinkedIn.com) where they allow you to enter your Gmail username/password, and it will get all of your contacts, so you can add them as friends or invite them to join the site. How do they do this? I tried searching Google and this...
  5. J

    Detect a user's periphials from a website

    Is there anyway to detect a user's periphials when they're visiting my website? I was thinking like a plug-in or something, where the user would have to accept the plug-in's installation (so they would know what's going on, it's not a sneaky thing). I know there are plug-ins that can view your...
  6. J

    Extracting user's geographical location based on IP address

    Hi, I am trying to extract a user's general location based on their IP address. I've found several programs that have an annual fee to accomplish this, but I dug a little deeper and found this: http://ws.cdyne.com/ip2geo/ip2geo.asmx/ResolveIP?IPaddress=1.1.1.1&LicenseKey=0 (Change the...
  7. J

    Pass a ProgressBar ByRef to a custom class on a BackgroundWorker thread

    I'm trying to make a custom class that will use my main form's ProgressBar to show some progress. The function takes a LONG time, so I have to run it on a different thread (I'm using the BackgroundWorker). How do I do this? Here is a dummy application that essentially demonstrates what I'm...
  8. J

    RaiseEvent not handling from within constructor of custom class

    Hi, I've been developing for years, and have been using my own events just as long, but this one has me stumped. I could have sworn this used to work. (I'm using VS2005) Public Class Form1 Private WithEvents Test As TestClass Private Sub Form1_Load(ByVal sender As System.Object...
  9. J

    Track how long an email was open

    I am developing a marketing management tool for my company which will send out mass emails to our target audiences. They would like to be able to track when, where, and how long an email was opened. I managed to get the "when" and "where" working fine by adding an IMG tag pointing to an ASPX...
  10. J

    AudioVideoPlayback - Capturing Screenshot

    I'm trying to capture a screenshot from a video file save it to a Bitmap object. I am using AudioVideoPlayback.Video. I've looked all over the web and can't find anything. Does anybody know how to do this?
  11. J

    ProgressBar with unknown end

    Hi, I have been searching for some time for a ProgressBar that continuously cycles. So the user knows that something is happening, but there is no definitive 1-100. The ProgressBar just goes from left to right, and when it reaches the end, it'll start back over from the left and do it again...
Back
Top