Search:

Type: Posts; User: FreeNoob

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    491

    VS 2010 Best way to show Articles?

    I have been programming in VB.net for a few years now and just started ASP.NET.

    I am looking for a way to get a article header and its body from a Database and add it as a sort of object to a...
  2. Replies
    0
    Views
    750

    VS 2010 Write Multiple Worksheets to Excel

    I have the following code which takes a DataSet and puts the information into excel and it works quite well.

    However I would like it to make a new worksheet for each table that is in the DataSet. ...
  3. Replies
    1
    Views
    381

    Copy Database function?

    I was just wondering if there is an easier way of uploading a local database (say Access) to a MySQL DB on a server than having to select all the records from a table in the local database then add...
  4. Replies
    4
    Views
    3,379

    VS 2010 Re: Line Graph with Chart Control

    Ah, gotcha, that makes sense.
  5. Replies
    4
    Views
    3,379

    VS 2010 Re: Line Graph with Chart Control

    Yea I saw the MSDN thing but all my searching (including that msdn) points to installing this http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/threads/

    but in the instructions it also...
  6. Replies
    4
    Views
    3,379

    VS 2010 Line Graph with Chart Control

    I am trying to make a line chart and from what I've read using the chart control is the best way to go about it, but I have no idea how to do that. Does anyone know of a good tutorial or something?
  7. Replies
    7
    Views
    1,066

    Re: Syntax help for attribute in list

    Thanks!
  8. Replies
    7
    Views
    1,066

    Re: Syntax help for attribute in list

    Yea cleaning up the code and having the shorter syntax is very useful as well, where do I learn more about the syntax up there? I'm not really sure what to search for to find that.
  9. Replies
    7
    Views
    1,066

    Re: Syntax help for attribute in list

    woops sorry I typed in VBForums in my browser clicked the first one and didnt look where it brought me, my bad.
  10. Replies
    7
    Views
    1,066

    Syntax help for attribute in list

    I have a list( of clsCourseList) which is a class that contains a boolean value "Scheduled"

    I want to return a boolean value if ANY of the items in the list of clsCourseList contain a "Scheduled"...
  11. VS 2010 [RESOLVED] ComboBox Selected Item Doesn't return Text

    nvmd
  12. Replies
    0
    Views
    296

    Help with Group By SQL

    I have the following columns in a table"

    gameDate, gamePosition, gameScore, gameNumber, bowlerID

    I need to find the Average of the gameScore for the combined doubles game.

    I am looking for...
  13. VS 2010 Re: Cannot get listView Items to show

    Never mind! I got it, I created a new form, and instead of referencing that form (afrmGameHistory) I was just referencing the base form itself frmGameHistory
  14. VS 2010 [RESOLVED] Cannot get listView Items to show

    I've used the same method to add items to a listview before but for some reason they're not showing, I even just tried a test:



    Dim row As New ListViewItem
    row.Text =...
  15. Replies
    14
    Views
    1,333

    VS 2010 Re: "Database Currently Locked"

    hahahaha wow, thanks, I just copied and then changed the input, I didn't get much sleep last night
  16. Replies
    14
    Views
    1,333

    VS 2010 Re: "Database Currently Locked"

    I keep getting the error:

    "Error: Failed to convert parameter value from a String to Int32"

    But I matched up all the datatypes twice, both in my object and DB


    Dim dbConnection As...
  17. Replies
    14
    Views
    1,333

    VS 2010 Re: "Database Currently Locked"

    ah gotcha, I thought it was just the same as 'With' - 'End With'
  18. Replies
    14
    Views
    1,333

    VS 2010 Re: "Database Currently Locked"

    it was just dbConnection.close essentially, I just put it in the module where I keep my connection string




    can you explain this a bit more? what closes it automatically?
  19. Replies
    14
    Views
    1,333

    VS 2010 Re: "Database Currently Locked"

    or last step of your function

    dbConnection.Close()
    [/QUOTE]

    I added that last night after I realized I forgot it, didn't help :-(


    Dim intResults As Integer = 0
    Using...
  20. Replies
    14
    Views
    1,333

    VS 2010 [RESOLVED] "Database Currently Locked"

    I am making an application that adds around 20 records to the database at one time. I've never really added this many (in a for loop) that quickly usually its one at a time. I get the error that...
  21. Re: New Bitmap(filename) not working?

    Maybe something like this:


    Image = DirectCast(Bitmap.FromFile(ImagePath), Bitmap)
  22. Replies
    4
    Views
    6,148

    VS 2010 Re: Datagridview column selecting

    Try clicking the smart tab on the DataGridView (looks like a 'Play' sideways triangle). In there are options to enable or disable Adding/Editing/Deleting, try disabling them and see if that is what...
  23. Replies
    5
    Views
    906

    VS 2010 Re: Add items to ListView *not* by row?

    not really because we aren't adding a row at a time, we are adding one cell. I suppose that we could store the results then format them into rows and such but that's too much effort lol
  24. Replies
    5
    Views
    906

    VS 2010 Re: Add items to ListView *not* by row?

    thought so...well there goes the easy way. I'll just make it myself with invisible list boxes and such
  25. Replies
    5
    Views
    906

    VS 2010 Add items to ListView *not* by row?

    The only way I know how to put an item in a list view is to make a new item, which is the first column, then add a sub item for the columns after that and the item is placed in the row.

    For this...
  26. Thread: Unsure

    by FreeNoob
    Replies
    5
    Views
    736

    VS 2010 Re: Unsure

    Fershizzle homes:cool:
  27. VS 2010 Re: Matching Date in Access with date.ToShortDateString

    hm thanks, that worked. I usually use the parameters for everything except the view's. I usually pass in the object then do the object property appended. I was just trying to write a quick test...
  28. VS 2010 Matching Date in Access with date.ToShortDateString

    I have the following SQL string

    strSQLString = "SELECT MatchID FROM tblMatch WHERE MatchDate = " & aDate.ToShortDateString.ToString

    which gives me the following string:
    "SELECT MatchID FROM...
  29. Thread: Unsure

    by FreeNoob
    Replies
    5
    Views
    736

    VS 2010 Re: Unsure

    Totally just had to Urban dictionary "Brill" lol. Hi England ^.^ :wave:
  30. Replies
    10
    Views
    1,271

    VS 2010 Re: Design vs programatically

    We use Murach's ADO.NET 4 its a pretty good book
  31. Replies
    7
    Views
    934

    VS 2005 Re: Probleam with combo box boud to database

    Oh yea that works too, but if you make just a new binding context you dont have to make all new data sources and all that. That and the way I did mine in a loop I only had to add that one line of...
  32. Replies
    7
    Views
    934

    VS 2005 Re: Probleam with combo box boud to database

    Oh I had this problem too, you need to define a new bindingcontext for each combo box, you can use the same data source, just do a


    CboBox.BindingContext = New BindingContext()

    for EACH box...
  33. Replies
    7
    Views
    842

    VS 2010 Re: Lists are Linked, but shouldn't be

    Lol that was quite informative, I got a little 0.o on the end but I'm also in class listening and reading, thanks for the explanation!
  34. Replies
    7
    Views
    842

    VS 2010 Re: Lists are Linked, but shouldn't be

    OH! okay, that makes sense. So if I make NEW objects to store in a NEW list and put the values I want into the NEW objects, then they won't be linked.

    Although that sounds like not the most...
  35. Replies
    7
    Views
    842

    VS 2010 Re: Lists are Linked, but shouldn't be

    but why when I make two different objects of list of classes, and just put the values of one into the other, does it still point to the same list.
  36. Replies
    7
    Views
    842

    VS 2010 Lists are Linked, but shouldn't be

    I have the following function that combines objects based on their gameScore attribute


    Public Shared Function CalculateSeries(ByVal List As List(Of clsGame)) As List(Of clsGame)
    Try...
  37. Replies
    2
    Views
    529

    VS 2010 Re: Proper Data Container for this info

    Oh yea I didn't really mean read the file twice but like work with that one conflict, traverse the list of classes and then store it twice. I felt that storing one object conflict and finding them...
  38. Replies
    2
    Views
    529

    VS 2010 Proper Data Container for this info

    I am reading in values from a .csv and I'm trying to think of the best way to store the data (not in a DB but just for the one time use)

    I have a list of course objects that have the Course number...
  39. VS 2010 Re: Spontaneous Attribute Value Change

    wow...I need to sleep, programming for the whole weekend has made my eyes play tricks on me.
    I had it returning the opponents score instead of the score


    Public Property GameScore() As...
  40. VS 2010 [RESOLVED] Spontaneous Attribute Value Change

    I have a userControl that I made, and it was placed on a form with other controls.

    On the form I pass the values from the other controls to a Function inside the userControl, this then takes the...
Results 1 to 40 of 92
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width