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

  • Users: ribbons
  • Content: Threads
  • Order by date
  1. ribbons

    How to print report from report view

    Hi all, I am working in MS Access 2003. I have a report that opens as a popup and I want the user to be able to print from this view by clicking on a print button. I created a custom toolbar with a print button and set this in the properties box, but the toolbar does not appear when the...
  2. ribbons

    How do I move source code for VB.NET

    Hi all, I suspect this is going to be a stupid question, but how do I move the source code created in VB.NET VS 2005 from one location to another? When I just copy the folder of an application to another location, I get a security error. I read a thread on here some time ago that VB.NET...
  3. ribbons

    Selection formula question

    Hi, I am creating a front end in vb.net 2005 to open a CR. I need the selection formula to read something like this: Dim selectionFormula As String = "{GermReadings.TZAmountPaid}= '0'" This throws an error that reads: A number is required here I've tried every sort of combination I can think...
  4. ribbons

    Combobox feeding text box help

    I have a combobox, whose selections fill a textbox that is bound to the database. This works great, except now the users want to be able to "stack" selections from the combobox in the textbox, selection 1 and then selection 2 ,etc. etc. sentence after sentence. I have no idea how to do this...
  5. ribbons

    Help finding undefined variable error

    I'm cleaning up some old code that's been handled by several people, so the question I'm about to ask is probably some minor mistake that I'm just overlooking. But, I've been working on this for some time now, and just can't seem to find the error, so I apologize in advance for trivial-ness...
  6. ribbons

    Sourcing ComboBox 2 from combobox 1

    Hi all, I'm trying to fill combobox 2 with all items that match the selection in combobox 1. I followed a thread from here, coupled with my limited knowledge, but I got lost in this. any suggestions would be appreciated. I hope this is a simple fix: Public Class Form1 Private Sub...
  7. ribbons

    How to sort months on report

    Ok, I know this is probably a dumb question, but this is something I've never run across before. I have a query that sorts data by date, from July of one year through June of the next. In the design of the query, I have selected to sort the date Ascending. If I run the query, I get the...
  8. ribbons

    Installing (or publishing) VB.NET 2005 application

    Hi, Can anyone give me the short version of how to publish a VB.NET 2005 windows application up to a network? I have read through the MSDN walkthrough, but can't seem to extrapolate the necessary information to fit my situation. Most annoyingly, I keep running into security issues that...
  9. ribbons

    converting sql from VB 6 to .Net

    I'm trying to convert some SQL from VB 6.0 to .Net. Can anyone tell me why the following is not correct??? sWhere = str.Substring(sWhere, str.Length(sWhere) - 4) I'm converting FROM: sWhere = Left(sWhere, Len(sWhere) - 4) The error message I get is Public ReadOnly Property Length() As...
  10. ribbons

    Populate multiple textboxes from combobox selection

    Hi Guys, Another question. I have a combobox named PPQOfficer whose source is a query: SELECT tbl_lookup_FEDInfo.PPQ_Off, tbl_lookup_FEDInfo.FEDAgency, tbl_lookup_FEDInfo.FEDAddress, tbl_lookup_FEDInfo.FEDCitySTZip FROM tbl_lookup_FEDInfo; I want the selection from this combobox to fill...
  11. ribbons

    Memo Field and number of characters

    Hi all, I have an Access Db that contains a memo field with rather lengthy text entries. I also have a form on which I want to display the info in the memo field in a text box. I believe I have read that text boxes will accomodate up to 64,000 characters from a memo field. But for some...
  12. ribbons

    Help with deploying first project with CR viewer

    Hi all, I've also posted this in the .NET forum as I wasn't sure which was the most appropriate. I am launching my first .NET application and have run into a perplexing problem with the datasource. I am using a .NET front end to pull a Crystal Report (by using the CR Viewer component) that...
  13. ribbons

    Problems deploying first .NET project

    Hi all, I am launching my first .NET application and have run into a perplexing problem with the datasource. I am using a .NET front end to pull a Crystal Report (by using the CR Viewer component) that gets its data from an MS Access database on our local network. This is a Windows application...
  14. ribbons

    Securities permission question

    I have a .NET program which pulls data from an Access Database. I'm a beginner at .NET and this is a very simple application with a combobox that filters a datagrid. I have used the following code to declare the datasource and to fill the dataadapter: Dim dt As New DataTable() Private...
  15. ribbons

    The schema returned by the new query differs from the base query."

    Does anyone know what this message means as generated from the Query Builder in .NET? I am trying to add a combobox to a form and create a query on the datasource to filter the contents of the form. ribbons
  16. ribbons

    ComboBox Datasource - simplest way?

    I'm using VB.NET 2005, a real newbie to .NET (used VB 6), and trying to finished an inherited application. What is the simplest way to fill a combobox with values(1 column) from an Access DB table using a simple SQL string? Will this work: combobox1.Datasource = "SELECT Column1 from Table1" I...
  17. ribbons

    Selection formula for CR XI report on VB.NET frontend

    I have a VB.NET front end pulling a CR XI report based on an Access DB. This should be a simple front end that filters data displayed on this report. The user selects a date from a combobox and clicks a button that reloads and redisplays the form based on the combobox selection. The...
  18. ribbons

    Producing Crystal Reports from inside VB.NET 2005

    Can anyone point me toward examples, code, information, etc. relating to producing Crystal Reports from inside VB.NET framework where the information on the report is filtered from the database by using drop down boxes? I have already found code examples on MSDN for this purpose, but apparently...
  19. ribbons

    Help with selection formula

    I'm using VB.NET 2005 and CR XI. I am trying to filter a CR report with a selection formula as below: Dim selectionFormula As String = "{LabNumber.OldLabnumber} = " & cmblabnumber.Text cmblabnumber is a drop down box I'm new to .NET and am following a published example from MSDN with a few...
  20. ribbons

    Getting CR XI report to produce parameters.

    Hi all, I'm very, very new to .NET (used VB 6.0) and I am trying to pull a CR XI report using the CRViewer from .NET ona very simple form. I have created the report in CR and have set parameters using the "dynamic" option. I have created a .NET form and placed the CR Viewer component on it...

Part and Inventory Search

Back
Top