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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CraigBest

  1. CraigBest

    create report with many small pages on one page?

    Wondering if someone can help me. I want to create a report that prints out what are essentially tickets (2" x 3.5") on pre-scored business card sheets, 10 to a page, 5 rows in 2 columns. Each ticket is unique and has different data that gets printed on it, so it's not as simple as just making...
  2. CraigBest

    Copy table data from one Access DB to another

    Hi JE Well, the complete DB is about 16-20 mb, and that seems like a lot to make a copy of every time a new session gets created. Then again these days that's a drop in the bucket in terms of storage memory, isn't it? I did find a reference as follows: INSERT INTO <tablename1> SELECT *...
  3. CraigBest

    Having trouble with MS Report Viewer

    Hi folks Got a bit of a head-banger going here. I'm trying to use the Microsoft Report Viewer control and an RDLC report to show some data from my project. But I'm having some trouble trying to get it to work the way I want it to (and how I think it should). Here's what I've got: I created...
  4. CraigBest

    Copy table data from one Access DB to another

    Hi Folks I have an Access database I'm using for my application that contains about 15 tables, mostly fairly static data. But three tables are fairly dynamic and contain data that will change from one 'session' to the next. I plan to create a separate 'Session' access DB that I can copy and...
  5. CraigBest

    Test value in DataGridView column / Cell and change color if invalid?

    Thanks so much Guys, you both really helped. This is what I finally did to make it work, and it's working really well. Joe, the list is about 12,000 entries long but it only adds about a half-second to the return of the grid data, probably because I figured out how to so a search against a...
  6. CraigBest

    Test value in DataGridView column / Cell and change color if invalid?

    Hi Folks, Merry Xmas! Was hoping someone could help me out here. I have a DataGridView control in my project and in it, one column that I'd like to check the value of against a group of data to see if the value matches one of the items in that group. If it does, I'd like it to display...
  7. CraigBest

    Need some advice for reporting...

    Hi folks, I could use a recommendation. I'm writing an application in VB.net 2008 that I would like to distribute someday soon. I'm trying to make it as independent as I can so other software pre-requisites don't affect who can use it. For instance, I have some specialized reporting I need...
  8. CraigBest

    Operate Combo box control programmatically?

    I may be barking up the wrong tree here and this might not be possible, but if you don't ask you might never know. I have a page on my app (VB.NET 2008) that has a group of four combo boxes designed to allow the user to drill down and select more and more granular data until in the last box...
  9. CraigBest

    Loading DataGridViewComboBoxColumn

    Glad you finally figured it out, Joe! CraigHartz
  10. CraigBest

    DataGridView - adding values to drop-down list cell?

    Thanks Joe - I'll have a close look at it when I get a chance! CraigHartz
  11. CraigBest

    DataGridView - adding values to drop-down list cell?

    Hi SoonerJoe OK Well I finally figured out a solution from one of the how-tos on the net. I created the DGVComboBoxColumns just as we discussed, but instead of trying to assign them to the dolumn of the DataGridView, I used the Insert method of the DataViewGrid to force them into it. At least...
  12. CraigBest

    DataGridView - adding values to drop-down list cell?

    Yeah so here's the thing - If I don't use the New keyword when defining the object I can do the assignment, but when I go to run the program I get an error stating that the DGVComboBoxColumn is not a valid object. If I do use the new keyword it creates the object, but won't allow me to do the...
  13. CraigBest

    DataGridView - adding values to drop-down list cell?

    OK SoonerJoe, thanks. I dug a bit more and setting the columns in the grid to readonly = false now allows them to be clicked and upen up - but there's no data. I looked further and realized that while I have defined the DataGridViewComboBoxCoulmns and anm able to load them with data, I can't...
  14. CraigBest

    DataGridView - adding values to drop-down list cell?

    Thanks SoonerJoe - that was really straightforward and simple to understand, and it looks like it works perfectly. Couldn't fins anything that clear in hours of casting across the net. I have one other issue which is still stymieing me - when I run the program it seems like everything is...
  15. CraigBest

    DataGridView - adding values to drop-down list cell?

    Hope someone can help, this is really kicking my butt. I have a DataGridView I'm displaying in my VB.NET 2008 application. I'm not having any problem displaying data from the datatable being used as a datasource, but I do have a column in the grid that is supposed to be a drop-down listbox...

Part and Inventory Search

Back
Top