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 TouchToneTommy 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. CJwater

    Round up over to 49 to 100 and under to 0

    YES! George Thanks for your response,seems so simple but it's what I was trying to figure out how to do... CJ
  2. CJwater

    Round up over to 49 to 100 and under to 0

    Can anyone explain how to or give me a "simple" example I need to create a SQL query for a report that rounds down to 0 in the tens if the value is under 50 and Up to 100 if it's fifty and over. Thanks CJ
  3. CJwater

    What reference/import doI need for stdole.IUnknown

    figured it out, 1 - select Project,Add reference 2 - select .NET tab 3 - select stdole Hope it helps someone else! CJ
  4. CJwater

    What reference/import doI need for stdole.IUnknown

    I'm converting VBA script code to .net and am not all that familiar with it. My class contains Public ReadOnly Property NewEnum() As stdole.IUnknown Get NewEnum = m_Terms.GetEnumerator End Get End Property I'm getting an error: Error 11 Type 'stdole.IUnknown' is...
  5. CJwater

    Access 97 can I export query to CSV file? how?

    Can I export a query from Access 97 to a .csv file? If so does anyone have an example? Thanks CJ
  6. CJwater

    VB- Crystal 8.5 export to Excel need Column Headers

    Figured it out ... here's the code to include the headers just in case someone else needs it... report.ParameterFields.Item(1).AddCurrentValue StartDt report.ParameterFields.Item(2).AddCurrentValue EndDt report.ParameterFields.Item(3).AddCurrentValue mfgBrand...
  7. CJwater

    VB- Crystal 8.5 export to Excel need Column Headers

    Thanks for the advice I've moved it over to Crystal Data access. CJ
  8. CJwater

    Crystal rpt export to Excel in VB code not getting Column Headers

    Hi, I'm Exporting a crystal report to Excel and I need to include the column headers. The follow code does the report export but I don't get any header (It does gives me all report totals). Anyone have an idea what I'm doing wrong? missing? Set report =...
  9. CJwater

    VB- Crystal 8.5 export to Excel need Column Headers

    I'm writing VB code to execute, the code I posted is VB.
  10. CJwater

    VB- Crystal 8.5 export to Excel need Column Headers

    Hi, I'm Exporting a crystal report to Excel and I need to include the column headers. The follow code does the report export but I don't get any header (It does gives me all report totals). Anyone have an idea what I'm doing wrong? missing? Set report =...
  11. CJwater

    Need example of Editing Datagridview in code

    Thank you both for responding, I will rephrase my question Which "event in the datagridview" do I need to trap for each cell change the user makes to update SQL. I should trap for this event? "grdLookup_CellValidating(ByVal sender As Object, ByVal e As...
  12. CJwater

    Need example of Editing Datagridview in code

    Hi! I trying to figure out the datagriview events and getting nowhere. I'd like to update the SQL database on the cell change. Does anyone have a simple example? Thanks CJ
  13. CJwater

    Query on row field and display as columns

    Markros, I worked with the first example. I get it now! Thanks You so much :) CJ
  14. CJwater

    Query on row field and display as columns

    Markros, Thanks for the links, but I was hoping for a simple example with a concept that I could apply to my SP. My query has no grouping no summing, I just need pivot the data and join it to a few other table to collect related info. Here's my complete query. SELECT left(DFT.PONo,6)...
  15. CJwater

    Query on row field and display as columns

    Sorry forgot to clarify MS SQL 2000 Thanks CJ
  16. CJwater

    Query on row field and display as columns

    Hi, My table has a field AccType and it can contain 1 of 4 values on each record with an Amount for each. I need to create a table with those 4 columns and matching Amount. I'm sure this can be done but I can't picture how. Table1 has 3 or 4 possible value CB, TL, PA and PAC it also has the...
  17. CJwater

    VBA breakpoint not clearing in execution mode

    Has any one ever had an issue with "Breakpoints" not clearing and in code execution stopping at an old breakpoint? I cleared all breakpoints and recompile but in execution mode it still stops at an old breakpoint that I use for testing. I compacted and repaired same results. I'm at a lost...
  18. CJwater

    Passing ListBox multiselect to Gridview using Store Proc

    I'm trying to populate a gridview depending on 3 listboxes using "multi selection" to call a stored proc that expects 3 parameters that can be nulls if there's no data. (This works in ACCESS and I'm convering this application to the ASP.net and having trouble.) Stored Proc Info: CREATE...
  19. CJwater

    Insert into Linked table Query that won't excute in code

    Just in case someone else has the same problem... I changed DoCmd.SetWarnings from "True" (I usually only use true for debugging) to "False" and it does executed the insert into the SQL table.

Part and Inventory Search

Back
Top