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

    Windows 10 Explorer - Thumbnail Icon View flashing old thumbnails briefly before showing current

    When I open a folder in Windows Explorer and have my view type set to medium, large or extra large icons, it will briefly display some old thumbnail images before refreshing itself and showing the correct, current thumbnail images. This will happen every time the view is refreshed. I have run...
  2. jmarkus

    Exception in thread "AWT-EventQueue-0" triggered by normal user, but not administrator

    This error occurs when I am running a java application in Windows 10. The main application works fine for both the normal user and the administrator accounts. There is a button to change some preferences in the application that when run as administrator also works correctly, but when run as a...
  3. jmarkus

    Excel VBA - Set ListColumn on one worksheet equal to ListColumn on different worksheet

    I took the 'easy' way out. Thought I could reduce to one line of code and not resort to copy, but moving on now: src.Sheets(Sht).ListObjects(tbl).ListColumns(col).DataBodyRange.Copy wba.Sheets(Sht).ListObjects(tbl).ListColumns(col).DataBodyRange.PasteSpecial (xlPasteValues) Jeff
  4. jmarkus

    Excel VBA - Set ListColumn on one worksheet equal to ListColumn on different worksheet

    Skip, I appreciate your straightforward-ness. My original enquiry was: So ultimately that is what I would like to do. I thought that I could populate one ListColumn.DataBody range from another, but I seem to get mixed up with hole DataBodyRanges, Ranges, Range.Values and all the other...
  5. jmarkus

    Excel VBA - Set ListColumn on one worksheet equal to ListColumn on different worksheet

    Because of the way I am trying to work with the data from old to new, it is possible that the two tables won't be identical, but they will have identical columns (e.g. the wbA workbook table might have additional columns not present in the src workbook table). That is why I am trying to set...
  6. jmarkus

    Excel VBA - Set ListColumn on one worksheet equal to ListColumn on different worksheet

    I have a blank structured table in one workbook and I wish to populate it column by column from another table in another workbook with the same sheet, table, column names. I tried this: wbA.Sheets(Sht).ListObjects(tbl).ListColumns(col).DataBodyRange.Value =...
  7. jmarkus

    Excel Table Sort - Single Column based on 'implied' hierarchy

    Arrggghhh...it turns out there were extra spaces in the string that I couldn't see until I switched to a monospaced font! Once I accounted for the extra spaces, it made sense! Sigh... Thanks anyways. Jeff
  8. jmarkus

    Excel Table Sort - Single Column based on 'implied' hierarchy

    Hi Skip, In my worksheet, I have column A of the table at the top of my post (I used the column B to test out and show what I want/expect but it doesn't exist on my sheet). As I mentioned, I don't want to process it into separate columns because the depth of the hierarchy is variable and I...
  9. jmarkus

    Excel Table Sort - Single Column based on 'implied' hierarchy

    Skip, It's simply a parent/child hierarchy. If I use simple representations of each leaf of the tree, then Excel knows how to sort it correctly. However, once I substitute in various strings of different numbers and letters (and lengths) it doesn't know what to do. For Example: amh66304...
  10. jmarkus

    Excel Table Sort - Single Column based on 'implied' hierarchy

    Hi, I have generated a table with a column that shows the hierarchy of part numbers. When I try to sort the column, it doesn't sort the way I would expect. I have delimiters ('>') to visually show the precedence and if I make a similar column with each field in a logical/same size way, I can...
  11. jmarkus

    Can I have a different private IP address which isn't on my router's subnet?

    @edfair I need external access from the work computer as well. @sbcsu I thought I could leave my basement router set up as an access point connected to my main router, but change to a static IP on the access point with a 10.XX.X.XX address, but I guess those 2 ideas are mutually exclusive...
  12. jmarkus

    Can I have a different private IP address which isn't on my router's subnet?

    I realize that my home network doesn't NEED static IP addresses, but it is already set up with multiple devices, remote access, etc which is based on static IP and I don't wan't to undo all of that to change my IP address range, so I was hoping there was another way. Thanks, J
  13. jmarkus

    Can I have a different private IP address which isn't on my router's subnet?

    My home network is based on 192.168.X.X, like most default router setups. I already have many devices on my home network which have been assigned static IP addresses on this network, so I don't want to mess with that. Unfortunately, now that I am working at home with my work computer, I have...
  14. jmarkus

    VBA Word, Tables & Fields

    Thanks Paul, but in this case it isn't what I wanted. Sometimes the cells contain FormFields and sometimes they don't. I am only interested in the visible contents. Jeff
  15. jmarkus

    VBA Word, Tables & Fields

    Ok, this is what I did and seems to work: If .cell(3, 4).Range.Fields.Count > 0 Then 'MsgBox ("Contains a field!") TrStr = .cell(3, 4).Range.Fields(1).Result 'MsgBox ("TrStr is " & TrStr & "and is " & Len(TrStr) & " long") End If If TrStr = "" Then TrStr = "Empty" Thanks, Jeff
  16. jmarkus

    VBA Word, Tables & Fields

    Part way there. That will tell me if there is a field in the cell, how do I check if that field is empty or not? Jeff
  17. jmarkus

    VBA Word, Tables & Fields

    Trim will remove whitespace, but it won't remove the field, so it still thinks that something is there when I try it. Jeff
  18. jmarkus

    VBA Word, Tables & Fields

    I have a VBA macro which runs from Excel, opens a Word document and reads cells in a table in the Word document. I read the cell with the code: <code> TrStr = .cell(3, 4).Range.Text </code> I need to know if the cell is empty. Sometimes the cell contains a Text Form Field which is empty, but...
  19. jmarkus

    VBScript - CreateObject(&quot;WScript.Shell&quot;) Prerequisites

    I tried that and got the message: The module "wshom.ocx" was loaded but the call to DllRegisterServer failed with error code 0x80040201
  20. jmarkus

    VBScript - CreateObject(&quot;WScript.Shell&quot;) Prerequisites

    The error I get is: ActiveX component can't create object: 'GetObject' As for the language, this is VBscript as far as I know, I was just guessing that .NET might have something to do with it, but obviously I'm mistaken. Here is some more related code which comes before the Wscript line...

Part and Inventory Search

Back
Top