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 wOOdy-Soft 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 pcdaveh

  1. pcdaveh

    The multi-part identifier "L.Labor4" could not be bound.

    Thanks for the suggestion of printing out the string. That yielded some results. I'm not a SQL Server expert, but an Accountant. So, some of the more sophisticated ways of doing things aren't going to be for me. Also, the reason this has to be put into a string variable is because other...
  2. pcdaveh

    The multi-part identifier "L.Labor4" could not be bound.

    I have a sql query that works fine until I place it into a string variable and try to execute the string. First the Good Code is below: INSERT INTO ESOTempTables.dbo.GLPayRunEmpsEarnings (CompanyNum, PRID, VoucherNum, VoidRunIndicator, ekPRV, ekPRL, EarnNum, EarnAmt, Labor4, EmpDept, mydept...
  3. pcdaveh

    Clear the immediate window

    Thank you very much! It pays to know where all the bells and whistles and switches are.
  4. pcdaveh

    Clear the immediate window

    Does anyone know how to clear the immediate window in vb.net? I've tried selecting the text and hitting delete and it won't disapear...
  5. pcdaveh

    Concatenation of variable in Stored Proc

    Thank you all I finally got it to work with a combination of all your suggestions!
  6. pcdaveh

    Concatenation of variable in Stored Proc

    I thank you for your reply. However, If you look at the text of the stored procedure I have above you'll note that I know how to pass in and declare variables. I need to place the blue highlight variable in place of the key word LIKE N'%' also highlight in blue. Just placing the variable in...
  7. pcdaveh

    Concatenation of variable in Stored Proc

    I have a stored proc with some variables being passed in. The variable that I'm having difficulty with is a string or nvarchar. You'll see the variable and the location of where it needs to be placed highlighted in blue. I just need to know how to properly place the variable in the Stored...
  8. pcdaveh

    Undo Excel Pivot Table

    I need to just get at the raw data in an Excel Pivot table. How do you undo this Pivot table and get at a data table?
  9. pcdaveh

    Subform in Tab Control

    Can you show me the syntax that you would use because i've tried Forms![Formname].[SubformName].visible = true also Forms![Formname].[TabcontrolPage].[SubformName].visible = true
  10. pcdaveh

    Subform in Tab Control

    I have a Form and inside it I have a Tab control. On Page(0) I have a subform named frmTest. frmTest is a datasheet. I want to programatically make this subform visible. How do you reference the subform on a tab page?
  11. pcdaveh

    Stored Procedure and List Box

    Does any one know how to call a stored procedure and have it populate a listbox on an Access Form. The sp is already created with input variables. I don't know if I need to use declare a cursor or output variable and then how to get those row into the listbox. Anyone have a clue or an example?
  12. pcdaveh

    Option Group in a Report

    What your doing is setting the value of the text box based upon what is in the option group. I need to set the option group itself.
  13. pcdaveh

    Option Group in a Report

    Is it possible to set the value of an option group in a report in code? Please provide tested code 'caus I tried and it didn't work.
  14. pcdaveh

    Picture Control

    Situation. I have 50 Forms. Each of the Forms has a tab control with 1-15 tabs or individual pages. Each of the pages has an image control that has been placed on the tab using the CreateControl(formname, controltype[, section[, parent[, columnname[, left[, top[, width[, height]]]]]]]). I...
  15. pcdaveh

    Picture Control

    Thanks for responding. I've gotten this far ,but what I need is to set imgCustomer dynamically. How do you refer to imgCustomer dynamically in code?

Part and Inventory Search

Back
Top