Alpha Software Message Board  

Go Back   Alpha Software Message Board > Alpha Five Desktop Applications > Older Versions of Alpha Five > Alpha Five Version 5
Register FAQ Members List Calendar Mark Forums Read

Reply
 
Thread Tools
Old 10-05-2003, 07:16 PM   #1
AL@ALCO-SALES.COM
Member
 
Join Date: May 2000
Posts: 175
Default Faxing from within A5

Well here we go again. Is there any hope at all of getting an add-in or a script or something in A5V5 to directly fax out of alpha.
This is a sorely needed addition to me more than the ability to send e-mails from within.
I know this has been discussed way back but it is time to adreess this problem at THIS TIME.
Thanks,
Al
AL@ALCO-SALES.COM is offline   Reply With Quote
Old 10-05-2003, 09:47 PM   #2
Marc King - A5solutions
Member
 
Join Date: Dec 2002
Location: California
Posts: 702
Default RE: Faxing from within A5

Hi Al,

Take a look at the vol. 1 issue 11 Newsletter. There is an article "Faxing from Alpha Five Version 5 using Winfax and DDE
by Russ Boehle"

http://www.imakenews.com/alphasoftware/index000024511.cfm


- in the Code Archive Forum the function is posted - its near the bottom of the page.



Marc
www.a5solutions.com
Marc King - A5solutions is offline   Reply With Quote
Old 10-06-2003, 12:24 AM   #3
Tom Cone Jr
"Certified" Alphaholic
 
Join Date: Apr 2000
Location: Florida
Posts: 20,185
Default RE: Faxing from within A5

Al,

I'm curious why this is a priority? There are several inexpensive fax print drivers available which can be used with Alpha Five. Why is it important for Alpha Five to be able to create the fax image and manage the transmissions itself ? How much extra would you be willing to pay if Alpha were to add this feature ?

-- tom
Tom Cone Jr is offline   Reply With Quote
Old 10-06-2003, 05:12 AM   #4
russ Boehle
"Certified" Alphaholic
 
Join Date: Mar 2000
Location: Connecticut
Posts: 2,745
Default RE: Faxing from within A5

Here is a function for faxing from A5. Hope this helps.

'Date Created: 17-Jul-2003 09:53:14 AM
'Last Updated: 22-Jul-2003 08:23:54 AM
'Created By :
'Updated By :
FUNCTION Fax_DDE_Fn AS C (vfaxno AS C, vname AS C, vfax_Y_N AS C, vreport_name AS C )

'The following 4 variables must be set externally before running this function
'dim vfaxno as c ' fax number, will dial as entered
'dim vname as c 'recipient name
'dim vfax_y_n as c 'use cover Y, no cover N
'dim vreport_name as c 'report name
if var->vfaxno = ""
ui_msg_box("Value Needed","You must specify a FAX number",UI_OK)
goto fin
end if
if var->vname = ""
ui_msg_box("Value Needed","You must specify a NAME",UI_OK)
goto fin
end if
if var->vfax_Y_N = ""
var->vfax_Y_N = "Y"
end if
if var->vreport_name = ""
ui_msg_box("Value Needed","There is no report specified, see the administrator",UI_OK)
goto fin
end if
'Put in the path to the winfax program
sys_shell(var->Co_Inf_WinFax_Path)
sleep(1)

vfaxno = remspecial(vfaxno)
channel = dde_initiate("FAXMNG32", "CONTROL")

'The goidle command stops Winfax from doing anything while you are trying
'to send it a fax job.

dde_execute(channel, "GoIdle")
dde_terminate(channel)

channel = dde_initiate("FAXMNG", "TRANSMIT")

'Below is the input for faxno and recipient name

dde_poke(channel, "SendFax", "recipient(\""+var->vfaxno+"\",,,\""+var->vname+"\")")

'Code below sets the coverpage, you must enter the full path or can
'use a listbox for user selection.
if .not.file.exists(var->Co_Inf_Fax_Cover_Path)
ui_msg_box("Cover Page","There is no cover page at the path specified, please notify administrator",UI_ATTENTION_SYMBOL)
goto fin
end if

if vfax_y_n = "Y"
'coverpage path comes from copany_info table
dde_poke(channel, "Sendfax", "setcoverpage(\""+var->Co_Inf_Fax_Cover_Path+"\")")
end if
'This was not tested but I assume options are 0 or 1 to show or not show.
dde_poke(channel, "Sendfax", "showsendscreen(\""+"0"+"\")")
'This also not tested but will set resolution to HIGH or LOW
dde_poke(channel, "Sendfax", "resolution(\""+"HIGH"+"\")")

print_report(vreport_name)

'print_letter(letter_name )

dde_terminate(channel)

'Active Mode - Winfax controller will start if not already running
'Sends the fax and terminates DDE
channel = dde_initiate("FAXMNG", "CONTROL")
dde_execute(channel, "GoActive")
dde_terminate(channel)

fin:
END FUNCTION

BTW, the path to winfax is set by the autoexec script to a variable so it is available in the program but each user can have a different path.

Russ
russ Boehle is offline   Reply With Quote
Old 10-06-2003, 05:15 AM   #5
Tom Cone Jr
"Certified" Alphaholic
 
Join Date: Apr 2000
Location: Florida
Posts: 20,185
Default RE: Faxing from within A5

Russ, I don't think Al is interested in using a 3rd party faxing engine. I think he wants to be able to do it directly from within Alpha Five. This is now an option using Alpha Four, but the company charges $40 more for it.

-- tom
Tom Cone Jr is offline   Reply With Quote
Old 10-06-2003, 05:26 AM   #6
russ Boehle
"Certified" Alphaholic
 
Join Date: Mar 2000
Location: Connecticut
Posts: 2,745
Default RE: Faxing from within A5

Tom,
That very well may be the case but probably isn't going to happen soon. The Winfax DDE works well and allows use of 2 networked modems (on one server). I'd like it built in also but since it isn't, I use Winfax. (We had already been using Winfax)

This is pretty easy to set up and works more or less as if it were part of Alpha. If cost is an issue, Winfax 10.05 can be purchased for about $10.00 per license.

Russ
russ Boehle is offline   Reply With Quote
Old 10-06-2003, 05:35 AM   #7
Tom Cone Jr
"Certified" Alphaholic
 
Join Date: Apr 2000
Location: Florida
Posts: 20,185
Default RE: Faxing from within A5

Russ,

Yes, this is why I'm curious about why this is a priority for him.

-- tom
Tom Cone Jr is offline   Reply With Quote
Old 10-06-2003, 10:03 AM   #8
AL@ALCO-SALES.COM
Member
 
Join Date: May 2000
Posts: 175
Default RE: Faxing from within A5

Thanks for all the discussion on faxing.
I'll try to explain:
Tom
>I'm curious why this is a priority? There are several inexpensive fax print drivers available which can be used with Alpha Five.Why is it important for Alpha Five to be able to create the fax image and manage the transmissions itself ? How much extra would you be willing to pay if Alpha were to add this feature ?
AL@ALCO-SALES.COM is offline   Reply With Quote
Old 10-06-2003, 10:43 AM   #9
russ Boehle
"Certified" Alphaholic
 
Join Date: Mar 2000
Location: Connecticut
Posts: 2,745
Default RE: Faxing from within A5

Al,
You set variables to the parameters then run the function from a button on a form.
You can grab the fax number off of the form (easiest) or from anther table.
Put this fn on a buttom and study it. It's really not that hard.

Ask if you get hung up.

Russ
russ Boehle is offline   Reply With Quote
Old 10-06-2003, 11:01 AM   #10
Jeff, Richards
 
Posts: n/a
Default RE: Faxing from within A5

Just want to add my 2 cents.
I am a manufacturers rep. I represent approx. 40 different manufacturers. I designed an order entry system for my orders. In my application I have a menu item called order processing. When a user clicks on the button a new window opens up. It is a browse which includes all my orders for the week that have not been faxed. I dbl row click on the form. This automatically sends the orders to the winfax print driver, which opens winfax to the address book. I choose the address and away it goes.When I finish faxing all of my orders I close the window. This marks all of the recently faxed orders with a transmission date. Only unfaxed orders show up the next time.
It is very fast and easy. I have been faxing my orders this way since Winfax Dos. Works great. If you need more help, let me know.
  Reply With Quote
Old 10-13-2003, 11:17 AM   #11
Dennis Mathias
Member
 
Join Date: Aug 2000
Posts: 139
Default RE: Faxing from within A5

Weeeeelllll...now I have to put my 2 cents in since I've been doing this very thing (Faxing) from Alpha for two years now flawlessly. It's no big deal. Just set up a button to run a report and tie the report to a specific printer. That printer of course is a fax driver. I use MightyFax since it's nice and small and tidy. I don't work for them but they seem to have a nice driver. They have a 30 day trial.

This may NOT exactly be faxing from within Alpha but it sometimes seems..well, seamless.

I'd rather see A5 NOT get bloated with duplicate builtin applications when an off the shelf solution will do the trick.
Dennis Mathias is offline   Reply With Quote
Old 10-14-2003, 10:49 AM   #12
Ed Barley
Member
 
Join Date: Mar 2002
Location: Southern California
Posts: 975
Default RE: Faxing from within A5

Hi Russ,

Was wondering if this is WINFAX PRO, that you are refering to, or another program?

I was interested in a low cost program, that would fit the bill, that could be used on maybe 10 machines, with networking. Just having the modem or modems on a server machine.

Thanks Ed
Ed Barley is offline   Reply With Quote
Old 10-14-2003, 01:00 PM   #13
russ Boehle
"Certified" Alphaholic
 
Join Date: Mar 2000
Location: Connecticut
Posts: 2,745
Default RE: Faxing from within A5

Yes, Winfax Pro. Make sure it is version 10.02. 10.0 is buggy and won't work correctly. It will run 2 modems on a server to which you can connect I think as many clients as you want. There may be a limit but I forget.
Anyway the interface to Alpha isn't bad once you understand what it's doing. I use DDE. Selwyn has said OLE is better but I coundn't get that to work properly and DDE does what I want so I didn't pursue it further.

Russ
russ Boehle is offline   Reply With Quote
Old 10-14-2003, 01:11 PM   #14
Ed Barley
Member
 
Join Date: Mar 2002
Location: Southern California
Posts: 975
Default RE: Faxing from within A5

Hi Russ,

Just wanted to make sure I was on the right path. Thanks for your comments.


Ed
Ed Barley is offline   Reply With Quote
Old 10-14-2003, 02:57 PM   #15
russ Boehle
"Certified" Alphaholic
 
Join Date: Mar 2000
Location: Connecticut
Posts: 2,745
Default RE: Faxing from within A5

By the way Ed, you can get WinFax for about $10.00 at sites like pricewatch. Also, don't expect any support from Symantec, as far as I can tell they have stopped development on it since faxing is built into win2k and up. It is better than the built in one though and of course can be used for network faxing. Also If you look a the cover page editor you can do some neat things and have alpha call your custom cover page when you want one.

Russ
russ Boehle is offline   Reply With Quote
Old 10-15-2003, 11:48 AM   #16
Ed Barley
Member
 
Join Date: Mar 2002
Location: Southern California
Posts: 975
Default RE: Faxing from within A5

Hi Russ,

Thanks for the tips.

Ed
Ed Barley is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Faxing from A5 Oran Hamilton Alpha Five Version 4 4 02-20-2004 09:01 AM
Faxing from within A5 AL@ALCO-SALES.COM Alpha Five Version 5 4 02-26-2003 05:32 AM
Faxing BRIAN GRAY Alpha Five Version 5 1 01-30-2003 04:11 PM
A5 Faxing using DDE russ Boehle Code Archive 3 01-16-2003 02:15 PM
Faxing from within A5 AL@ALCO-SALES.COM Alpha Five Version 5 17 12-04-2002 06:03 PM


All times are GMT -4. The time now is 11:17 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright © 2008, Alpha Software, Inc.