Canadian Postal Codes

The ‘Canadian Postal Codes‘ package will provide you with 6 digit Postal Code, Street name, Area name, City name, Province name, Province code, Timezone, DST Flag, Latitude, Longitude, Elevation and Area Code.

Key Features:

  • The ‘Canadian Postal Codes’ package includes the information on: Canadian postal code, Street name, Area name, City name, Province name, Province code, Timezone, DST Flag, Latitude, Longitude, Elevation and Area Code.
  • 810,000+ records in the ‘Canadian Postal Codes’ package database.
  • Canadian Postal Codes are alphanumeric and composed of 6 characters.
  • Latitudes and longitudes are to within 0.00001 (5 digits after the comma).
  • The ‘Canadian Postal Codes’ package can be EASILY imported to ANY database.
  • The compressed file size is 9.85 MB. It is quick and easy to download.
  • The uncompressed file size is 84.37 MB.
  • The downloaded file is in CSV format.

For more details and ordering please visit http://canada-postal-codes.itsyssolutions.com/

Tags:, , , , , , , , , , ,

Craigslist Flagger

Often, posts are deleted or removed from Craigslist for they violate the terms and conditions of posting. The said rules are available at http://www.craigslist.org/about/terms.of.use If you are adhereing to the rules and your posts are being removed as a result of being flagged down by your competitors, we have a solution by way of you can mark your posts as “BEST OF CRAIGSLIST”. Our software uses a 3rd party application that will change the IP so as to register unique votes.

However, the Craisglist moderator has the final say on what post is to be made available on Craigslist for 15 days and which one should go dowm. Our application cannot interfere in that process or reactivate the post if it has been deleted or marked for deletion.

The software is provided on a per client basis and it includes a onetime setup cost on a single PC. For multiple PCs, there is a nominal cost of $35 per PC and you need to buy the IP rotating tool seperately. In $200, we will provide you with only a single licensed copy of the IP rotation tool. 

In order to proceed, you can send $200 via PAYPAL to info@itsyssolutions.com and email us the PAYPAL confirmation number along with your contact details. 

Due to the low cost model and our friendly licensing policy, we donot offer refunds once the application has been installed on the clients machine.

You can write to us at info@itsyssolutions.com with any of your questions. All questions will be answered in 2-3 business days.

Tags:, , ,

Craigslist Flagging Blocker

Many small business with limited advertising budgets depend on Craigslist to market their product and sell their services. They post ads on Craigslist in different city sections they serve and hope that their ad be seen prospective buyers of their service. However, a few mean spirited competitors often take the ugly route of flagging down the ads and mark them as spam and the moderators remove the ads within hrs of it being published. Therefore all efforts of using Craigslist as a marketing avenue are a waste.

Sounds familiar? If yes, ITSYS Solutions has now developed a software using which you could nullify the effect of your competitors and let your ads stay for longer. Just enter the URL’s of your posts and select the number of times you wish to flag the post. Our software will do the rest. Buy the Craigslist Flagging Blocker for only $200 and get an IP rotating tool with 1 year subscription worth $30 absolutely free.

Operating System Requirements: Windows XP Pro with SP3 and IE7.

Contact us now with your requirement on the software and our team will be happy to assist you.

Please note that by using the software, we cannot gurantee that your ads will stay live 100% on Craigslist. There are many other reasons because of which ads are removed and are beyond the control of the application.

Tags:, , , ,

How to add browsing capabilities in your VB/VB.NET application?

Create a new Visual Basic project. Go to “Project” on the top menu, and choose “Components” or click CTRL-T, then check “Microsoft html object library” and “Microsoft internet controls” and “Microsoft Windows common Controls 5.0″.

You will see that new objects are appearing in the Toolbox. From the Toolbox, add the WebBrowser component (looks like an earth ) to your form and make its size as you want, (its name is WebBrowser1 in this tutorial).

From the Toolbox, add a TextBox and a Button. Neatly position both above WebBrowser1.

Double-click on the button and add the following code:

If TextBox1.Text = “” Then
 WebBrowser1.Navigate(”www.google.com“)
Else
 WebBrowser1.Navigate(TextBox1.Text)
End If

You have a embedded a browser in your application.!!!

Convert a String to a Number (Integer)

Use the Val function to convert a string to a decimal number. The Val function is not locale aware, so it will not recognize comma decimal separators in countries where this is used, such as “1,000,000″.

Dim v As Integer

v = Val(”10 SomeText”)

Print v   ‘ prints 10

v = Val(”No Number in string”)

Print v  ‘ Could not convert, prints 0

Tags:

Open new window with submit button

Sometimes you may need to open a new window when the SUBMIT button is clicked on a form. Here’s the trick for it.

With any form that you add to your site just do this…

<form target=”_blank”>


</form>

When the submit button is hit it will open in a new window.

Tags: