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!

Search results for query: *

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

    getting "Run-time error '3061' Too few parameters response on a specific query - can anyone see

    I'm using VBA to build a query based on responses to a number of fields on a form, two of which are listboxes. When the code executes, it appears to build the query correctly, but I get the subject error every time. I've set a watch on the query, and when I copy the watch value and paste it...
  2. cdck

    Translating data received over serial Encoding = System.Text.Encoding.GetEncoding(1252)

    I'm communicating over a serial port to a piece of equipment which needs to receive the data in Hex format. Recently, a requirement came up to not only send the commands, but receive responses and parse them. I have been successfully sending commands for some time, and I am able to capture the...
  3. cdck

    vb.net - pass parameter to rdlc, report not defined exception

    I'm working in Visual Studio 2012 on a vb.net winforms project originally created in Visual Studio 2008. Since converted, the .rdlc files have started giving me issues, but I thought I had cleared them up with an updated reference. Currently, I'm working on passing two parameters from a form...
  4. cdck

    Visual Studio designer throwing an error which is in error

    I'm working on a vb.net windows forms application using Visual Studio 2008. I have two forms which have tab controls on them. On each tab control, one of the tabs has a reportviewer. On both forms, when I first open them in design view, I get an error telling me that the reportviewer control...
  5. cdck

    CrystalReportViewer showing blank report

    I'm using Visual Studio 2008. I have a form which has a DataRepeater and a ReportViewer displaying a report which uses the same table in the local DataSet that the DataRepeater uses. When I load the form, I fill this table. The DatarRepeater displays the data correctly, but the ReportViewer...
  6. cdck

    visual studio 2008 - datable miscommunication?

    I have a table in my dataset which is used to locally store and process a set of records for use with a form. The table is LocalInfoTables.TREEpartsTreed. I have a function running to update the data in that table based on a query tied to a SQL server. The function runs down one row at a time...
  7. cdck

    Problem attempting to fill Datatable from a shared function

    I have a DataTable in my local tables which I fill successfully from a button-click on a form. I now want the exact same process to fire from another form, so I took the Sub which fills the table and moved it to a shared functions module, which I use to store functions/subs I need to fire from...
  8. cdck

    DataRepeater controls are blank

    I have a DataRepeater attached to a table which I clear and refill each time text in a TextBox on the main form changes. It appears the the table is being managed correctly, as you can see that when the form opens, the DataRepeater is nothing but a blank border, and as you change the text...
  9. cdck

    Send 8-bit data over serial port; values over 3F are being set to 3F

    As described in the subject, I'm attempting to send 8-bit data to an external component using the serial port. However, it appears that the top two bits are being forced to 0; any value I attempt to send above 3F is 3F at the other end. Can anyone see what's wrong based on the code below...
  10. cdck

    send hexadecimal string via COM port

    I have a program which is running tests on a monitor using two separate pieces of equipment which are connected to the main computer via COM ports. COM4 is attached to a video generator which accepts simple strings as commands to adjust images displayed on the monitor. The following code is a...
  11. cdck

    FilsSystemObject not finding file that is clearly there.

    I have a program which creates a batch file, runs it, and then manipulates the files the batch file causes to be output. When it gets to the point where it's supposed to open and manipulate those files, it gives me an error telling me that the first file does not exist. If I navigate to the...
  12. cdck

    Format Function not working - VB 2008

    I'm updating a project created by someone who is not with our company currently, and I'm attempting to add a section which formats input before spitting it out. I'm using the Format() function, but it is not applying correctly. Here's testing code I created to try to debug this issue...
  13. cdck

    Query causing Response Buffer to exceed its configured limit

    I have an ASP page which takes a record from SQL Server and generates output with additional data from other tables/views on the same server. Specifically, it pulls the information on a specific box in the archives, and then fleshes that information out further by expanding references - like...
  14. cdck

    Form validation script not firing

    I have a form which is submitted using a button from an image file. The INPUT settings are: <INPUT type="image" src="/graphics/Buttons/bButtonContinue.gif" tabindex="7" onclick="return verifyAddition()"> verifyAddition is not firing when I click the button - it is supposed to make certain...
  15. cdck

    field comparison not working in On Update event

    I have a subform for which the data source is: SELECT dbo_GroupUsers.UID, dbo_GroupUsers.GrpID, dbo_GroupUsers.GrpLev, dbo_Groups.GrpLevSt, dbo_Groups.GrpLevEn FROM dbo_GroupUsers RIGHT JOIN dbo_Groups ON dbo_GroupUsers.GrpID=dbo_Groups.GrpID; It resides on the main Groups form, tied to the...
  16. cdck

    Subreport not filtering in Access 2000

    I have a report which lists all corrective action reports in the system, filtered by the year which the user selects when they open the report. Since the parameter requested by the report is "Year?", I apply an Iif sequence to the input in order to process it to a useable string for the report...
  17. cdck

    Error tying datagridview to dataset

    Using Visual Studio 2008 I have an unbound datagridview on my form (QCmastInspectList) In the code, I am attempting to select summed/grouped data from a view in the database, and then set the datasource for the datagridview to that recordset. Here is the associated code (The line that throws...
  18. cdck

    Compare data from SQL select to variables on form

    I have a simple form for login to an application which needs to pull a a user's information from a database based on variables set on the form and verify that the data matches. I've worked extensively in both VBA and VBscript in the past, and am having trouble making the transition to Visual...
  19. cdck

    Call connected datasource without Dim connection again?

    I'm working on my first VB application. I have a dataset in my datasources which includes tables holding username/password information. When the application opens, I have a login form open first. In the code for this form, I want it to select the appropriate record from the UserInfo table...
  20. cdck

    Advise: Digital Signature Scheme

    I am in the process of building an application using Visual Studio 2008 to handle the activities that happen in our Receiving Inspection area. This is the first Visual Basic application I will build. One of the issues that has been raised is how we could have employees "sign" documents on the...

Part and Inventory Search

Back
Top