Search:

Type: Posts; User: Proctor

Page 1 of 13 1 2 3 4

Search: Search took 0.12 seconds.

  1. VS 2017 Re: Can't find "can't find Add a web deployment project"

    Thanks for the clarification!!! We'll try the publish option and see if that's what we need.
  2. VS 2017 Can't find "can't find Add a web deployment project"

    Hello: I have been tasked to migrate a web app.

    I was provided these instructions:
    https://www.codeproject.com/Articles/21465/Converting-an-ASP-NET-site-into-a-SharePoint-site

    and told to...
  3. MsOf10 Error when refreshing page that contains more than one pivot

    Hello: I have a workbook with several worksheets on it.
    Each worksheet contains one pivot. Each pivot's data source comes
    from a worksheet within the same workbook.

    I have code linked to a...
  4. Is it possib le to automate export into same Excel file each time without over-writng

    Hello: I have a package created in sql server 2008. It instructs to export data from sql into an Excel file.
    In doing so, it overwrites a pre-existing Excel file each time.

    I wanted to know if...
  5. Stored procedure takes twice as long to run than select statement......

    Hello: I'm working in sql 2008. I have a stored procedure where I create a table and insert into it a simple select statement.

    When I run just the select statement into the analyzer, it runs...
  6. VS 2012 Re: [RESOLVED] Selected index fires sometimes but not others.

    Ok, thank you for your suggestion. I'm going to give it a try.
  7. VS 2012 Re: Selected index fires sometimes but not others.

    That's good confirmation....thank you for your help!

    Proctor
  8. VS 2012 Re: Selected index fires sometimes but not others.

    Thank you...this does work; however, sometimes, when it hits the line: DataSource = tblLookupProductInitialize

    it goes into cboProduct.selectedindex changed and for those times, it goes into it...
  9. VS 2012 Re: Selected index fires sometimes but not others.

    Thank you for your reply. I want it to select an item....
  10. VS 2012 [RESOLVED] Selected index fires sometimes but not others.

    Hello:

    I'm coding a windows app.

    I'm having inconsistencies with the following code:



    With cboProduct
    .ValueMember = "ProductId"
  11. MsOf10 Re: External table is not in the expected format error

    I just noticed something in my 97-2003 file that contains data. It originated from an old software program that exports it from a crystal file. As a result, it doesn't place all the data into one tab...
  12. MsOf10 Re: External table is not in the expected format error

    Hi Arnoutdv: Thank you again for your help.

    I get the error using (just Excel)....I go to the data -> connections -> add -> browse for more -> new source -> ODBC Dsn -> Excel - > I select my file...
  13. MsOf10 Re: External table is not in the expected format error

    Hello: thanks for your reply. Yes, I just tested saving to a xlsx format and it gives me that same error message...so it doesn't like that either.
  14. MsOf10 External table is not in the expected format error

    Hello: I have an old program that saves data into an Excel file as format: 97 - 2003;

    In Excel 2010, using vba, I get a copy of this file, open it, and save it as a .xlsb (binary) file format. ...
  15. MsOf10 Re: Is it possible to use FileCopy to create copy of Excel file w/ diff extension?

    Got it! Thanks for your help.

    Here's the code I used:


    Sub MacroSaveAsBinanary(sMostCurrentFileName)
    Dim rootPath As String
    Dim sFullPath As String
    Dim wb As Workbook
  16. MsOf10 Re: Is it possible to use FileCopy to create copy of Excel file w/ diff extension?

    Hi Arnoutdv: Thank you for your reply.....can you please tell me how I can learn about this Excel automation? Is this something I would do via vba?

    Thanks again for your help,
    Proctor
  17. MsOf10 [RESOLVED] Is it possible to use FileCopy to create copy of Excel file w/ diff extension?

    Hello: Using VBA within my Excel 2010 workbook, I'd like to copy another excel file that was created using Excel 8 and has a .xls file extension to a .xlsb file extension.

    Here's the code I'm...
  18. Re: sql 2000 Trouble with aggregate

    Wow, I had no idea that I could do this!!!! You're correct, I did also need to include voucher and vend_num...guess I was just trying to simplify it
    to get my results first.

    Thank you so much...
  19. [RESOLVED] sql 2000 Trouble with aggregate

    Hello: I sum field "dom_amount" by grouping by voucher and ven_num in table ledger....so created this aggregate sql:



    SELECT SUM(dom_amount) AS dom_amount
    FROM dbo.ledger
    GROUP BY...
  20. Re: sql 2000 Finding DateDiff between dates when they're in different rows

    Hi techgnome: I was able to get the results I wanted....the code you provided, spawned ideas which enabled me to do it.

    I wanted to be sure to thank you for taking the time to provide me with...
  21. [RESOLVED] sql 2000 Finding DateDiff between dates when they're in different rows

    Hello:

    I have a sql statement:



    SELECT
    job,
    trans_type,
    CONVERT(VARCHAR(10), MAX(trans_date), 101) AS Trans_date,
  22. Replies
    0
    Views
    580

    MsOf10 QueryTable verses Table?

    Hello: I've created a macro for Excel that gets a dataset via sql server and puts it into a QueryTable as the datasource for a bunch of worksheets that have pivot tables.

    The very first time the...
  23. MsOf10 Excel and Vba....need to concat Excel column values as string for sql "in(1,2,3)"

    Hello: I have a macro that goes to the database and gets a recordset and returns it to an Excel worksheet.
    The recordset is returned via a QueryTable:



    With...
  24. Re: Excel external connection to SQL server via VPN very slow

    I have been working on this angel thus far. If I export the data to an excel sheet off the server, it runs fast (of coarse); however, I would then need to transfer this file (which is 10 megs...
  25. Excel external connection to SQL server via VPN very slow

    Hello: I have an Excel sheet that contains an external connection to SQL server to retrieve data
    for pivot tables.

    When I run it from a VPN, it's extremely slow to read it all. (15 min)
    There's...
  26. VS 2012 Re: Populating comboBox causes SelectedIndex to for the same comboBox to fire

    I'm going to be sure to add what you just said in my notes......
    Is there a way to use addrange when working with a datatable?

    thanks again - Proctor
  27. VS 2012 Re: Populating comboBox causes SelectedIndex to for the same comboBox to fire

    .paul, thank you so very much for responding and letting me know this. I didn't have the order correct. I wasn't understanding what display member did but now I understand that it's setting the...
  28. VS 2012 Populating comboBox causes SelectedIndex to for the same comboBox to fire

    Hello: I wanted to know if I'm going about populating my combo boxes correctly, or if this behavior is normal.

    Here's the code that populates a combo:


    Private Sub PopulateJobsFilter()
    ...
  29. MsOf10 Re: Refreshing Pivot table via external ds - locking file

    Well, I found a hack solution I wanted to share in hopes something better will come along as the result of it.

    Here's what I'm now doing in my RefreshALLPivotTables sub:

    <code>
    Sub...
  30. MsOf10 Refreshing Pivot table via external ds - locking file

    Hello: I have 2 excel files. One contains pivot tables and also the macros.
    The other, contains just the data and is used as the external data source for the pivot tables.

    One of my macros,...
  31. VS 2012 Re: Trouble with filter and datagridview

    After all that and struggling a full day on this, shortly after posting this, I resolved the issue.
    I added this one line in the cboStatusFilter_SelectedIndexChanged event.

    ...
  32. VS 2012 [RESOLVED] Trouble with filter and datagridview

    Hello: I'm working on a windows form that has a datagridview and a filter above it.

    When the page first loads, the filter is set to 'UNASSIGNED'. It's possible that at times, there could be no...
  33. VS 2012 Re: Need to add item to DataGridViewComboBoxColumn in datagridview

    Yes, I finished it and it works great! I'm very happy with it.

    Thanks again!

    Proctor
  34. VS 2012 Re: Need to add item to DataGridViewComboBoxColumn in datagridview

    jmchilhinney: I wanted to write you and thank you for that very creative solution. I followed your instructions and have gotten it to work!!!

    Thank you again for providing me with this idea for...
  35. VS 2012 Re: Need to add item to DataGridViewComboBoxColumn in datagridview

    jmchilhinney: Thank you for explaining this to me.
    Do you know which event I would do this on?
    I'm also wondering what effect this might have in regards to performance.

    I was thinking I could...
  36. VS 2012 Need to add item to DataGridViewComboBoxColumn in datagridview

    Hello: I have a windows form that contains a datagridview which is databound.

    One of the columns is a DataGridViewComboBoxColumn.

    When the form loads, I bind the grid and I add the columns. I...
  37. Re: Excel 2010: Trying to use vba to establish external connection to .xlsb file for

    I was able to get my connection to open using this code:

    Set cnn = New ADODB.connection
    With cnn
    .Provider = "Microsoft.ACE.OLEDB.12.0"
    .ConnectionString = "User ID=Admin;Data...
  38. Excel 2010: Trying to use vba to establish external connection to .xlsb file for pivo

    Hello: I have an excel file with pivot tables for each worksheet.
    The datasource comes from an external xlsb file. I currently have the connection set up via the data tab. The pivot tables data...
  39. MsOf10 Re: Excel 2010 - MS Query and Parameters ...want to get value from last row entered

    oh...I see what you're saying. No, unfortunately, my boss wants the entire enchilada.

    I wonder how others would deal with this issue. Do you think it's common to break it out so that the data is...
  40. MsOf10 Re: Excel 2010 - MS Query and Parameters ...want to get value from last row entered

    How do you mean....? Do you mean to try to bring less fields?

    Thanks,
    Proctor
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width