Search results for query: *

  1. Runescope

    Question Use Accounting format in Datagridview

    Hi! Just curious if anyone knows if it's possible to format numbers in the DataGridView so they look like the Accounting format in Excel. This is different from the Currency format (which I know how to do). for example: $5000.00 $3000.00 $2500.50 _$100.00 That is currency formatting, the...
  2. Runescope

    Resolved Using Alpha Vantage API

    Thanks for all of that! I was getting there myself after working with it for a while, but I like the way you do things!
  3. Runescope

    Resolved Using Alpha Vantage API

    Okay, so I've been working on this for a bit and I've got something sort of working. It's a place to start if others are in the same boat. There's nothing to add to .net, it's all web response. Here's the code I'm using. Imports System.IO Imports System.Net Public Class frmMain Private...
  4. Runescope

    Resolved Using Alpha Vantage API

    I was curious if anyone has ever used the Alpha Vantage free stock feed API in VB.Net. I've looked at several pages, but my knowledge of installing third-party ... things into VB is dismal at best. Sorry I can't be more specific about what I want. I know so little, I don't know how to...
  5. Runescope

    Question Putting multiple texts into an image.

    I'm not sure what you mean, could you give an example?
  6. Runescope

    Question Putting multiple texts into an image.

    D'Oh! See, I told you it was something basic. Must be the lack of sleep. I changed the line in the Mousedown event from: Dim img As New Bitmap(picGrid.Width, picGrid.Height) To: Dim img As New Bitmap(picGrid.Image, picGrid.Width, picGrid.Height) Thanks.
  7. Runescope

    Question Putting multiple texts into an image.

    What I have is a couple hundred patterns that I want to paste or insert or what have you onto a picturebox at a particular spot. I can get the pattern to show up where I click with no problem. What I can't do though is get more than one pattern to show up in the picturebox. Every time I click...
  8. Runescope

    Question DataGridView padding still there even though it's set to zero

    You know, if anyone has a better (or even comparable) idea on how to layout a grid that can be easily adjusted by the user and then filled with an image or text, I am more than happy to hear it. I'm getting nowhere with this.
  9. Runescope

    Question DataGridView padding still there even though it's set to zero

    Ugh right, sorry. Didn't even think of that. It's straight text from a font I have of different shapes. They pick the pattern they want, it goes into the text of a label then they click on a cell in the datagridview which places the text into the cell. It's a simple app, I've tried to keep...
  10. Runescope

    Question DataGridView padding still there even though it's set to zero

    Greepings, I've been banging my head on this for a few hours now and I can't seem to figure out a way to get around it. I've got a datagridview setup with lots of empty columns and rows. The user clicks into a cell to fill it with a pattern they've picked. I want the patter to go right to...
  11. Runescope

    Resolved Pick from DataGridView ComboBox with Pre-Filled Collection

    Okay. so I figured this out. Here is the updated code: Public Sub FillMeetingMembers() Dim MListRowVals(6) As Object Dim MGID, MemberName As String Dim cbCol As DataGridViewComboBoxCell grdRoleCall.Rows.Clear() For idx As Integer = 0 To...
  12. Runescope

    Resolved Pick from DataGridView ComboBox with Pre-Filled Collection

    Sorry if this is going to sound snarky, but I've been frustrated with this for a couple of days now. I know WHAT I want to do, I don't know HOW to do it. People have suggested theory, but no practical help. I've googled the heck out of it and can't find anything.
  13. Runescope

    Resolved Pick from DataGridView ComboBox with Pre-Filled Collection

    Yeah, I figured that out after a few minutes. But I'm still left with the problem of How?
  14. Runescope

    Resolved Pick from DataGridView ComboBox with Pre-Filled Collection

    I've changed it to this, Public Sub FillMeetingMembers() Dim MListRowVals(6) As Object Dim MGID, MemberName As String Dim cbCol As New DataGridViewComboBoxColumn ' <- Added this line grdRoleCall.Rows.Clear() For idx As Integer = 0 To...
  15. Runescope

    Resolved Pick from DataGridView ComboBox with Pre-Filled Collection

    So I have a DataGridView control, it has a few columns, one column is a DataGridViewComboBoxColumn. I have pre-filled it through it's own Items collection with the numbers 0 to 9. I want to pick one of the numbers as a default when the program loads, how do I select it's index? Here's the...
  16. Runescope

    Question How to do a perspective graph

    Thanks for that input, but that wasn't it. :( You can't have negative values in a logarithmic chart and stocks and mutual funds DEFINITELY go into the negative. lol But it was a good idea!
  17. Runescope

    Question How to do a perspective graph

    So I want to do a perspective graph, but when I google it, all I get is information on how to do 3D. Now, what I call a perspective graph might be known as something else so here is an example of what I call a perspective graph. The distance between 1 and 10 is the same as 10 and 100 and...
  18. Runescope

    Question Concurrency Violation. Can't force an edit into the database.

    Hey! Sorry for the delay in getting back to this, I had to take my annual vacation. :) To be completely honest, your way (and microsoft's) seems hopelessly and needlessly complicated. So many things that have to be added and linked. It's definitely NOT simple, even though I'm sure that it...
  19. Runescope

    Question Concurrency Violation. Can't force an edit into the database.

    That's ... not ... editing the rows. Lemme explain. :) This table has 5 fields. (There are two other tables, but if I can get this one working, the other two will be easy to change) FID - The unique Autonumber assigned by the database upon creation of a row, used as a Key. FCode - The unique...
  20. Runescope

    Question Concurrency Violation. Can't force an edit into the database.

    That's quite a lengthy explanation! But your code example only shows adding new rows. I don't have a problem adding rows, just editing rows that are already there. But I think your suggestion of the conflict option is what I'm looking for. I'll dig more into it when I'm more awake ... and at...
Back
Top