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 SkipVought 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: *

  1. geedubcpa

    Can't save custom reports, custom reports missing after restore

    Has anyone found a solution for this problem? I have the same problem.
  2. geedubcpa

    vb.net 2005 and logistics suite or componet one

    I am considering upgrading to vb.net 2005 and also purchasing an add on componet such as logistics or componet one. I need a good datagrid, textboxes, and ect for easier deployment. Any ideas pro or con on this?
  3. geedubcpa

    How do I test for increments of 1

    I have a report that list all the tickets in numerical order for a month. How can i test to see if each number is one more than the previous number on the report. Row 1 = 2500 if row 2 = 2501 ok if row 2 = 2503 then i have a problem Thanks for any ideas.
  4. geedubcpa

    VS vs. VB 2003

    Yes the standalone version of crystal reports will work with vb.net standard. I believe you need the developer version.
  5. geedubcpa

    How do you intercept a vb.net message

    If i get an error generated by vb.net, How do i capture it, hide it, and give my own message box with options. Lets say " you have a concurrency violation error" or any other error. How do i capture that with my code, and then give my own options? Thanks in advance
  6. geedubcpa

    Using Datagrid and Dataview - hiding columns

    I am answering my own question on this. When you have a dataview as the datasource for a datagrid, you have to go to the code for the datagrid.tablestyles and write your code in there. It will not allow you to do it visually via the wizard, but it works fine at the coding level. The...
  7. geedubcpa

    Format data in dataset

    Is it possible to format the data at the dataset level. For instance formatting the date as short at the datset level and not having to format it at the textbox.text level. If you have any sample code that does this, it would be appreciated. Thanks
  8. geedubcpa

    Using Datagrid and Dataview - hiding columns

    I am unable to figure out how to hide columns when i use a datagrid and dataview together. Any ideas on this?
  9. geedubcpa

    Avery labels and crystal reports

    Thanks I never even noticed until now.
  10. geedubcpa

    Avery labels and crystal reports

    I havent seen this, but i will ask anyhow. I can use word to create labels that fit avery labels. Is there anything in crystal similar to word that allows me to do this via a wizard? Or is this something i must do manually? Using crystal reports version 10.00 Thanks in advance for your help.
  11. geedubcpa

    Unrecoverable Build Error

    Just a thought, but could you try copying the project to another computer with vb.2005, then trying to see if you get the same results.
  12. geedubcpa

    Confusing combo box problems

    My combo boxes intially load on form load. That way its always loaded when the form loads. You could place the same code in the selected index as a way to reload.
  13. geedubcpa

    Selection Criteria for Crystal Reports

    I have a crystal report question in regards to passing a date from a textbox on my form to the crystal report. I want the report to select the date in my textbox1 as the selected date on the report. Can anyone point me in the proper direction.
  14. geedubcpa

    Confusing combo box problems

    Is your code for populating the combobox in the click event?
  15. geedubcpa

    Detect location on a DATAGRID

    Thanks Thats a great link - answers a lot of questions. I ended up using mousemove to detect movement on the datagrid, and followed up with my save coding.
  16. geedubcpa

    Detect location on a DATAGRID

    I wonder how do i know the cell/row that i am on in a datagrid. As each cell/row changes i want to add some code warning if a "save to data" is needed. Thanks in advance for your help
  17. geedubcpa

    Form2 Closes - how to notify form1 event

    Thanks for the response - I will try. I was able to come up to a solution on my own by doing research. Here is what i found and am using. Just show Form2 using ShowDialog() instead of Show(): Private Sub Button1_Click(...) Handles Button1.Click Dim f2 As New Form2 f2.ShowDialog()...
  18. geedubcpa

    Quick question about .net 2005

    One further question on VB.net 2005. I have crystal reports version 10 standalone that works with vb.net 2003. Will it also work with vb.net 2005?
  19. geedubcpa

    Form2 Closes - how to notify form1 event

    I have two forms in question. Form1 is a transaction database Form2 is a customer database When you are on form1 there is a combobox that is populated with customer names. If your customer name is not present, you click on a button to open form2 which has the customer data. When form2 is...

Part and Inventory Search

Back
Top