home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Webmastering and Programming
Ask a Tech Support Question (free)!

Digital Forms for Construction Company

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 2083
Discussions: 200,919, Posts: 2,379,045, Members: 246,287
Old September 22nd, 2009, 02:33 PM   Digg it!   #1 (permalink)
Member
 
Ty44ler's Avatar
 
Join Date: Mar 2005
Location: Atlanta, Georgia
Posts: 407
Send a message via AIM to Ty44ler
Question
Digital Forms for Construction Company

I work for a construction company and am in need of turning paper forms into digital forms for our maintenance guys to fill out while on the job and turn them in to us through their laptops with aircards. The trick is that they need to fill out different forms according to what they fill out on the first form... For example, if one type of refrigerant is installed they check it on the first form then once complete, it should take them to another form to fill out about that type of refrigerant installation....

At first, I was thinking of writing a java program with a bunch of if then statements, but I am not extremely comfortable yet with Java and was wondering if there were any other solutions? Any suggestions?
__________________
Frank: Blue do you trust that I do not want to see you die here tonight?
Blue: Yes sir.
Frank: Blue you're my boy!
Ty44ler is offline   Reply With Quote
Old September 25th, 2009, 11:30 AM     #2 (permalink)
Member
 
Ty44ler's Avatar
 
Join Date: Mar 2005
Location: Atlanta, Georgia
Posts: 407
Send a message via AIM to Ty44ler
Bump for justice.
Ty44ler is offline   Reply With Quote
Old September 25th, 2009, 11:39 AM     #3 (permalink)
Anime Otaku
 
RobRich's Avatar
 
Join Date: Oct 2001
Location: Tampa, FL USA
Posts: 108,969
Blog Entries: 15
How about a simplified "web app?" HTML and some JavaScript or whatever scripting language you prefer. Seems easier than tossing together an one-off GUI application just for forms.
__________________
Robert Richmond | TechIMO Community Relations Director
Infinite perceptions. One reality.
FanFiction.Net - Unleash your imagination.
RobRich is offline   Reply With Quote
Old September 25th, 2009, 12:29 PM     #4 (permalink)
Member
 
Ty44ler's Avatar
 
Join Date: Mar 2005
Location: Atlanta, Georgia
Posts: 407
Send a message via AIM to Ty44ler
hmmm... yeah that's what I was kinda figuring it would have to be... I wish I was a little more knowledgeable about javascript.

Do you have any place in mind about forms like this I could look for starters?
Ty44ler is offline   Reply With Quote
Old September 25th, 2009, 01:47 PM     #5 (permalink)
Anime Otaku
 
RobRich's Avatar
 
Join Date: Oct 2001
Location: Tampa, FL USA
Posts: 108,969
Blog Entries: 15
Assuming you want a quick solution without much in the way of programming, I know there are form building applications available for HTML, JavaScript, etc. However, I have not used them, so I will let someone else recommend a specific solution.

Otherwise, I suspect there are many tutorials for building interactive forms using HTML and JavaScript. Drop a Google search.
RobRich is offline   Reply With Quote
Old September 25th, 2009, 02:47 PM     #6 (permalink)
Caveat Emptor
 
Rootstonian's Avatar
 
Join Date: Mar 2005
Location: Out of my mind
Posts: 3,241
Send a message via AIM to Rootstonian
Hard to provide any direction not knowing the scope of the project: is it 5 items that could spawn 10 forms or 50 items spawning 100 forms?

Irregardless, you have to have some way (read: programming) to get the data from a static web page (or wherever) and do something with it. I don't do web programming, but I do have to do something similar for programs with reading in data for programs to use.
Rootstonian is offline   Reply With Quote
Old September 25th, 2009, 02:59 PM     #7 (permalink)
Member
 
Ty44ler's Avatar
 
Join Date: Mar 2005
Location: Atlanta, Georgia
Posts: 407
Send a message via AIM to Ty44ler
Thanks for the replies!

Quote:
Hard to provide any direction not knowing the scope of the project: is it 5 items that could spawn 10 forms or 50 items spawning 100 forms?

I'm thinking it is going to be about 5-10 forms that could spawn about 15 forms or so from that tops.

Quote:
Irregardless, you have to have some way (read: programming) to get the data from a static web page (or wherever) and do something with it. I don't do web programming, but I do have to do something similar for programs with reading in data for programs to use.

Quote:
Otherwise, I suspect there are many tutorials for building interactive forms using HTML and JavaScript. Drop a Google search.

That is another question I had, if I were to use the web for collecting data, what are the options for extracting the data? I wouldn't want to store it online anywhere simply due to the fact that it may contain sensitive material and don't even want to take the chance.
Ty44ler is offline   Reply With Quote
Old September 26th, 2009, 01:41 AM     #8 (permalink)
Ultimate Member
 
Join Date: Jun 2002
Posts: 1,062
Designing your own pdf documents is quite easy. I figured it out. The trick will be in finding a suite that will do as you want without paying Adobe's exorbitant fees.

I have used pdfill but really am annoyed as it is buggy:

PDFill PDF Editor with FREE PDF Writer and FREE PDF Tools - www.PDFill.com

Have not tried the latest version.
__________________
Challenge My Brute:

http://doublek.mybrute.com
DoubleK is offline   Reply With Quote
Old September 26th, 2009, 02:28 AM     #9 (permalink)
Anime Otaku
 
RobRich's Avatar
 
Join Date: Oct 2001
Location: Tampa, FL USA
Posts: 108,969
Blog Entries: 15
Quote:
Originally Posted by Ty44ler View Post
That is another question I had, if I were to use the web for collecting data, what are the options for extracting the data? I wouldn't want to store it online anywhere simply due to the fact that it may contain sensitive material and don't even want to take the chance.

HTTPS with authentication to deliver the form pages to the user. User fills data. Data could be stored (think database) and/or forwarded (think encrypted email).

Still, security is a concern with pretty much anything you pass over the net. You could do a VPN for users, then host the web app on the intranet (instead of Internet) if need be.
RobRich is offline   Reply With Quote
Old September 28th, 2009, 09:52 AM     #10 (permalink)
Caveat Emptor
 
Rootstonian's Avatar
 
Join Date: Mar 2005
Location: Out of my mind
Posts: 3,241
Send a message via AIM to Rootstonian
If it doesn't need to be web-based, a Windows program would do the trick. However, if you're not a programmer, that's going to be dang near impossible.

I'm a programmer and coding Windows programs is a PITA. On this project you would be basically designing/coding dialog boxes (e.g. your forms) and then writing code as required.

Sounds like a ton of fun to me, project-wise. And even if I was a solid Windows programmer, I would slate this as a 1 to 2 month project.
Rootstonian is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Similar Threads
Thread Thread Starter Forum Replies Last Post
Strict construction Theophylact DebateIMO: Politics, Religion, Controversy 14 June 8th, 2009 02:12 PM
Construction crane TOAD6147 IMO Community 6 December 12th, 2004 09:57 PM
Digital Research CD-RW rebate forms(Bestbuy.com)?? onlyvinay General Discussion and Buyer Guidance 3 July 12th, 2003 05:31 AM
PC Under Construction! jch216 General Tech Discussion 98 June 19th, 2003 09:51 AM
Construction and estimating software? Sixpac_XP Applications and Operating Systems 0 June 18th, 2002 09:31 PM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Is It Just Me? (2846)
Obama the Muslim (11)
Why is Khalid Sheikh Mohammed even .. (9)
Is the PSU I received dead? (10)
windows vista security holes (7)
Foreign voltage (10)
HIS HD5770 graphic card question (15)
Install XP pro and a Vista laptop ?.. (9)
A good PSU? (10)
Dept. of HS: NSA 'Helped' Develop V.. (15)
Print spooler problem (10)
New Computer wont recognize XP disc (7)
Ideal cheap graph card for PC-Gamin.. (15)
EVGA 9800 gtx help with finding a g.. (8)
Recent Discussions
Foreign voltage (10)
FiOS modem/router interfering with ne.. (7)
Browsers wont load websites (2)
Virus Doctor Popup? (1)
Help getting around port 80 for camer.. (1)
[F@H SPAM 11/16/09] ! 1/2 months to r.. (31)
Dept. of HS: NSA 'Helped' Develop Vis.. (15)
windows vista security holes (7)
Install XP pro and a Vista laptop ?? (9)
EVGA 9800 gtx help with finding a goo.. (8)
Modern Warfare For the PC (32)
Problem with speed step/turbo boost? (1)
monitor will not turn on at all, (0)
Modern Warfare 2: Who Bought It? (61)
World's largest Monopoly Game using G.. (330)
Print spooler problem (10)
SIS 740 and Widescreen (8)
Baffling Problem with my CPU/MoBo's. .. (0)
Display shows 3x5 inch in middle of s.. (0)
HIS HD5770 graphic card question (15)
Best file format to play on Windows H.. (0)
PSP Go bought in Japan (0)
Asus P4G8X Mobo (3)
Need hard disk drivers (4)
windows 7 internet problem (4)


All times are GMT -4. The time now is 06:44 PM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28