Hello,
I am trying to install Fedora care 2 on a 700mhz AMD, 192mb RAM, 40GB HDD computer. This computer had Fedora running on it once before so I know this should work. I start the install process and when it asks me what kind of a installation type I choose custom, because I will like to...
i have several forms in my project. On the first form, called form1, I want the user to choose a car using a combobox called cbAuto. I then need to pass the selected car to another form, called fNewAuto. I have tried the following:
Dim f1 As New Form1
Dim car As String...
I have a form that asks the user to use a combo box and pick there name. If the user picks 'Jon Smith' I want to store this into two different variables. EX: firstName = Jon and lastName = Smith. I think conceptually I know how to do this, parse through the string and when you find a space...
I want to set a variable equal to whatever the user clicks on the calendar. I have looked through the methods and properties and I cannot seem to find what I am looking for. Below is the code that I want to execute when the user clicks a date.
Private Sub MonthCalendar1_DateChanged(ByVal...
I am trying to insert a new row of data into an Access database. Here is what I am using:
Dim fNm As String
Dim lNm As String
Dim rowsAffected As Integer
fNm = Me.tbFirstNm.Text()
lNm = Me.tblastNm.Text()
Dim cnString As String =...
I need a variable that stores just a date and not the time. I also need the date to be stored in a certain format, YYYY-MM-DD, 2005-01-10. I have looked at the following:
Dim d As Date
Debug.Write(d.Today)
Debug.Write(d.Now)
Debug.Write(d.Date)
I have one proj with 5 class. I want to change a label at runtime in one of the classes that the form is not declared in. I cannot use ME, and I have tried DirectCast(Form.ActiveForm, Form1).lblRpt.Text = "Opening CO Report". I know that I could declare a new instance of the class that the...
I have a form that when I click a button on the form, I use shell to open IE and go to a link that prompts me to save a zip file. I want this to be automatic. I want to click the button and the file will be automatically saved to a directory that I specify in my code.
I need help coding a count down on a form. I want it to count down from 5 minutes. I have a timer on my form that is enabled on load and runs a function which tests a SQL statement. If this statement is true I print reports, if it is false, I want a count down of 5 minutes to be displayed on...
What I want is a VB.NET app that will open my report and then the report calls some SQL and generates the fields that I need. Once these fields are visible in Crystals Field Explorer, I want my VB.NET app to place these fields on the details section of my report. I need the fields next to each...
I have two Classes in my proj and I am trying to call a funct in Class2 from Class1's Form1_Load. How can I do this, below is a sample of my code.
Public Class1
Inherits System.Windows.Forms.Form
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
I have one proj, one class, and 3 modules. I have the form delcared in the class and I want to change a label at runtime in one of the modules. I cannot use ME. So how can I do this?
I need to know how to dynamically place my fields on my report at runtime. So when I run my VB.NET project, my form will open and run some SQL, create the Crystal Report and the fields that I want will be placed in my report. For example, if my table contains units, rev, and cost I want these...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.