It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
We are trying to create an excel document which supports macros with some data validation code.
Is it possible to use axlsx package to create such a document.
e.g. A single sheet called Users which contains a VBA script (which can be viewed using Sheet --> View Code)
We could also provide a simple xls template file with this information, would it be possible to add rows with column data using axlsx gem.
Although, the answer is yes but as Brettdj said this is a broad guestion. I think you should first read this and this about creating forms. and then reffer to these links:
how-do-i-set-data-validation-in-vba
visual-basic-applications-validation-rule
Reviewing these addresses will help you to understand exactly what is possible and what is not.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want do use some of my own converter from html table to xls table, but I don't know where to start. The google don't show me comprehensive results. I know about Apache tika and poi, but do they have something easy to build converter? I used to read POI docs but it's just says about converting from xls-to-html most of time. What you will suggest to read. Where to search? Thank you.
It's a two-step process. I'd advise you to keep them separate.
Scrape and parse HTML to get table data
Write table data into Excel.
If the HTML is XHTML your life gets better: All you need is an XML DOM parser and some code to find the node at the root of the tree with the data.
I prefer Andy Khan's JExcel to POI. I think it's far better for dealing with Excel.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am a newbie using rails. I want to make my app/views/themes/index.html.erb be editable thru the browser. Anyone here have an idea how to do it?
As a video tutorial is better than I could ever explain, check those 2 links
http://railscasts.com/episodes/332-refinery-cms-basics
http://railscasts.com/episodes/296-mercury-editor
Will explain you how to easily set a WYSWYG editor for your HTML content (not your ruby code)
You can use in-place editing gem.. Here is the link
http://railscasts.com/episodes/302-in-place-editing?view=asciicast
You can use ckeditor to achieve this. See these posts.
http://ckeditor.com/demo
https://github.com/galetahub/ckeditor
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm about to start development of an application with Ruby on Rails, which requires to print stuff, mostly tickets.
I'm guessing the printer I use won't have much impact.
So the question is, what are the different things I should take into consideration with the printing? I'm thinking a normal ruby program should have communication with a printer.
The most portable solution here is for your Rails application to emit a PDF and then hand that off to either the browser for rendering and printing, or to inject it into a local print spooler.
There are a number of ways to get PDF out of Ruby depending on your requirements. The easiest method is to render HTML and use a library to convert it to PDF like PDFKit. A method with more control is one where you draw out the document using a library like Prawn.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to make an emailing application but I wanted to know if there is maybe already an application that provides their source code so I could get a head start. Like maybe just the simple concept of placing emails in a table view and retrieving them from a server. If there is anything out there please let me know.
If you do a google search, you should be able to find what you are looking for. Here are some I found.
http://mobile.tutsplus.com/tutorials/iphone/mfmailcomposeviewcontroller/
http://m.youtube.com/#/watch?v=ECkJh2mnFc8&desktop_uri=%2Fwatch%3Fv%3DECkJh2mnFc8
The geeky lemon drop one is pretty good.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to create an app where I have a table view and when I select a row where inside is written a name (at example "house") it give me in a textView the explanation of its meaning. What's the approach to do this app? I sould use a database as core data? but what's the way to take the text for every word? Can I use txt file or what? Can you help me?
If you want to store the data locally, I'd go either for core db, or xml file, depending on the kind of data. When you create a project in XCode with core data enabled, you can see how the crud is done.