Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: paulcy82
  • Order by date
  1. paulcy82

    Fedora 2 install error, says not enough HDD space

    I have written zeros to the HDD again using Maxtor utilities. I have run DFT on the drive and the drive passes. I have verified that the disc is good. I have even downloaded and burned a new one. I have tried different HDD's. I then tried to manually create partitions again using disk...
  2. paulcy82

    Fedora 2 install error, says not enough HDD space

    I used a disk wipe program and wiped the entire HDD, I tried to auto and manually set up my partitions and I still get the same error
  3. paulcy82

    Fedora 2 install error, says not enough HDD space

    I ran the install again and I got the same error, When the screen says 'Transfering install image to hard drive....' this gets only half way and errors out saying that I do not have enough HDD space. The drive is not a SATA drive it is a standard ATA drive. Fedora wants to configure my boot...
  4. paulcy82

    Fedora 2 install error, says not enough HDD space

    I do not see the fdisk option, when I boot from the CD I ran the rescue mode. This did some checks and some other things. I am trying the install again and will post with my results
  5. paulcy82

    Fedora 2 install error, says not enough HDD space

    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...
  6. paulcy82

    Passing combobox selection to another form

    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...
  7. paulcy82

    Split one string into many

    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...
  8. paulcy82

    Month Calendar class question

    selectionStart works, but am I going to have a problem with this because this is for use with a range of dates? I only want one date selected. I ran the program and I do not see any problems, when I select a date my variable is set to that date. Just want to make sure.
  9. paulcy82

    Month Calendar class question

    It says that a value of that type cannot be converted to a date. Dim curDate as Date curDate = MthCal.selectionRange
  10. paulcy82

    Month Calendar class question

    Under the toolbox it is called MonthCalendar. That is where I got it from. There is also a DateTimePicker.
  11. paulcy82

    Month Calendar class question

    None of those choices exist that I can see
  12. paulcy82

    Month Calendar class question

    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...
  13. paulcy82

    Insert data into an Access DB using VB.NET.

    I got so wrapped up in it working that I forgot to ask, is there an easier way to do this, one without all the ' and "?
  14. paulcy82

    Insert data into an Access DB using VB.NET.

    THANK YOU Korach, that is exactly what was wrong.
  15. paulcy82

    Insert data into an Access DB using VB.NET.

    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 =...
  16. paulcy82

    Displaying a date in a certain format

    thank you for the help, I have an add on question to this now. I want to display yesterdays date. I have the following code that diplays todays date in the format that I need. How can I alter this to display yesterdays date in the same format. Date.Now.ToString("yyyy-MM-dd")
  17. paulcy82

    Displaying a date in a certain format

    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)
  18. paulcy82

    How to change label on form in a different class in the same project

    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...
  19. paulcy82

    Code a count down on a form

    Thank you Jubble for the example, I used your code and I ended up with the following Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Timer1.Enabled = False Dim l_oCurrentTime As Date = Now Dim...
  20. paulcy82

    Automatically save from a URL

    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.

Part and Inventory Search

Back
Top