Recent content by mandingo

  1. M

    Over 50,000 Day Trading / Financial Email Leads - What to Do?

    Hypothetically speaking, if you had over 50,000 email addresses for individuals who were interested in day trading and financial services, how would you best monetize the list? All emails are valid and the list is not bought or abused List contains thousands of high net worth individuals...
  2. M

    ~Domain Suggestion~

    rnb-hh ...Makes sense because everything is abbreviated. Get familiar with bustaname - Google it. Every once in a while, it will incorrectly say a domain is available when it's really taken. But must of the time, it's very accurate.
  3. M

    Bought a good domain, I think?

    You should put some kind of content on the page ahead of time to put the domain to use until they get back to you. This will help prevent against any legal / cyber squatting terms if they decide not to buy and choose to attack. Make sure the content is generic / neutral and unrelated to their...
  4. M

    Which protection?

    If I understand you correctly, you are trying to hide from GoDaddy using GoDaddy services? Otherwise, you may just be looking at hiding the WHOIS information from any public person who decides to query your domain. This should be part of the standard privacy package. GoDaddy defines the...
  5. M

    auto rotate number

    I agree with mypmmail's second suggestion. You will need to store the value separately on the server. With your implementation, make sure the traffic display is the same value across multiple computers in case the visitor decides to check. You can use AJAX to read from a text file you...
  6. M

    [Ask] Where can i get free flash games source code & marketplace html5 games

    Sothink SWF Decompiler can assist you in obtaining source code, but use it responsibly.
  7. M

    PHP IDE with debugging capabilities, which one do you recommend?

    For PHP IDE work, I always use NetBeans and it's entirely free. I use it with xampp (also free). Occasionally, the NetBeans debugger can be a bit confused if you have too many debugging sessions launched. Just be careful you are ending each debug session and you set up a separate browser for...
  8. M

    How can i Remove line number at the beginning ?

    A bit easier this way... Sub Main() 'Input string Dim strString as String = "1email:string:string" 'Get the position of "email" and add 1 since Mid needs to start with 1 'Cut out the part of the string we want via Mid since we now know the correct position to...
  9. M

    how to make a custom install menu?

    For such an install program, it would not be very difficult to create a similar GUI / application in Visual Studio. You can then have each button simply launch a separate installer for each product. If you need to create installers for each setup, I recommend Inno Setup (it's entirely free)...
  10. M

    Best programming language to make software?

    The .NET languages are great from a programming and ease of use standpoint. However, there are security problems with compiled code. Many decompiler programs exist that can revert your compiled code back to readable .NET code. Furthermore, there are many automated .NET unpacker programs that...
  11. M

    run a program

    Please be more clear in what you're trying to do. If you are trying to press a button in your own program, you can call the command button's Click function. If you are trying to press a button in another program, you will have to use something like SendKeys. Or, the better way, use the...
Back
Top