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 Chriss Miller 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 jmarkus

  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

Part and Inventory Search

Back
Top