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. michelleHEC

    updating access database

    ok, I solved it by looking back at some old questions. I put the values right in the statement instead of using parameters and it worked.
  2. michelleHEC

    updating access database

    my update command is not working. can anyone see what the problem is? I am not getting an error... Dim cnTag1 As New OleDb.OleDbConnection cnTag1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Password=;User ID=Admin;data source=c:\BlownAway.db.mdb" Dim...
  3. michelleHEC

    filling a string with a null value

    chip, I guess I am a little slow, could you explain that in code? I tried setting the string to empty but still couldnt set it to dbnull. i am lost.
  4. michelleHEC

    filling a string with a null value

    I need to insert into sql either a string or a null value based on an if statement before the insert statement. here is my code. If AcctNo(intC) = "18410" Then TrExpCode = "VMISC" Else TrExpCode = DBNull.value (here is the problem) End If...
  5. michelleHEC

    parameter for crystal report with subreport

    I have a crystal report in my vb.net program that has a subreport. the subreport doesn't need the parameter only the main report. it askes me twice for the same parameter when it is run. Is it because of the subreport and if so what can i do to stop that. thanks Michelle
  6. michelleHEC

    title bar formating

    Thanks chrissie1, you have been very helpful.
  7. michelleHEC

    title bar formating

    just my app, sorry if I didn't make that clear...
  8. michelleHEC

    title bar formating

    is there no way to control it in the code of the program? Or am I not understanding??
  9. michelleHEC

    title bar formating

    Does anyone know how to change the title bar color from windows blue to another color? Michelle
  10. michelleHEC

    creating a pagebreak on an excel sheet

    Thank you! I have it working now with your help. The error was coming from a mistake on my part not the code.
  11. michelleHEC

    creating a pagebreak on an excel sheet

    now I am getting this error Exception from HRESULT:0x800A03EC
  12. michelleHEC

    creating a pagebreak on an excel sheet

    do I need to declare "ActiveCell"? I am getting an error
  13. michelleHEC

    creating a pagebreak on an excel sheet

    I have created an excel sheet using vb.net and I am able to set the row size and column size etc but I need to be able to set a page break when a variable changes. Any ideas?? here is a snipit of the code I am using... Dim xlApp As Excel.Application Dim xlBook As Excel.Workbook...
  14. michelleHEC

    incrementing pk dts problem

    wait, I am still not sure that makes sense. I may not be explaining myself correctly. I would want to append rows I just want to igore the identity column but that is not working.
  15. michelleHEC

    incrementing pk dts problem

    I am using the wizard to create the DTS. do I need to delete the row that is the identity column in column mappings and transformations?
  16. michelleHEC

    incrementing pk dts problem

    I am creating a DTS that takes data from one table(tblA) and inserts it into another(tblB) but tblB has an incrementing PK and I am getting an error "cannot insert a null value" or something of that sort. Any ideas? Thanks Michelle
  17. michelleHEC

    scheduled DTS with oracle error

    Thank you for your response Frederico, and all of you who tried to help me. We did restart the server after installed the oracle client software but still have no luck in scheduling the dts. for right now, until I can figure out why it will not work, I am executing the dts every morning...
  18. michelleHEC

    first choice in combo box when using a dataset

    i was just trying that. i was binding it in the property box but know i am trying it in code to see if that will do it
  19. michelleHEC

    first choice in combo box when using a dataset

    ok, got pass that error but now it says "Cannot modify the items collection when the DataSource property is set." michelle

Part and Inventory Search

Back
Top