phoenix browser

Posted by Unknown , Thursday, September 2, 2010 12:33 AM

The phoeinx web tool was creaed  by s.balaji... in the year 2010 


phoenix is develped in .net fream woprk(vb.net)
it is user friendly,
the short cuts of the system is managed by this browser 
*The VLC player is implemented in this browser it is help for hearing songs forthe entertainment
*Windows paint is called by the browser helped to edit the pistures on other hand
*calculatoris implemented the browswer to comnvert the currency to rs rate
*online time management isimplemented in the browser to manage the time 
(to specify the time limt for the browsing) 
*online time is displayed in seconds to view the online surfing time to the user
*the simple mail accounting is used to the view the mail
*antivirus is present to scan your computer by using the  icons present in  browser 
 all the basic is compiled in my browser




----under construction---- 

apart from features

Posted by Unknown , Saturday, August 28, 2010 1:52 AM

Apart from all these features you can also search for jobs, play Games, book your tickets, find map for different places and many extensions and other applications. You can also save some web snippets and make a collection of your own.

I can say that Epic is a fast, easy to use, great looking, safe and social web browser with Indian feel and sense. It is really my new friend. I can only open Epic and do all my tasks here in only one program. I would like to suggest all of my readers to try Epic. I am really proud that an Indian Company developed such an amazing product. Congratulation to Hidden Reflex team for their hard work behind Epic. For more features and complete details please go to Epic website

epic browser

Posted by Unknown , Tuesday, August 24, 2010 1:41 AM

epic powered by mozilla


There arelots of Internet Browsers available , but  the Epic Browser is a bit different in the sense that it has been created specifically with Indians in mind.


The Epic India feature in Epic browser allows availing information related to India such as Regional, National and International news.
Epic India gives information about

1. Bollywood – Using the bollywood feature in Epic you can get all the information about your favorite bollywood actors.


2. Shopping –This will give you idea about latest offers in shops of India.


3. Local Events in India –These include exhibitions; programs or show in local places.


4. Videos –You can enjoy many videos using this feature.


5. Travel-This gives you information about tourist places in Indis.


6. Job Opportunities –Get information about latest jobs in your field using this feature.


7. Stock Market –Get all the information about stocks .


8.Cricket-Using this feature you can get latest cricket scores and updates.


it is the newest browser with the version of 1.1 (latest version)
Epic browser is the first ever Indian browser and the first product from the Indian software company Hidden Reflex. It is based on open source browser technology, Mozilla. So it is fast and reliable. It is available for download at Epic website and is completely free. It costs just a download of 10.6 MB and installs in just few minutes.

At the first look, I fell in love with Epic and surprised by its features. It has lots of features. Like Mozilla Firefox, it is easy to use and fast. If you have experience in using Mozilla then you can easily use Epic also. But Hidden Reflex has combined many small applications into the browser, which are really helpful. Here is the first look at the browser after installing it.

Epic Browser

In the lower right corner, you can see that there is a zoom tool to zoom the web pages you are viewing easily. On the left side of the browser you can find all the inbuilt applications.


Epic Features


There are lots of applications available in Epic. I think each application/ feature of Epic will require an entire article to describe properly. I have just installed it and exploring its features. Here are some features that I like most:


1. Epic India


Here you can find news items of all type. You can find English, Hindi, Cricket, Stock, Regional and even entertainment news. You can also view Live TV from few NDTV channels and also listen to online music from In.com. You can even play some news videos from different news channels.

Below is the screen shot of Live TV.

Epic TV


2. Epic Indic Text


Now write in your own language. You can write in many different regional languages like, Hindi, Bengali, Malayalam, Gujarati, Urdu, Nepali and many more. Save them or use them in other applications like MS Word, etc. It also provides facility to enter Indic texts in the text boxes that appear in the web pages. Here you can see my name in Hindi.

Epic Indic


3. Epic Write


Another most use full tool in Epic is Epic Write. It is a word processor like MS Word with many advanced features. I have prepared this article in Epic Write. Here is the screen shot of Epic Write.

Epic Write


4. Epic AntiVirus


The most unique feature of Epic is the inbuilt ESET antivirus, that makes it, the first AntiVirus Browser. You can scan your entire system or some files from Epic Browser using the antivirus program. It also provides real time protection while browsing internet.

Epic has also a phishing filter powered by WOT.


5. Epic My Computer


Browse all your drives, file and folder directly inside the browser. No need to open Windows Explorer. You can even view hidden files and create or delete files, copy and paste like in Windows Explorer. Below is the snapshot:

Epic MyComp


6. Epic Timer and alerts


Epic also features a timer and alert system for you. Set your alarm and epic will alert you about all your important tasks as an alarm clock. You also get a stopwatch.

Epic Alert


7. Epic Skins


You will never find such a huge collection of skins for any browser. There are lot of category for skins. I like all of them. You can find skins of Freedom Fighters, Political parties and leaders, Skins for all the states, religion and the list is endless. You can even set these skins as your desktop wallpaper or even create your own Custom Theme.

To view a skin you only need to point on that particular skin. No need to apply it. Skin collection is based Indian Society and Culture. I am astonished to find such a wonderful collection of skins.


8. Go Social


Epic contains in built applications for Orkut, Facebook and Twitter and application for GMail and Yahoo. So it is also a social web browser.


9. Epic Backup


Epic can backup all your important files to GMail. you only need to have a GMail id.


10. Epic Video


Create playlist for all your favorite videos and watch them while browsing.

my first web tool

Posted by Unknown , Sunday, August 1, 2010 2:32 AM

my first basic web tool 
which consists of  basic options  like
home
navigate
go
back
next
search
tools
stop 
refresh

phoenix

Posted by Unknown , Tuesday, June 8, 2010 2:27 PM

pheonix webtool is developed specially for the school childrens andsenior citizens to access the browse easier and simple manner

phoenix has a  shortcuts of all components  in the computer to accessthem easily
phoenix runs in a  IE tool  so it will be speeder as possible

phoenix has an  changeable back ground color (theme)
so  color of your wish can be changed.....

simple browser

Posted by Unknown , Friday, April 9, 2010 2:11 AM

This is the snap shot  simple webbrowser develped in vb with basic options

tabbed webbrowser in vb.net

Posted by Unknown , Sunday, April 4, 2010 4:04 PM

Public Class Form1

002    Dim URLString As String
003    Dim HomeURL As String = "www.bbc.com/football"
004    Dim i As Integer = 1
005 
006    'This is our own module that causes the browser to naviagate to the link selected elsewhere
007    Private Sub GoToURL(ByVal SelectedURL As String)
008        wbBrowser.Navigate(SelectedURL)
009        If (cbWebsite.FindStringExact(URLString) < 0) And (URLString <> Nothing) Then
010            'if not already in list - add this url to the combobox
011            cbWebsite.Items.Add(URLString)
012        End If
013    End Sub
014    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
015 
016    End Sub
017    Private Sub lblWebsite_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
018 
019    End Sub
020 
021    Private Sub btnWebsite_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click
022        If cbWebsite.SelectedItem = "" Then
023            URLString = cbWebsite.Text
024        Else
025            URLString = cbWebsite.SelectedItem
026        End If
027        GoToURL(URLString)
028    End Sub
029    Private Sub txtURL_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles cbWebsite.KeyDown
030        If e.KeyData = Keys.Enter Then  ' Instead of pressing GO, it will accept enter on the keyboard '
031            btnGo.PerformClick()
032            e.SuppressKeyPress = True
033        End If
034    End Sub
035 
036    Private Sub btnBack_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click
037        WbBrowser.GoBack()
038    End Sub
039 
040    Private Sub btnHome_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton5.Click
041        GoToURL(HomeURL)
042    End Sub
043 
044    Private Sub btnForward_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton2.Click
045        WbBrowser.GoForward()
046    End Sub
047 
048    Private Sub btnGoogle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GoogleToolStripMenuItem.Click
049        URLString = "http://www.google.co.uk/search?hl=en&q=" & tbSearch.Text
050        GoToURL(URLString)
051 
052    End Sub
053 
054    Private Sub btnMsn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MsnToolStripMenuItem.Click
055        URLString = "http://search.msn.co.uk/results.aspx?q=" & tbSearch.Text
056        GoToURL(URLString)
057 
058    End Sub
059 
060    Private Sub btnAskJeeves_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AskJeevesToolStripMenuItem.Click
061        URLString = "http://uk.ask.com/web?q=" & tbSearch.Text
062        GoToURL(URLString)
063 
064    End Sub
065 
066    Private Sub WbBrowser_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WbBrowser.DocumentCompleted
067        lblwebpage.Text = WbBrowser.Url.ToString
068 
069    End Sub
070 
071    Private Sub StatusStrip1_ItemClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ToolStripItemClickedEventArgs) Handles StatusStrip1.ItemClicked
072 
073    End Sub
074 
075    Private Sub WbBrowser_ProgressChanged(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WbBrowser.ProgressChanged
076        prgdownload.Value = (e.CurrentProgress / e.MaximumProgress) * 100
077 
078    End Sub
079 
080    Private Sub btnRefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton3.Click
081        WbBrowser.Refresh()
082    End Sub
083 
084    Private Sub btnStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton4.Click
085        WbBrowser.Stop()
086    End Sub
087 
088    Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
089        Dim Browse As New WebBrowser
090        TabControl1.TabPages.Add(1, "Page" & i)
091        TabControl1.SelectTab(1 - 1)
092        Browse.Name = "WbBrowser"
093        Browse.Dock = DockStyle.Fill
094        TabControl1.SelectedTab.Controls.Add(Browse)
095        i = i + 1
096    End Sub
097 
098    Private Sub btnRemove_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnRemove.Click
099        TabControl1.TabPages.RemoveAt(TabControl1.SelectedIndex)
100        TabControl1.SelectTab(TabControl1.TabPages.Count - 1)
101        i = i - 1
102    End Sub
103End Class