+ Reply to Thread
Results 1 to 11 of 11

Excel Message Board / Forum

  1. #1
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Excel Message Board / Forum

    Hi Guys

    Is it possible to create a message board / forum within excel ?

    Complete with a simple posting page and post button which includes the following

    Name
    Email Address
    Subject
    Post Detail

    "Post Button"

    Once the Post Button is pressed it could send an email to 2 Email Addresses ?

    And also the post information is displayed on a separate sheet with a reply button where if someone replies then it also sends an auto email out to the email address entered by the post creator ?

    Thanks

    Dave

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Re: Excel Message Board / Forum

    Good evening daveb86

    OK, you've got three, maybe four questions there - when you see how tricky the first bit is, you may want to bin the rest off, so let's tackle that bit first.

    I think I'm fairly safe to say that you can't upload (FTP) files to a remote web server using native VBA. You can use a third party app (see here for instructions for that).

    Alternatively, you can use the windows FTP support by creating a batch file from within VBA and executing that (this is probably trickier than using the third party FTP client above, but see here if you fancy it).

    Once you've got that bit working, post back and tackle the other less difficult bits.

    HTH

    DominicB

  3. #3
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Re: Excel Message Board / Forum

    Quote Originally Posted by dominicb View Post
    Good evening daveb86

    OK, you've got three, maybe four questions there - when you see how tricky the first bit is, you may want to bin the rest off, so let's tackle that bit first.

    I think I'm fairly safe to say that you can't upload (FTP) files to a remote web server using native VBA. You can use a third party app (see here for instructions for that).

    Alternatively, you can use the windows FTP support by creating a batch file from within VBA and executing that (this is probably trickier than using the third party FTP client above, but see here if you fancy it).

    Once you've got that bit working, post back and tackle the other less difficult bits.

    HTH

    DominicB
    Hi Dominic

    Im trying to avoid any 3rd party software if possible ...

    Im just looking to see if its currently possible to build a forum / message board a bit like this one but within excel using VBA

    Ive attached a screenshot of what im currently visioning.

    \1

    Thanks

    Dave

  4. #4
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,238

    Re: Excel Message Board / Forum

    Possible but very icky without a database. Is access/sql server express out of the question?


    Sent from my iPhone using Tapatalk

  5. #5
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Re: Excel Message Board / Forum

    Quote Originally Posted by Kyle123 View Post
    Possible but very icky without a database. Is access/sql server express out of the question?


    Sent from my iPhone using Tapatalk
    Unfortunately yes ...

    Maybe even if we played it smart and the post button grabbed the entered data and moved it to a row in another sheet

    EG:

    Name = Sheet 2 Cell B1
    Email Address = Sheet 2 Cell C1
    Subject = Sheet 2 Cell D1
    Post Detail = Sheet 2 Cell E1

    So it would function the same as a basic message board but all the post button would do is grab the data above and move it to a new sheet in the same row but different column letters.

    Dave

  6. #6
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,238

    Re: Excel Message Board / Forum

    That's not the problem, it's making the updates visible to other users when they happen that's the hard bit


    Sent from my iPhone using Tapatalk

  7. #7
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Re: Excel Message Board / Forum

    Quote Originally Posted by Kyle123 View Post
    That's not the problem, it's making the updates visible to other users when they happen that's the hard bit


    Sent from my iPhone using Tapatalk
    I was thinking for this is each time a new post or reply is added then the file just saves and then within the macro there is a sendmail script which auto emails the email address which is submitted.

    Thanks

    Dave

  8. #8
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Re: Excel Message Board / Forum

    Anybody any ideas how this can be done ?

    Thanks

    Dave

  9. #9
    Registered User
    Join Date
    06-20-2014
    Location
    Scotland
    MS-Off Ver
    2010 & 2013 professional
    Posts
    16

    Re: Excel Message Board / Forum

    you don't need access to make it work, just an access file.

    you can create an access database, tables & queries using SQL in VBA.

    start slowly: a top level menu system. add sub menus to those levels. use excel to table the menus & code on cell activates to trigger VBA to load the sub menu, refreshing the worksheet with the sub menu results or hide a top menu worksheet & display a sub level menu worksheet.

    once you reach that point you can table out the posts, clicking a post cell will refresh the sheet to show the post & replies or hide the sub level menu and display a post & replies.

    ultimately displaying the menus & posts would be easier done in a form from VBA.

    source: did this myself after a building move and temp loss of a server meant staff could not access support material. created something akin to what you talk of. I would post a copy for you to look at but there are two problems: 1) it was done on company time so technically belongs to the employer & 2) I left that employer over 5 years ago and no longer hold a copy personally. doubt they hold a copy either as it was a stop gap solution whilst the SharePoint site was built.

  10. #10
    Forum Contributor
    Join Date
    01-28-2014
    Location
    Manchester, UK
    MS-Off Ver
    Microsoft Office 365
    Posts
    127

    Re: Excel Message Board / Forum

    Ahh okies .. Sounds interesting though

    Would of been really good to see

    Dont seem to be having much luck with this and my skills on SQL are very basic meaning i can only do select queries

    Might have to think of something else for this

    Thanks all

    Dave

  11. #11
    Forum Expert Doc.AElstein's Avatar
    Join Date
    05-23-2014
    Location
    '_- Germany >Outside Building things.... Mostly
    MS-Off Ver
    Office 2003 2007 2010 PC but Not mac. XP and Vista mostly, sometimes Win 7
    Posts
    3,618

    Re: Excel Message Board / Forum

    Quote Originally Posted by daveb86 View Post
    ..........................
    Ive attached a screenshot .......................

    \1

    ....Dave
    . Hi Dave,
    . can I ask a quick question (and hope the answer is simple as I have limited computer knowledge…! ..)..
    …….. I spent some time last week-end tackling the general problem of posting images in Forums to..to name but a few of my ramblings on the Theme....
    http://www.excelforum.com/the-water-...ly-needed.html
    http://www.mrexcel.com/forum/about-b...ge-ie11-4.html
    http://www.mrexcel.com/forum/about-b...-use-imgs.html

    . …. I just about have a working solution anywhere. But just coincidentally stumbled over your post quoted above…(This Thread Post#3)
    .
    . Is it possible to explain in simple steps how you get the link in post #3
    http://i.imgur.com/IlAHatI.png
    . - say at the start point that I have some .png File saved on my desktop?

    Thanks

    Alan
    '_- Google first, like this _ site:ExcelForum.com Gamut
    Use Code Tags: Highlight code; click on the # icon above,
    Post screenshots COPYABLE to a Spredsheet; NOT IMAGES PLEASE
    http://www.excelforum.com/the-water-...ml#post4109080
    https://app.box.com/s/gjpa8mk8ko4vkwcke3ig2w8z2wkfvrtv
    http://excelmatters.com/excel-forums/ ( Scrolll down to bottom )

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Ranking of our Message Board
    By NBVC in forum The Water Cooler
    Replies: 1
    Last Post: 12-01-2010, 04:27 PM
  2. Forum sql problem! [For board admin]
    By Tudor in forum Excel - New Users/Basics
    Replies: 0
    Last Post: 04-26-2007, 05:04 AM
  3. Replies: 0
    Last Post: 10-05-2005, 03:28 PM
  4. windows help message board?
    By blazon in forum Excel General
    Replies: 2
    Last Post: 09-22-2005, 12:50 PM
  5. MS Word Message Board?
    By tkaplan in forum Excel General
    Replies: 2
    Last Post: 09-02-2005, 02:05 PM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1