Jump to content
Xtreme .Net Talk

daves1

Members
  • Posts

    11
  • Joined

  • Last visited

daves1's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I will get that book. Thanks for the help!!! I still want to use VB.net to automate software installs....
  2. Thank you so much. Can you tell me how to tell if a certain window is up, so I can send the keystrokes to that particular window?? Thanks again.
  3. Do you mean the search in the VB.net help library, or where should I search. thanks much
  4. Here at work, we are trying to automate software installations. We presently use Winbatch, but I want to use Visual Basic.net. I just took my first course in VB.net and I really like it. Can someone help me figure out how to send key strokes or send messages to screens that have input focus? This would enable me to automate some software installs that we received from vendors. Then we would not have to install them one at a time by hand. thanks in advance for your help.
  5. May I have some help with this process? I am trying to do the same thing here at work. I need to automate many software installations, but we have been using Winbatch, and I want to use Visual Basic instead. I know Visual Basic can handle it. I am encouraged by your comments. Can I see your sample code? Please help. thanks much
  6. How can I redistribute the framework with the exe I am creating? I want to install the framework right before I run my exe. Thanks.
  7. wow you are a genius. you are the only person who could figure this out. i have asked about 10 people about this, even the professor. it works great now. thank you so much.
  8. i copy the entire folder to the inetpub/wwwroot and then i execute the WebForm1.aspx file when i do that, i just can see the hello world text, but not the button
  9. here is the code, it is right out of the book, and i still cannot view it with my web browser. I get this error. Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. Source Error: Line 23: "Forms", "Passport" and "None" Line 24: --> Line 25: <authentication mode="Windows" /> Line 26: Line 27: Source File: c:\inetpub\wwwroot\Ch09WebHello\web.config Line: 25 -------------------------------------------------------------------------------- Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573 ---------------------------------------------------------------------------- **********HERE IS THE CODE************************* 'Description: Display the user name concatenated to a label. ' This is the step-by-step program for creating ' Web Forms. Public Class WebForm1 Inherits System.Web.UI.Page Protected WithEvents txtName As System.Web.UI.WebControls.TextBox Protected WithEvents btnSubmit As System.Web.UI.WebControls.Button Protected WithEvents lblMessage As System.Web.UI.WebControls.Label #Region " Web Form Designer Generated Code " 'This call is required by the Web Form Designer. <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here End Sub Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click 'Display the name in the label lblMessage.Text = "Hello " & txtName.Text End Sub End Class
  10. Hi, I am taking a Visual Basic.Net class and we have to build a webform. I can build the form in Visual Studio and I can see the web controls, but as soon as I try to view it in a browser, I can't see the web controls. I can only see the text, but no buttons or text boxes. The file has an aspx extension. Any ideas?? I am running Windows 2000 Professional as my OS. I installed IIS first and then installed Visual Studio. I have an inetpub folder and a wwwroot folder that is shared. Thanks for your help!!!
  11. Hi, I am taking a Visual Basic.Net class and we have to build a webform. I can build the form in Visual Studio and I can see the web controls, but as soon as I try to view it in a browser, I can't see the web controls. I can only see the text, but no buttons or text boxes. The file has an aspx extension. Any ideas?? I am running Windows 2000 Professional as my OS. I installed IIS first and then installed Visual Studio. I have an inetpub folder and a wwwroot folder that is shared. Thanks for your help!!!
×
×
  • Create New...