Jump to content

Computer-Pro

Member
  • Posts

    7
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About Computer-Pro

Computer-Pro's Achievements

0

Reputation

  1. Is there anyway to notify the user when their web server is being accessed? Thanks
  2. Hi I have tabbed browsing setup on a webrowser I made in VB. But Now I want to add a status bar label witch changes on BeforeNavigate2 and NavigateComplete2. I can't add the Handles clause to The Dim Browser. Here is my code: Public Class Form1 Dim NewTabPage As New TabPage Private Sub browser_NavigateComplete2(ByVal sender As Object, ByVal e As AxSHDocVw.DWebBrowserEvents2_NavigateComplete2Event) Handles browser.NavigateComplete2 For Each c As Control In TabControl1.SelectedTab.Controls Dim browser As AxSHDocVw.AxWebBrowser = TryCast(c, AxSHDocVw.AxWebBrowser) If browser IsNot Nothing Then ToolStripStatusLabel1.Text = "Done" ToolStripComboBox1.Text = NewBrowser.LocationURL.ToString NewTabPage.Text = browser.LocationName Exit For End If Next End Sub Private Sub AddTabToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddTabToolStripMenuItem.Click TabControl1.TabPages.Add(NewTabPage) NewTabPage.Controls.Add(New AxSHDocVw.AxWebBrowser) End Sub
  3. How do I connect to a proxy server in Network Conections In Win Xp Pro?
  4. I read that you have to have XP Pro. Then I got XP Pro and followed the instructions but the web app still says CHMOD site.dat to 777. So what do I do?
  5. Ok I will try it when I get home and let you know if it will work. I thought about doing it this way but didn't know if there was a faster way. Like an app that does the registry renaming for you. Thanks for your reply, Computer-Pro
  6. Is there a way to change the system folder? I accedentaly installed windows without formating the drive first. So windows was installed in "WINDOWS.0" I would like to change it to: "WINDOWS" How can I do that without causing problems? Thanks!
  7. Hi, What is the equivalent to *nix chmod 777 on Windows XP Pro running Apache? I am asking becuase a file needs to be chmoded to 777. Thanks!
×
×
  • Create New...