Jump to content
Xtreme .Net Talk

coolcurrent4u

Members
  • Posts

    3
  • Joined

  • Last visited

About coolcurrent4u

  • Birthday 01/01/1970

coolcurrent4u's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. it freeze the GUI, but it returns the string i thought async is not suppose to freeze the GUI?
  2. i have this code, with only one url at first, which seems to freeze the UI for about a minutes. i wanted to get the web page html faster asynchronously, but this is not working for me Is the httpwebrequest faster? Private Sub Test(ByVal sender As Object, ByVal e As DownloadStringCompletedEventArgs) Dim newstring As String = e.Result.ToString listBox1.Items.Add ("Finished" & e.UserState.ToString) End Sub Sub Button1Click(sender As Object, e As EventArgs) for each item as String in textbox1.Lines Dim SiteURI As New Uri(item) Dim wc As New WebClient wc.DownloadStringAsync(SiteURI) AddHandler wc.DownloadStringCompleted, AddressOf Test next End Sub
  3. Hello, i need to package and deploy sql server express r2 with visual studio installer 2010, and execute a database create script at the end of the installation. I am deploying a client and server version of my application, i will present a dialog "choose which app to install, client or server".if the use choose server, then install sql server, if client then skip sql server installation. the first issue is, i have been able to create a bootstrap for sql server r2 and create the installer dll that will execute the database create file, but i get an error shown in the image. the second issue is that how do i let the user choose weather to install sql server or not in the deployment process. thanks
×
×
  • Create New...