Search results for query: *

  • Users: grags
  • Order by date
  1. G

    Question Finding a "library"?

    The project I've been working on. So far has took me around 3 months. 2 months before I even touched the programming side of things. I've put a time-scale of around 6 more months on the project. if I were to research everything in your comments / blog and try to understand it then it'd be a...
  2. G

    Question Finding a "library"?

    I followed your blog. Tried to find your post on Assemblies & Namespaces... Failed. Tried to read some of the stuff you'd wrote in hope for some indication on how to find what I was looking for... Failed. I don't understand all this Jargon. I don't even want to understand the Jargon. I just...
  3. G

    Question Finding a "library"?

    Thank you. I've already spent an hour trying to figure out how to import it :)
  4. G

    Question Finding a "library"?

    I am indeed who you think I am. That's assuming you are who I think you are ;) Thank you for a descriptive reply. I'm going to be totally honest with you. I only understand about 30% of what you said (Though I read it a few times). Yes it might seem easy to some, but to me it just is not...
  5. G

    Question Finding a "library"?

    Hi, I've been looking all over the internet for what I think is called a Library. What I'm after is an extension to the RichTextBox in Visual Studio 2013 (VB). I don't know much about this sort of thing. But I heard these "libraries" provide more functions ? Everything I have found so far is...
  6. G

    Colour problems

    Private Sub mnuSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuSave.Click If Sav.ShowDialog <> Windows.Forms.DialogResult.OK Then Exit Sub End If FileOpen(1, Sav.FileName, OpenMode.Output) For Z = 1 To 10...
  7. G

    Colour problems

    Thank you very much I can probably work with that :) I have no idea what you just said :numbness: Thank you I have seen that argb thing somewhere I can probably work it out :) Thanks for the help.
  8. G

    Colour problems

    Firstly I've been programming the basic language on and off pretty much all my life, from the Commodore 64 (My pride and joy!) to Qbasic and finally .net. But I'm totally useless at .net. So the questions are probably very rookie :) I'm also terrible at explaining things but I'll give it my...
  9. G

    Reading a label as Time

    JohnH I could kiss ya! Thankyou sooooooooooooo much:D:D:D:D:D:D:D
  10. G

    Reading a label as Time

    I appreciate your trying to help, but I just don't undertsand? It's bugging the life out of me. I've tried everything, and your comment doesn't make any sense to me. As much as i've read it over and over to try to gain some understanding it's just not clear to me. I understand what im asking...
  11. G

    Reading a label as Time

    Thankyou for your reply. The information is downloaded from a HTML table(in a huge string manipulation program) as a string and then stored. Even when i'm inputing the data they're still inputed as strings, so I still have the same problem. The huge string manipulation program. Dim...
  12. G

    Reading a label as Time

    Hi, can someone PLEASE!! tell me how I can add up the times stored in them labels. I've tried everything, i've spent all day on it searching high and low all over the internet for some sort of code that can read the labels as time and then total it all up. The labels are stored into a class...
  13. G

    Downloading a web page and saving it as .txt

    Ok this is my code so far... gfPath is a Global Function that returns the application path. cvsEliteMembers(1000) is a Class String Array. Dim web As New Net.WebClient Dim lviT, lviJ, lviD, lviY, lviX As Integer Dim strLevel, strName As String Dim lvbOK...
  14. G

    Downloading a web page and saving it as .txt

    Thankyou. i'm kinda new to this .net stuff. I'm used to doing everything myself when I used to use old Basic on the Commodore 64 and QBasic which I used for a number of years, Mainly just for fun. I have written a few short programs in VB.Net but I find I'm doing things the long way round when...
  15. G

    Downloading a web page and saving it as .txt

    Hi, title says it all really. Can someone please tell me how I connect to a webpage and download the HTML and save it as a .txt. I need to download information from a table. But I wouldn't know where to begin doing it properly:confused:. So i'm going to try and filter through the html with a...
  16. G

    Getting info from a website table?

    (http://www.the-elite.net/GE/stage10.htm) What im after is grabbing the names and values from the above site. I did write a program that visits the site and saves the html to a .txt file, it then filtered through the .txt file for all the values. Worked a treat all tho in the back of my mind...
  17. G

    Adding time to time

    Thankyou! It works a treat.
  18. G

    Adding time to time

    Thanks for you reply I appreciate the fact that your trying to help me. But I Tried your code and it gives this error Operator + is not defined for types 'system.timespan' and 'system.timespan'
  19. G

    Adding time to time

    Thanks for your reply but it just aint working here's my code. Dim lviY As Integer Dim lvdT As New DateTime("hh:mm:ss") 'I think this is wrong For lviY = 1 To 20 lvdT.AddMinutes(CDate(lblTimes(1, lviY).Text)) 'Expects somthing else here lvdT.AddSeconds(CDate(lblTimes(1, lviY).Text)) 'Expects...
  20. G

    Adding time to time

    Ok this is probably one of the most noobiest questions ever. But i've been at it for hours and not been able to figure it out? How do you add time to time? Example: 0:54 + 0:06 = 1:00 Example2: Time = cdate(string(1)) + cdate(string(2)) I know the answer is probably the easiest ever, but...
Back
Top