Results 1 to 10 of 18

Thread: Testing Posts, Internet, Forum Software

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,457
    Rep Power
    10

    Communication regarding my use of Test Forum at Excel Fox

    ( P.M. )
    Quote Originally Posted by Alan
    Hi Sam,
    I have quick question. I am asking if I may post codes , Tables, etc. in , for example your Test Area, and reference those Posts from other Forums.

    _.....The idea is basically similar to something I do already:...You may have noticed:..._..

    I current use this thread in your Test Area Sub Forum.
    http://www.excelfox.com/forum/showth...L-Tables-etc-)
    I reference codes or table or extended explanations there from other posts.
    I do this so as to have less clutter in the main Threads from which these “appendix” posts are referenced.

    I also do this over at ExcelForum, where these “appendix” Threads appear very popular
    http://www.excelforum.com/showthread.php?t=1101544
    http://www.excelforum.com/showthread.php?t=1148621
    http://www.excelforum.com/showthread.php?t=1147913
    http://www.excelforum.com/showthread.php?t=1154829
    Those are mainly used by me for “appendix” posts referenced by one or more reply posts I do when answering Threads at ExcelForum.
    Occasionally, I also reference those posts from other Forums.

    There is a disadvantage for me in using those Threads at ExcelForum.
    _ You must be logged in to view the Test Area at ExcelForum, so people who are not registered cannot vie them.
    _ You cannot use HTML anywhere at ExcelForum ( you have that enabled in your Test Sub Forum )
    _ ExcelForum is increasingly unavailable for long periods due to Software problems
    _ Many other software problems at ExcelForum , including viruses, are making people more and more reluctant to use the site.

    So, if I may, I would like to use in addition ( or possibly instead ) ExcelFox for some of my “appendix” Posts
    _......

    So, if may, I would like to post codes and the such that may not ( at least initially ) be relevant to Threads at ExcelFox. I will then post a link to those posts as appropriate in other Forums.
    I do not think it is appropriate for me necessarily to post in these in the Excel Tips and Tricks Sub Forum as the content may not be “stand alone”, that is too say the content may not be so meaningful on its own.
    ( I am only a part time “Exceller”, and a Novice at that – so I would never get anywhere near the Heights of the likes of Rick Rothstein oder Rajan Verma. – So there would never be the requirement for me to have my own “corner” )
    _.......

    ( By the way, I do this partly already: In my signature both at ExcelFox and ExcelForum
    http://www.excelfox.com/forum/showth...=9821#post9821
    I assumed that was OK as I am just referencing some Forum Posting Tools that I use in both Forums )



    Thanks
    Alan Elston.



    Quote Originally Posted by Alan
    Hi Admin,
    Thanks for the reply
    As I mentioned, I did not want an individual Forum. Indeed even if available, I would not think it appropriate for my posts.
    I was just wondering if I could post some of my stuff in the Test Area, for the reasons I mentioned:
    _ Posts that are not “stand alone” Tips and tricks are less suited to Tips, Tricks. They would be for me to reference to when answering specific Posts and Blogs elsewhere.
    _ In Test Forum I have HTML
    _ In Test forum I have unlimited Edit time.


    So the question was if, in addition to Tips and Tutorials, I may also post in the Test Area, in the fashion that I do, as indicated, at ExcelForum?
    http://www.excelforum.com/developmen...te-thanks.html
    http://www.excelforum.com/developmen...ly-needed.html
    http://www.excelforum.com/developmen...ly-needed.html


    _ The purpose of this will be following:
    Codes and Information , To be referenced in this web site , Also to be referenced from other web sites
    Thanks
    Alan
    Quote Originally Posted by Admin View Post
    No issues
    ( Per PM: )
    Quote Originally Posted by Admin
    No restriction in Test Area
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    KILL A MODERATOR!!

  2. #2
    Fuhrer, Vierte Reich DocAElstein's Avatar
    Join Date
    Aug 2014
    Posts
    10,457
    Rep Power
    10

    Test

    Example
    Post #3 Copy table contents to VBE module

    The idea of these codes are to allow for a temporary storage of spreadsheet values to a code module.
    _ One code will add a table of values to the end of a code module, and an extra start and end line will be added which contains range and date info. This code uses the selected range. So a range must be selected before running this code.
    and
    _ a second code can be used to paste those values back to the same range.
    Optionally a date of entry can be given to search for, otherwise all table values are pasted in

    The codes are somewhat detailed and inefficient. They work in many places “line by line”. There are some more simpler and more efficient codes here. http://www.eileenslounge.com/viewtop...=31395#p243002

    Sub PubProliferous_Let_RngAsString__()
    This code puts a selected range of values into the code module in which the code at the position of just after this coding. The table data values will be added to ( or taken from in following codes ) the module in which the code is run.
    Here a brief walk through the code. There are more details in the 'comments
    Rem 0 Sets for convenience, a variable to the code module in which the code is placed/ run from
    Rem 1
    A code module used for storing a table will be given the extension to its code name of "_txt" No special reason for doing this, I just thought it might be useful for later reference to know that the code module is being used in such a way. ( If no more table data is in the code module, then the extension , "_txt" , will be removed. This will be done , for example in following codes after the data is removed.)
    Rem 2
    Before running the code, a spreadsheet range should be selected. The range is copied to the clipboard, and the text of that put in a string variable, strIn
    Rem 3
    The string format is changes slightly to allow better display in this code ( and to aid in manipulation in the codes which re copy the data back to the spreadsheet, http://www.eileenslounge.com/viewtop...=31395#p242941
    Rem 4
    This adds an “extra line” to the start of the string with range information and current date, and an extra line at the end of the string with the same date. (I use date format of 10 digits as DD MM YYYY. ( This needs to be added to the data retrieving codes if looking for data from a specific date ) )
    As demo example, say I copied a 2 row x 2 cell range, B2:C3 to the clipboard. Say the range looked like this
    A B
    C D
    At this point in the routine, after Rem 4 , I will have in strIn , something of this approximate/pseudo form, ( say for a date of 12th December, 2018 ):
    Code:
    = " '_-20 12 2018 Worksheets("Tabelle2").Range("B2:C3") "  & vbCr & vbLf &  “|” &  “A”  &  “|” & “B” & vbCr & vbLf & “|” &  “C”  &  “|” & “D” & vbCr & vbLf &  “  '_-20 12 2018 “
    Rem 5
    The above string is converted to an array by splitting by the & vbCr & vbLf & . So effectively , I would end up with something of this form , for the above example , a 4 element, 1 Dimensional array:
    { SpltRws(0) , SpltRws(1) , SpltRws(2) , SpltRws(3) }
    where
    SpltRws(0) = " '_-20 12 2018 Worksheets("Tabelle2").Range("B2:C3") "
    SpltRws(1) = “|” & “A” & “|” & “B”
    SpltRws(2) = “|” & “C” & “|” & “D”
    SpltRws(3) = “ '_-20 12 2018 “



    Alan
    ….If you are my competitor, I will try all I can to beat you. But if I do, I will not belittle you. I will Salute you, because without you, I am nothing.
    If you are my enemy, we will try to kick the fucking shit out of you…..
    Winston Churchill, 1939
    Save your Forum..._
    KILL A MODERATOR!!

Similar Threads

  1. Replies: 5
    Last Post: 06-10-2019, 10:14 PM
  2. Replies: 18
    Last Post: 03-17-2019, 06:10 PM
  3. New Forum Style
    By Admin in forum Public News
    Replies: 2
    Last Post: 05-16-2014, 11:34 AM
  4. Forum performances
    By Loser Who Got Kicked Where The Sun Don't Shine in forum Greetings and Inception
    Replies: 1
    Last Post: 01-03-2013, 07:50 PM
  5. Looping Through Each Internet Explorer
    By Rajan_Verma in forum Rajan Verma's Corner
    Replies: 3
    Last Post: 03-27-2012, 07:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •