From my.lists at verizon.net Thu Mar 4 14:37:56 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 04 Mar 2004 12:37:56 -0800 Subject: [dba-VB] Migrating to dot Net Message-ID: <404793A4.2040002@verizon.net> I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco From mikedorism at adelphia.net Thu Mar 4 15:34:22 2004 From: mikedorism at adelphia.net (Mike & Doris Manning) Date: Thu, 4 Mar 2004 16:34:22 -0500 Subject: [dba-VB] Migrating to dot Net In-Reply-To: <404793A4.2040002@verizon.net> Message-ID: <000001c40230$75b97270$c2e44344@hargrove.internal> For the UI, I would just roll up your sleeves and recreate them as some layouts don't easily transfer (especially continuous forms and datasheets). As far as the code is concerned, I've been able to lift the code behind my forms out of Access, transer it to .Net and get up and running with a few tweaks. But if you have dough to spend, check out... http://www.microtools.us/default.htm Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 04, 2004 3:38 PM To: dba-VB Subject: [dba-VB] Migrating to dot Net I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From martyconnelly at shaw.ca Thu Mar 4 17:51:20 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 15:51:20 -0800 Subject: [dba-VB] Making A Phone Call From A Visual Basic Application References: <24142916.1077628010509.JavaMail.www@wwinf3005> Message-ID: <4047C0F8.8040804@shaw.ca> Here is start with a VoIP ocx with IP to IP connection. Todo this other ways you will have to contract with a commercial VOIP server. http://www.vaxvoip.com/web_demo.asp paul.hartland at fsmail.net wrote: >To all, > >We are operating a windows 2000 network with windows XP desktops and as per usual we connect to the internet through our network. Im trying to look a bit further into the future of our internal application, we have a Visual Basic FE connected to a SQL Server 7.0 BE. On this we have personnel and client data, what I want to be able to do is have a button next to the phone number so that when the user clicks it, it dials the number for them. I dont think I can get into our phone network, but is there a way I can connect a headset to the PC and dial the number through our internet connection ? > >I hope Ive explained what I want to do clearly enough, any help, pointers in the right direction etc will be greatly appreciated. > >Thanks in advance. > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From martyconnelly at shaw.ca Thu Mar 4 18:07:59 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 16:07:59 -0800 Subject: [dba-VB] SMS through GPRS Modem References: <000001c3fa89$c12a6330$131511ac@CPQ1700Alecks> Message-ID: <4047C4DF.4020402@shaw.ca> You might be very interested in checking out the extended AT Comamnd set for the GPRS modem that you are using. The Extended AT command set includes commands sent in the following format: AT+xxxx , the "+" denotes an extended command. e.g For a GSM modem, the AT Commands to send an SMS is something like: AT+CMGF=1 // set into text only mode AT+CMGS="+61555555555" //where that is your number a ">" will be received so then type your message, hit CTRL-Z when finished and your message will be sent. These Extended AT Commands will be available with whatever GPRS modem you are using. These are the commands that have advanced functionality. So using something ;ike MSComm OCX to your modem Comm1.PortOpen=True Comm1.OutBufferCount = 0 Comm1.InBufferCount = 0 Comm1.Output = "at+cmgs=" & Chr(34) & Phonenum & Chr(34) & vbCr & strText & Chr(26) then check for" OK" returned by Comm1.Output using doevents or timer Alecks Orlino wrote: >Hello! I'm trying to develop an SMS system to be integrated to our SQL >backend. >We've recently purchased a GPRS modem (iTegno WM1080A) but it's packaged >with a very basic software which is of limited use to us. The manual for the >modem >was not even included. I've very little knowledge of AT commands, none >useful on >accessing SMS on GPRS modems! > >Can anyone provide me with the basic functions or does anybody have a sample >code on how to do it! I'd very much appreciate any help! Thanks > >Alecks > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.573 / Virus Database: 363 - Release Date: 1/28/2004 > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From paul.hartland at fsmail.net Tue Mar 9 02:59:53 2004 From: paul.hartland at fsmail.net (paul.hartland at fsmail.net) Date: Tue, 9 Mar 2004 09:59:53 +0100 (CET) Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 Message-ID: <12287316.1078822793399.JavaMail.www@wwinf3004> To all, Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: 1. Export data using an Access query into Excel. 2. export data using a SQL statement in Visual Basic 6.0 to Excel. Can anyone show me any samples/point me in the right direction please. Thanks in advance for all your help (again). Paul Hartland Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month www.freeserve.com/anytime From martyconnelly at shaw.ca Tue Mar 9 13:19:31 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Tue, 09 Mar 2004 11:19:31 -0800 Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 References: <12287316.1078822793399.JavaMail.www@wwinf3004> Message-ID: <404E18C3.50404@shaw.ca> Here is Import and Export using ADO to Excel from Access should work with VB6 'ExportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ExportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Export Access table into named Excel worksheet 'needs ADO reference, using ADO 2.7 'Will not work if .xls file open Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL As String cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "] FROM " & _ strAccessTable Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub 'ImportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ImportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Import named Excel worksheet into Access table 'needs ADO reference, using ADO 2.7 ' Access table must not exist Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO " & strAccessTable & " From [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "]" Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub paul.hartland at fsmail.net wrote: >To all, > >Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: > >1. Export data using an Access query into Excel. >2. export data using a SQL statement in Visual Basic 6.0 to Excel. > >Can anyone show me any samples/point me in the right direction please. > >Thanks in advance for all your help (again). > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 11 02:43:29 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 00:43:29 -0800 Subject: [dba-VB] dotNet lists Message-ID: <405026B1.4090601@verizon.net> Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco From chartford at cariboo.bc.ca Thu Mar 11 02:43:48 2004 From: chartford at cariboo.bc.ca (Chuck Hartford) Date: Thu, 11 Mar 2004 00:43:48 -0800 Subject: [dba-VB] dotNet lists Message-ID: I am out of the office until March 19, 2004 From bheid at appdevgrp.com Thu Mar 11 06:44:16 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:44:16 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8D64@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB32F@ADGSERVER> Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From bheid at appdevgrp.com Thu Mar 11 06:52:53 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:52:53 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8DC7@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Sorry, I just re-read your post. I thought you meant mailing lists. Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid Sent: Thursday, March 11, 2004 7:44 AM To: dba-vb at databaseadvisors.com Subject: RE: [dba-VB] dotNet lists Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From artful at rogers.com Thu Mar 11 12:02:17 2004 From: artful at rogers.com (Arthur Fuller) Date: Thu, 11 Mar 2004 10:02:17 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405026B1.4090601@verizon.net> Message-ID: <000001c40792$febebff0$6501a8c0@rock> If you haven't yet visited GotDotNet then that's an excellent place to begin. http://www.gotdotnet.com/ -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 12:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From my.lists at verizon.net Thu Mar 11 10:32:34 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:32:34 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Message-ID: <405094A2.2060404@verizon.net> :D, I ment lists, mailing or there otherwise :D. thanks for your reply... I can't find any documentation of compatibility of where the .Net Framework 1.1 will run on such as Win98/SE/ME/NT/2k/XP/2003 any or all of the above :) Bobby Heid wrote: >Sorry, I just re-read your post. I thought you meant mailing lists. > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >Sent: Thursday, March 11, 2004 7:44 AM >To: dba-vb at databaseadvisors.com >Subject: RE: [dba-VB] dotNet lists > > >Several lists here: http://discuss.develop.com/ >Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia >Sent: Thursday, March 11, 2004 3:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:34:14 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:34:14 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <000001c40792$febebff0$6501a8c0@rock> References: <000001c40792$febebff0$6501a8c0@rock> Message-ID: <40509506.7020507@verizon.net> Thanks Arthur, this looks like a great place to start:) Arthur Fuller wrote: >If you haven't yet visited GotDotNet then that's an excellent place to >begin. http://www.gotdotnet.com/ > > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >Tapia >Sent: Thursday, March 11, 2004 12:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:45:12 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:45:12 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405094A2.2060404@verizon.net> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> <405094A2.2060404@verizon.net> Message-ID: <40509798.2090002@verizon.net> :D, Ah I found my answer on that gotdotnet site, which pointed me to the correct Framework page at MS go figure ;o) http://msdn.microsoft.com/netframework/technologyinfo/sysreqs/default.aspx as it turns out it's all of the above w/ Win95 not included but that wasn't on my list anyways. Basic system would be a PII 133 128 ram and 100mb hdd. of course if that IS your system, an upgrade is definately in order ;o) Francisco H Tapia wrote: > :D, I ment lists, mailing or there otherwise :D. thanks for your reply... > > I can't find any documentation of compatibility of where the .Net > Framework 1.1 will run on such as > > Win98/SE/ME/NT/2k/XP/2003 > > any or all of the above :) > > Bobby Heid wrote: > >> Sorry, I just re-read your post. I thought you meant mailing lists. >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >> Sent: Thursday, March 11, 2004 7:44 AM >> To: dba-vb at databaseadvisors.com >> Subject: RE: [dba-VB] dotNet lists >> >> >> Several lists here: http://discuss.develop.com/ >> Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >> Tapia >> Sent: Thursday, March 11, 2004 3:43 AM >> To: dba-VB at databaseadvisors.com >> Subject: [dba-VB] dotNet lists >> >> >> Are there other dotNet sites any of you subscribe to read up on, or >> otherwise frequent for dotNet questions... >> >> things such as deployment, >> development >> ado (dotNET) syntax >> etc. >> >> thanks >> >> > > -- -Francisco From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:04:09 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:04:09 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> List, Haven't seen much action here lately so hopefully someone's "listening". We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. Any help is appreciated. Jim DeMarco Director Application Development Hudson Health Plan T 914.631.1611 x2309 *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:10:59 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:10:59 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159059.24804.22.camel@sgsax-th4022.ksu.edu> Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:14:18 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:14:18 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Thanks Seth. So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. Jim DeMarco -----Original Message----- From: Seth Galitzer [mailto:sgsax at ksu.edu] Sent: Wednesday, March 24, 2004 3:11 PM To: dba-vb at databaseadvisors.com Subject: Re: [dba-VB] Save database data in PDF Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:25:05 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:25:05 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Jim, That's outside of my realm of experience. We've done some work with generating FDF files and pulling PDFs as BLOBs out of a table, but not interacting with Adobe at an API level. The method I suggested will actually require the FDF to be opened in Acrobat first, and then printed from there to a new PDF. I imagine the SDK you have will include what you are looking for, if it exists. I should think that as fas as Adobe is concerned, Acrobat is Acrobat, no matter what it is you're working with. Seth On Wed, 2004-03-24 at 14:14, Jim DeMarco wrote: > Thanks Seth. > > So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. > > Jim DeMarco > -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From carbonnb at sympatico.ca Mon Mar 29 16:39:09 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 17:39:09 -0500 Subject: [dba-VB] Test Message-ID: <40685F3D.18665.172C9CD@localhost> Just a test. But I won't know if it works until at least tomorrow :( Cross you fingers and let's hope the test is a sccess. -- Bryan Carbonnell - carbonnb at sympatico.ca A good friend will come bail you out of jail.... but a true friend will be sitting next to you saying ^Damn... We ****ed up.^ From garykjos at hotmail.com Mon Mar 29 18:41:33 2004 From: garykjos at hotmail.com (Gary Kjos) Date: Mon, 29 Mar 2004 18:41:33 -0600 Subject: [dba-VB] Test Message-ID: OK. Fingers crossed. Hard to type that way though. ;-) Gary Kjos garykjos at hotmail.com >From: "Bryan Carbonnell" >Reply-To: dba-vb at databaseadvisors.com >To: dba-vb at databaseadvisors.com >Subject: [dba-VB] Test >Date: Mon, 29 Mar 2004 17:39:09 -0500 > >Just a test. > >But I won't know if it works until at least tomorrow :( > >Cross you fingers and let's hope the test is a sccess. > >-- >Bryan Carbonnell - carbonnb at sympatico.ca >A good friend will come bail you out of jail.... but a true friend >will be sitting next to you saying ^Damn... We ****ed up.^ > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > _________________________________________________________________ Free up your inbox with MSN Hotmail Extra Storage. Multiple plans available. http://join.msn.com/?pgmarket=en-us&page=hotmail/es2&ST=1/go/onm00200362ave/direct/01/ From carbonnb at sympatico.ca Mon Mar 29 20:10:07 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 21:10:07 -0500 Subject: [dba-VB] Test In-Reply-To: Message-ID: <406890AF.14698.233EF28@localhost> On 29 Mar 2004 at 18:41, Gary Kjos wrote: > OK. Fingers crossed. Hard to type that way though. ;-) Its easier than typing with you hand raised, though :) -- Bryan Carbonnell - carbonnb at sympatico.ca I can only please one person per day. Today is not your day. Tomorrow is not looking good either. From martyconnelly at shaw.ca Wed Mar 31 12:38:26 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Wed, 31 Mar 2004 10:38:26 -0800 Subject: [dba-VB] Info Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 released References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Message-ID: <406B1022.5000807@shaw.ca> Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 enduser runtime download Service Pack 6 for Visual Basic 6.0: Run-Time Redistribution Pack (vbrun60sp6.exe) http://www.microsoft.com/downloads/details.aspx?FamilyID=7b9ba261-7a9c-43e7-9117-f673077ffb3c&DisplayLang=en Visual Studio 6.0 Service Pack 6 Description and Visual Studio VB & Visual C++ downloads http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 4 14:37:56 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 04 Mar 2004 12:37:56 -0800 Subject: [dba-VB] Migrating to dot Net Message-ID: <404793A4.2040002@verizon.net> I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco From mikedorism at adelphia.net Thu Mar 4 15:34:22 2004 From: mikedorism at adelphia.net (Mike & Doris Manning) Date: Thu, 4 Mar 2004 16:34:22 -0500 Subject: [dba-VB] Migrating to dot Net In-Reply-To: <404793A4.2040002@verizon.net> Message-ID: <000001c40230$75b97270$c2e44344@hargrove.internal> For the UI, I would just roll up your sleeves and recreate them as some layouts don't easily transfer (especially continuous forms and datasheets). As far as the code is concerned, I've been able to lift the code behind my forms out of Access, transer it to .Net and get up and running with a few tweaks. But if you have dough to spend, check out... http://www.microtools.us/default.htm Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 04, 2004 3:38 PM To: dba-VB Subject: [dba-VB] Migrating to dot Net I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From martyconnelly at shaw.ca Thu Mar 4 17:51:20 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 15:51:20 -0800 Subject: [dba-VB] Making A Phone Call From A Visual Basic Application References: <24142916.1077628010509.JavaMail.www@wwinf3005> Message-ID: <4047C0F8.8040804@shaw.ca> Here is start with a VoIP ocx with IP to IP connection. Todo this other ways you will have to contract with a commercial VOIP server. http://www.vaxvoip.com/web_demo.asp paul.hartland at fsmail.net wrote: >To all, > >We are operating a windows 2000 network with windows XP desktops and as per usual we connect to the internet through our network. Im trying to look a bit further into the future of our internal application, we have a Visual Basic FE connected to a SQL Server 7.0 BE. On this we have personnel and client data, what I want to be able to do is have a button next to the phone number so that when the user clicks it, it dials the number for them. I dont think I can get into our phone network, but is there a way I can connect a headset to the PC and dial the number through our internet connection ? > >I hope Ive explained what I want to do clearly enough, any help, pointers in the right direction etc will be greatly appreciated. > >Thanks in advance. > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From martyconnelly at shaw.ca Thu Mar 4 18:07:59 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 16:07:59 -0800 Subject: [dba-VB] SMS through GPRS Modem References: <000001c3fa89$c12a6330$131511ac@CPQ1700Alecks> Message-ID: <4047C4DF.4020402@shaw.ca> You might be very interested in checking out the extended AT Comamnd set for the GPRS modem that you are using. The Extended AT command set includes commands sent in the following format: AT+xxxx , the "+" denotes an extended command. e.g For a GSM modem, the AT Commands to send an SMS is something like: AT+CMGF=1 // set into text only mode AT+CMGS="+61555555555" //where that is your number a ">" will be received so then type your message, hit CTRL-Z when finished and your message will be sent. These Extended AT Commands will be available with whatever GPRS modem you are using. These are the commands that have advanced functionality. So using something ;ike MSComm OCX to your modem Comm1.PortOpen=True Comm1.OutBufferCount = 0 Comm1.InBufferCount = 0 Comm1.Output = "at+cmgs=" & Chr(34) & Phonenum & Chr(34) & vbCr & strText & Chr(26) then check for" OK" returned by Comm1.Output using doevents or timer Alecks Orlino wrote: >Hello! I'm trying to develop an SMS system to be integrated to our SQL >backend. >We've recently purchased a GPRS modem (iTegno WM1080A) but it's packaged >with a very basic software which is of limited use to us. The manual for the >modem >was not even included. I've very little knowledge of AT commands, none >useful on >accessing SMS on GPRS modems! > >Can anyone provide me with the basic functions or does anybody have a sample >code on how to do it! I'd very much appreciate any help! Thanks > >Alecks > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.573 / Virus Database: 363 - Release Date: 1/28/2004 > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From paul.hartland at fsmail.net Tue Mar 9 02:59:53 2004 From: paul.hartland at fsmail.net (paul.hartland at fsmail.net) Date: Tue, 9 Mar 2004 09:59:53 +0100 (CET) Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 Message-ID: <12287316.1078822793399.JavaMail.www@wwinf3004> To all, Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: 1. Export data using an Access query into Excel. 2. export data using a SQL statement in Visual Basic 6.0 to Excel. Can anyone show me any samples/point me in the right direction please. Thanks in advance for all your help (again). Paul Hartland Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month www.freeserve.com/anytime From martyconnelly at shaw.ca Tue Mar 9 13:19:31 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Tue, 09 Mar 2004 11:19:31 -0800 Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 References: <12287316.1078822793399.JavaMail.www@wwinf3004> Message-ID: <404E18C3.50404@shaw.ca> Here is Import and Export using ADO to Excel from Access should work with VB6 'ExportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ExportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Export Access table into named Excel worksheet 'needs ADO reference, using ADO 2.7 'Will not work if .xls file open Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL As String cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "] FROM " & _ strAccessTable Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub 'ImportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ImportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Import named Excel worksheet into Access table 'needs ADO reference, using ADO 2.7 ' Access table must not exist Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO " & strAccessTable & " From [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "]" Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub paul.hartland at fsmail.net wrote: >To all, > >Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: > >1. Export data using an Access query into Excel. >2. export data using a SQL statement in Visual Basic 6.0 to Excel. > >Can anyone show me any samples/point me in the right direction please. > >Thanks in advance for all your help (again). > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 11 02:43:29 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 00:43:29 -0800 Subject: [dba-VB] dotNet lists Message-ID: <405026B1.4090601@verizon.net> Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco From chartford at cariboo.bc.ca Thu Mar 11 02:43:48 2004 From: chartford at cariboo.bc.ca (Chuck Hartford) Date: Thu, 11 Mar 2004 00:43:48 -0800 Subject: [dba-VB] dotNet lists Message-ID: I am out of the office until March 19, 2004 From bheid at appdevgrp.com Thu Mar 11 06:44:16 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:44:16 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8D64@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB32F@ADGSERVER> Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From bheid at appdevgrp.com Thu Mar 11 06:52:53 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:52:53 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8DC7@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Sorry, I just re-read your post. I thought you meant mailing lists. Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid Sent: Thursday, March 11, 2004 7:44 AM To: dba-vb at databaseadvisors.com Subject: RE: [dba-VB] dotNet lists Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From artful at rogers.com Thu Mar 11 12:02:17 2004 From: artful at rogers.com (Arthur Fuller) Date: Thu, 11 Mar 2004 10:02:17 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405026B1.4090601@verizon.net> Message-ID: <000001c40792$febebff0$6501a8c0@rock> If you haven't yet visited GotDotNet then that's an excellent place to begin. http://www.gotdotnet.com/ -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 12:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From my.lists at verizon.net Thu Mar 11 10:32:34 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:32:34 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Message-ID: <405094A2.2060404@verizon.net> :D, I ment lists, mailing or there otherwise :D. thanks for your reply... I can't find any documentation of compatibility of where the .Net Framework 1.1 will run on such as Win98/SE/ME/NT/2k/XP/2003 any or all of the above :) Bobby Heid wrote: >Sorry, I just re-read your post. I thought you meant mailing lists. > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >Sent: Thursday, March 11, 2004 7:44 AM >To: dba-vb at databaseadvisors.com >Subject: RE: [dba-VB] dotNet lists > > >Several lists here: http://discuss.develop.com/ >Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia >Sent: Thursday, March 11, 2004 3:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:34:14 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:34:14 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <000001c40792$febebff0$6501a8c0@rock> References: <000001c40792$febebff0$6501a8c0@rock> Message-ID: <40509506.7020507@verizon.net> Thanks Arthur, this looks like a great place to start:) Arthur Fuller wrote: >If you haven't yet visited GotDotNet then that's an excellent place to >begin. http://www.gotdotnet.com/ > > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >Tapia >Sent: Thursday, March 11, 2004 12:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:45:12 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:45:12 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405094A2.2060404@verizon.net> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> <405094A2.2060404@verizon.net> Message-ID: <40509798.2090002@verizon.net> :D, Ah I found my answer on that gotdotnet site, which pointed me to the correct Framework page at MS go figure ;o) http://msdn.microsoft.com/netframework/technologyinfo/sysreqs/default.aspx as it turns out it's all of the above w/ Win95 not included but that wasn't on my list anyways. Basic system would be a PII 133 128 ram and 100mb hdd. of course if that IS your system, an upgrade is definately in order ;o) Francisco H Tapia wrote: > :D, I ment lists, mailing or there otherwise :D. thanks for your reply... > > I can't find any documentation of compatibility of where the .Net > Framework 1.1 will run on such as > > Win98/SE/ME/NT/2k/XP/2003 > > any or all of the above :) > > Bobby Heid wrote: > >> Sorry, I just re-read your post. I thought you meant mailing lists. >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >> Sent: Thursday, March 11, 2004 7:44 AM >> To: dba-vb at databaseadvisors.com >> Subject: RE: [dba-VB] dotNet lists >> >> >> Several lists here: http://discuss.develop.com/ >> Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >> Tapia >> Sent: Thursday, March 11, 2004 3:43 AM >> To: dba-VB at databaseadvisors.com >> Subject: [dba-VB] dotNet lists >> >> >> Are there other dotNet sites any of you subscribe to read up on, or >> otherwise frequent for dotNet questions... >> >> things such as deployment, >> development >> ado (dotNET) syntax >> etc. >> >> thanks >> >> > > -- -Francisco From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:04:09 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:04:09 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> List, Haven't seen much action here lately so hopefully someone's "listening". We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. Any help is appreciated. Jim DeMarco Director Application Development Hudson Health Plan T 914.631.1611 x2309 *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:10:59 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:10:59 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159059.24804.22.camel@sgsax-th4022.ksu.edu> Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:14:18 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:14:18 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Thanks Seth. So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. Jim DeMarco -----Original Message----- From: Seth Galitzer [mailto:sgsax at ksu.edu] Sent: Wednesday, March 24, 2004 3:11 PM To: dba-vb at databaseadvisors.com Subject: Re: [dba-VB] Save database data in PDF Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:25:05 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:25:05 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Jim, That's outside of my realm of experience. We've done some work with generating FDF files and pulling PDFs as BLOBs out of a table, but not interacting with Adobe at an API level. The method I suggested will actually require the FDF to be opened in Acrobat first, and then printed from there to a new PDF. I imagine the SDK you have will include what you are looking for, if it exists. I should think that as fas as Adobe is concerned, Acrobat is Acrobat, no matter what it is you're working with. Seth On Wed, 2004-03-24 at 14:14, Jim DeMarco wrote: > Thanks Seth. > > So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. > > Jim DeMarco > -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From carbonnb at sympatico.ca Mon Mar 29 16:39:09 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 17:39:09 -0500 Subject: [dba-VB] Test Message-ID: <40685F3D.18665.172C9CD@localhost> Just a test. But I won't know if it works until at least tomorrow :( Cross you fingers and let's hope the test is a sccess. -- Bryan Carbonnell - carbonnb at sympatico.ca A good friend will come bail you out of jail.... but a true friend will be sitting next to you saying ^Damn... We ****ed up.^ From garykjos at hotmail.com Mon Mar 29 18:41:33 2004 From: garykjos at hotmail.com (Gary Kjos) Date: Mon, 29 Mar 2004 18:41:33 -0600 Subject: [dba-VB] Test Message-ID: OK. Fingers crossed. Hard to type that way though. ;-) Gary Kjos garykjos at hotmail.com >From: "Bryan Carbonnell" >Reply-To: dba-vb at databaseadvisors.com >To: dba-vb at databaseadvisors.com >Subject: [dba-VB] Test >Date: Mon, 29 Mar 2004 17:39:09 -0500 > >Just a test. > >But I won't know if it works until at least tomorrow :( > >Cross you fingers and let's hope the test is a sccess. > >-- >Bryan Carbonnell - carbonnb at sympatico.ca >A good friend will come bail you out of jail.... but a true friend >will be sitting next to you saying ^Damn... We ****ed up.^ > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > _________________________________________________________________ Free up your inbox with MSN Hotmail Extra Storage. Multiple plans available. http://join.msn.com/?pgmarket=en-us&page=hotmail/es2&ST=1/go/onm00200362ave/direct/01/ From carbonnb at sympatico.ca Mon Mar 29 20:10:07 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 21:10:07 -0500 Subject: [dba-VB] Test In-Reply-To: Message-ID: <406890AF.14698.233EF28@localhost> On 29 Mar 2004 at 18:41, Gary Kjos wrote: > OK. Fingers crossed. Hard to type that way though. ;-) Its easier than typing with you hand raised, though :) -- Bryan Carbonnell - carbonnb at sympatico.ca I can only please one person per day. Today is not your day. Tomorrow is not looking good either. From martyconnelly at shaw.ca Wed Mar 31 12:38:26 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Wed, 31 Mar 2004 10:38:26 -0800 Subject: [dba-VB] Info Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 released References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Message-ID: <406B1022.5000807@shaw.ca> Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 enduser runtime download Service Pack 6 for Visual Basic 6.0: Run-Time Redistribution Pack (vbrun60sp6.exe) http://www.microsoft.com/downloads/details.aspx?FamilyID=7b9ba261-7a9c-43e7-9117-f673077ffb3c&DisplayLang=en Visual Studio 6.0 Service Pack 6 Description and Visual Studio VB & Visual C++ downloads http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 4 14:37:56 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 04 Mar 2004 12:37:56 -0800 Subject: [dba-VB] Migrating to dot Net Message-ID: <404793A4.2040002@verizon.net> I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco From mikedorism at adelphia.net Thu Mar 4 15:34:22 2004 From: mikedorism at adelphia.net (Mike & Doris Manning) Date: Thu, 4 Mar 2004 16:34:22 -0500 Subject: [dba-VB] Migrating to dot Net In-Reply-To: <404793A4.2040002@verizon.net> Message-ID: <000001c40230$75b97270$c2e44344@hargrove.internal> For the UI, I would just roll up your sleeves and recreate them as some layouts don't easily transfer (especially continuous forms and datasheets). As far as the code is concerned, I've been able to lift the code behind my forms out of Access, transer it to .Net and get up and running with a few tweaks. But if you have dough to spend, check out... http://www.microtools.us/default.htm Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 04, 2004 3:38 PM To: dba-VB Subject: [dba-VB] Migrating to dot Net I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From martyconnelly at shaw.ca Thu Mar 4 17:51:20 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 15:51:20 -0800 Subject: [dba-VB] Making A Phone Call From A Visual Basic Application References: <24142916.1077628010509.JavaMail.www@wwinf3005> Message-ID: <4047C0F8.8040804@shaw.ca> Here is start with a VoIP ocx with IP to IP connection. Todo this other ways you will have to contract with a commercial VOIP server. http://www.vaxvoip.com/web_demo.asp paul.hartland at fsmail.net wrote: >To all, > >We are operating a windows 2000 network with windows XP desktops and as per usual we connect to the internet through our network. Im trying to look a bit further into the future of our internal application, we have a Visual Basic FE connected to a SQL Server 7.0 BE. On this we have personnel and client data, what I want to be able to do is have a button next to the phone number so that when the user clicks it, it dials the number for them. I dont think I can get into our phone network, but is there a way I can connect a headset to the PC and dial the number through our internet connection ? > >I hope Ive explained what I want to do clearly enough, any help, pointers in the right direction etc will be greatly appreciated. > >Thanks in advance. > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From martyconnelly at shaw.ca Thu Mar 4 18:07:59 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 16:07:59 -0800 Subject: [dba-VB] SMS through GPRS Modem References: <000001c3fa89$c12a6330$131511ac@CPQ1700Alecks> Message-ID: <4047C4DF.4020402@shaw.ca> You might be very interested in checking out the extended AT Comamnd set for the GPRS modem that you are using. The Extended AT command set includes commands sent in the following format: AT+xxxx , the "+" denotes an extended command. e.g For a GSM modem, the AT Commands to send an SMS is something like: AT+CMGF=1 // set into text only mode AT+CMGS="+61555555555" //where that is your number a ">" will be received so then type your message, hit CTRL-Z when finished and your message will be sent. These Extended AT Commands will be available with whatever GPRS modem you are using. These are the commands that have advanced functionality. So using something ;ike MSComm OCX to your modem Comm1.PortOpen=True Comm1.OutBufferCount = 0 Comm1.InBufferCount = 0 Comm1.Output = "at+cmgs=" & Chr(34) & Phonenum & Chr(34) & vbCr & strText & Chr(26) then check for" OK" returned by Comm1.Output using doevents or timer Alecks Orlino wrote: >Hello! I'm trying to develop an SMS system to be integrated to our SQL >backend. >We've recently purchased a GPRS modem (iTegno WM1080A) but it's packaged >with a very basic software which is of limited use to us. The manual for the >modem >was not even included. I've very little knowledge of AT commands, none >useful on >accessing SMS on GPRS modems! > >Can anyone provide me with the basic functions or does anybody have a sample >code on how to do it! I'd very much appreciate any help! Thanks > >Alecks > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.573 / Virus Database: 363 - Release Date: 1/28/2004 > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From paul.hartland at fsmail.net Tue Mar 9 02:59:53 2004 From: paul.hartland at fsmail.net (paul.hartland at fsmail.net) Date: Tue, 9 Mar 2004 09:59:53 +0100 (CET) Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 Message-ID: <12287316.1078822793399.JavaMail.www@wwinf3004> To all, Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: 1. Export data using an Access query into Excel. 2. export data using a SQL statement in Visual Basic 6.0 to Excel. Can anyone show me any samples/point me in the right direction please. Thanks in advance for all your help (again). Paul Hartland Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month www.freeserve.com/anytime From martyconnelly at shaw.ca Tue Mar 9 13:19:31 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Tue, 09 Mar 2004 11:19:31 -0800 Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 References: <12287316.1078822793399.JavaMail.www@wwinf3004> Message-ID: <404E18C3.50404@shaw.ca> Here is Import and Export using ADO to Excel from Access should work with VB6 'ExportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ExportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Export Access table into named Excel worksheet 'needs ADO reference, using ADO 2.7 'Will not work if .xls file open Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL As String cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "] FROM " & _ strAccessTable Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub 'ImportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ImportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Import named Excel worksheet into Access table 'needs ADO reference, using ADO 2.7 ' Access table must not exist Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO " & strAccessTable & " From [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "]" Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub paul.hartland at fsmail.net wrote: >To all, > >Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: > >1. Export data using an Access query into Excel. >2. export data using a SQL statement in Visual Basic 6.0 to Excel. > >Can anyone show me any samples/point me in the right direction please. > >Thanks in advance for all your help (again). > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 11 02:43:29 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 00:43:29 -0800 Subject: [dba-VB] dotNet lists Message-ID: <405026B1.4090601@verizon.net> Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco From chartford at cariboo.bc.ca Thu Mar 11 02:43:48 2004 From: chartford at cariboo.bc.ca (Chuck Hartford) Date: Thu, 11 Mar 2004 00:43:48 -0800 Subject: [dba-VB] dotNet lists Message-ID: I am out of the office until March 19, 2004 From bheid at appdevgrp.com Thu Mar 11 06:44:16 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:44:16 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8D64@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB32F@ADGSERVER> Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From bheid at appdevgrp.com Thu Mar 11 06:52:53 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:52:53 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8DC7@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Sorry, I just re-read your post. I thought you meant mailing lists. Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid Sent: Thursday, March 11, 2004 7:44 AM To: dba-vb at databaseadvisors.com Subject: RE: [dba-VB] dotNet lists Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From artful at rogers.com Thu Mar 11 12:02:17 2004 From: artful at rogers.com (Arthur Fuller) Date: Thu, 11 Mar 2004 10:02:17 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405026B1.4090601@verizon.net> Message-ID: <000001c40792$febebff0$6501a8c0@rock> If you haven't yet visited GotDotNet then that's an excellent place to begin. http://www.gotdotnet.com/ -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 12:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From my.lists at verizon.net Thu Mar 11 10:32:34 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:32:34 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Message-ID: <405094A2.2060404@verizon.net> :D, I ment lists, mailing or there otherwise :D. thanks for your reply... I can't find any documentation of compatibility of where the .Net Framework 1.1 will run on such as Win98/SE/ME/NT/2k/XP/2003 any or all of the above :) Bobby Heid wrote: >Sorry, I just re-read your post. I thought you meant mailing lists. > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >Sent: Thursday, March 11, 2004 7:44 AM >To: dba-vb at databaseadvisors.com >Subject: RE: [dba-VB] dotNet lists > > >Several lists here: http://discuss.develop.com/ >Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia >Sent: Thursday, March 11, 2004 3:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:34:14 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:34:14 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <000001c40792$febebff0$6501a8c0@rock> References: <000001c40792$febebff0$6501a8c0@rock> Message-ID: <40509506.7020507@verizon.net> Thanks Arthur, this looks like a great place to start:) Arthur Fuller wrote: >If you haven't yet visited GotDotNet then that's an excellent place to >begin. http://www.gotdotnet.com/ > > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >Tapia >Sent: Thursday, March 11, 2004 12:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:45:12 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:45:12 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405094A2.2060404@verizon.net> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> <405094A2.2060404@verizon.net> Message-ID: <40509798.2090002@verizon.net> :D, Ah I found my answer on that gotdotnet site, which pointed me to the correct Framework page at MS go figure ;o) http://msdn.microsoft.com/netframework/technologyinfo/sysreqs/default.aspx as it turns out it's all of the above w/ Win95 not included but that wasn't on my list anyways. Basic system would be a PII 133 128 ram and 100mb hdd. of course if that IS your system, an upgrade is definately in order ;o) Francisco H Tapia wrote: > :D, I ment lists, mailing or there otherwise :D. thanks for your reply... > > I can't find any documentation of compatibility of where the .Net > Framework 1.1 will run on such as > > Win98/SE/ME/NT/2k/XP/2003 > > any or all of the above :) > > Bobby Heid wrote: > >> Sorry, I just re-read your post. I thought you meant mailing lists. >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >> Sent: Thursday, March 11, 2004 7:44 AM >> To: dba-vb at databaseadvisors.com >> Subject: RE: [dba-VB] dotNet lists >> >> >> Several lists here: http://discuss.develop.com/ >> Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >> Tapia >> Sent: Thursday, March 11, 2004 3:43 AM >> To: dba-VB at databaseadvisors.com >> Subject: [dba-VB] dotNet lists >> >> >> Are there other dotNet sites any of you subscribe to read up on, or >> otherwise frequent for dotNet questions... >> >> things such as deployment, >> development >> ado (dotNET) syntax >> etc. >> >> thanks >> >> > > -- -Francisco From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:04:09 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:04:09 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> List, Haven't seen much action here lately so hopefully someone's "listening". We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. Any help is appreciated. Jim DeMarco Director Application Development Hudson Health Plan T 914.631.1611 x2309 *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:10:59 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:10:59 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159059.24804.22.camel@sgsax-th4022.ksu.edu> Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:14:18 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:14:18 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Thanks Seth. So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. Jim DeMarco -----Original Message----- From: Seth Galitzer [mailto:sgsax at ksu.edu] Sent: Wednesday, March 24, 2004 3:11 PM To: dba-vb at databaseadvisors.com Subject: Re: [dba-VB] Save database data in PDF Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:25:05 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:25:05 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Jim, That's outside of my realm of experience. We've done some work with generating FDF files and pulling PDFs as BLOBs out of a table, but not interacting with Adobe at an API level. The method I suggested will actually require the FDF to be opened in Acrobat first, and then printed from there to a new PDF. I imagine the SDK you have will include what you are looking for, if it exists. I should think that as fas as Adobe is concerned, Acrobat is Acrobat, no matter what it is you're working with. Seth On Wed, 2004-03-24 at 14:14, Jim DeMarco wrote: > Thanks Seth. > > So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. > > Jim DeMarco > -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From carbonnb at sympatico.ca Mon Mar 29 16:39:09 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 17:39:09 -0500 Subject: [dba-VB] Test Message-ID: <40685F3D.18665.172C9CD@localhost> Just a test. But I won't know if it works until at least tomorrow :( Cross you fingers and let's hope the test is a sccess. -- Bryan Carbonnell - carbonnb at sympatico.ca A good friend will come bail you out of jail.... but a true friend will be sitting next to you saying ^Damn... We ****ed up.^ From garykjos at hotmail.com Mon Mar 29 18:41:33 2004 From: garykjos at hotmail.com (Gary Kjos) Date: Mon, 29 Mar 2004 18:41:33 -0600 Subject: [dba-VB] Test Message-ID: OK. Fingers crossed. Hard to type that way though. ;-) Gary Kjos garykjos at hotmail.com >From: "Bryan Carbonnell" >Reply-To: dba-vb at databaseadvisors.com >To: dba-vb at databaseadvisors.com >Subject: [dba-VB] Test >Date: Mon, 29 Mar 2004 17:39:09 -0500 > >Just a test. > >But I won't know if it works until at least tomorrow :( > >Cross you fingers and let's hope the test is a sccess. > >-- >Bryan Carbonnell - carbonnb at sympatico.ca >A good friend will come bail you out of jail.... but a true friend >will be sitting next to you saying ^Damn... We ****ed up.^ > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > _________________________________________________________________ Free up your inbox with MSN Hotmail Extra Storage. Multiple plans available. http://join.msn.com/?pgmarket=en-us&page=hotmail/es2&ST=1/go/onm00200362ave/direct/01/ From carbonnb at sympatico.ca Mon Mar 29 20:10:07 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 21:10:07 -0500 Subject: [dba-VB] Test In-Reply-To: Message-ID: <406890AF.14698.233EF28@localhost> On 29 Mar 2004 at 18:41, Gary Kjos wrote: > OK. Fingers crossed. Hard to type that way though. ;-) Its easier than typing with you hand raised, though :) -- Bryan Carbonnell - carbonnb at sympatico.ca I can only please one person per day. Today is not your day. Tomorrow is not looking good either. From martyconnelly at shaw.ca Wed Mar 31 12:38:26 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Wed, 31 Mar 2004 10:38:26 -0800 Subject: [dba-VB] Info Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 released References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Message-ID: <406B1022.5000807@shaw.ca> Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 enduser runtime download Service Pack 6 for Visual Basic 6.0: Run-Time Redistribution Pack (vbrun60sp6.exe) http://www.microsoft.com/downloads/details.aspx?FamilyID=7b9ba261-7a9c-43e7-9117-f673077ffb3c&DisplayLang=en Visual Studio 6.0 Service Pack 6 Description and Visual Studio VB & Visual C++ downloads http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 4 14:37:56 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 04 Mar 2004 12:37:56 -0800 Subject: [dba-VB] Migrating to dot Net Message-ID: <404793A4.2040002@verizon.net> I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco From mikedorism at adelphia.net Thu Mar 4 15:34:22 2004 From: mikedorism at adelphia.net (Mike & Doris Manning) Date: Thu, 4 Mar 2004 16:34:22 -0500 Subject: [dba-VB] Migrating to dot Net In-Reply-To: <404793A4.2040002@verizon.net> Message-ID: <000001c40230$75b97270$c2e44344@hargrove.internal> For the UI, I would just roll up your sleeves and recreate them as some layouts don't easily transfer (especially continuous forms and datasheets). As far as the code is concerned, I've been able to lift the code behind my forms out of Access, transer it to .Net and get up and running with a few tweaks. But if you have dough to spend, check out... http://www.microtools.us/default.htm Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 04, 2004 3:38 PM To: dba-VB Subject: [dba-VB] Migrating to dot Net I was checking out the reporting services for Sql Server and man that is very slick. Now for a quick 'n' dirty question anybody know of a way of exporting the forms out of an .mdb or .adp to a .net application? The forms are all unbound and except for the areas where the currentproject is used, i think it'll be quite easy. Thanks in advance for any links, help keywords or "pointing out of the obvious" -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From martyconnelly at shaw.ca Thu Mar 4 17:51:20 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 15:51:20 -0800 Subject: [dba-VB] Making A Phone Call From A Visual Basic Application References: <24142916.1077628010509.JavaMail.www@wwinf3005> Message-ID: <4047C0F8.8040804@shaw.ca> Here is start with a VoIP ocx with IP to IP connection. Todo this other ways you will have to contract with a commercial VOIP server. http://www.vaxvoip.com/web_demo.asp paul.hartland at fsmail.net wrote: >To all, > >We are operating a windows 2000 network with windows XP desktops and as per usual we connect to the internet through our network. Im trying to look a bit further into the future of our internal application, we have a Visual Basic FE connected to a SQL Server 7.0 BE. On this we have personnel and client data, what I want to be able to do is have a button next to the phone number so that when the user clicks it, it dials the number for them. I dont think I can get into our phone network, but is there a way I can connect a headset to the PC and dial the number through our internet connection ? > >I hope Ive explained what I want to do clearly enough, any help, pointers in the right direction etc will be greatly appreciated. > >Thanks in advance. > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From martyconnelly at shaw.ca Thu Mar 4 18:07:59 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Thu, 04 Mar 2004 16:07:59 -0800 Subject: [dba-VB] SMS through GPRS Modem References: <000001c3fa89$c12a6330$131511ac@CPQ1700Alecks> Message-ID: <4047C4DF.4020402@shaw.ca> You might be very interested in checking out the extended AT Comamnd set for the GPRS modem that you are using. The Extended AT command set includes commands sent in the following format: AT+xxxx , the "+" denotes an extended command. e.g For a GSM modem, the AT Commands to send an SMS is something like: AT+CMGF=1 // set into text only mode AT+CMGS="+61555555555" //where that is your number a ">" will be received so then type your message, hit CTRL-Z when finished and your message will be sent. These Extended AT Commands will be available with whatever GPRS modem you are using. These are the commands that have advanced functionality. So using something ;ike MSComm OCX to your modem Comm1.PortOpen=True Comm1.OutBufferCount = 0 Comm1.InBufferCount = 0 Comm1.Output = "at+cmgs=" & Chr(34) & Phonenum & Chr(34) & vbCr & strText & Chr(26) then check for" OK" returned by Comm1.Output using doevents or timer Alecks Orlino wrote: >Hello! I'm trying to develop an SMS system to be integrated to our SQL >backend. >We've recently purchased a GPRS modem (iTegno WM1080A) but it's packaged >with a very basic software which is of limited use to us. The manual for the >modem >was not even included. I've very little knowledge of AT commands, none >useful on >accessing SMS on GPRS modems! > >Can anyone provide me with the basic functions or does anybody have a sample >code on how to do it! I'd very much appreciate any help! Thanks > >Alecks > >--- >Outgoing mail is certified Virus Free. >Checked by AVG anti-virus system (http://www.grisoft.com). >Version: 6.0.573 / Virus Database: 363 - Release Date: 1/28/2004 > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From paul.hartland at fsmail.net Tue Mar 9 02:59:53 2004 From: paul.hartland at fsmail.net (paul.hartland at fsmail.net) Date: Tue, 9 Mar 2004 09:59:53 +0100 (CET) Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 Message-ID: <12287316.1078822793399.JavaMail.www@wwinf3004> To all, Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: 1. Export data using an Access query into Excel. 2. export data using a SQL statement in Visual Basic 6.0 to Excel. Can anyone show me any samples/point me in the right direction please. Thanks in advance for all your help (again). Paul Hartland Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month www.freeserve.com/anytime From martyconnelly at shaw.ca Tue Mar 9 13:19:31 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Tue, 09 Mar 2004 11:19:31 -0800 Subject: [dba-VB] Exporting a query from Access to Excel Using VB6 References: <12287316.1078822793399.JavaMail.www@wwinf3004> Message-ID: <404E18C3.50404@shaw.ca> Here is Import and Export using ADO to Excel from Access should work with VB6 'ExportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ExportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Export Access table into named Excel worksheet 'needs ADO reference, using ADO 2.7 'Will not work if .xls file open Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL As String cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "] FROM " & _ strAccessTable Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub 'ImportSpreadSheet "c:\excel\excelrankfunction.mdb","c:\excel\products.xls","BooksXLS","Books" Sub ImportSpreadSheet(strAccessFile As String, strExcelFile As String, _ strAccessTable As String, strSheetName As String) 'Import named Excel worksheet into Access table 'needs ADO reference, using ADO 2.7 ' Access table must not exist Dim cnSrc As New ADODB.Connection Dim num_copied As Long Dim strSQL cnSrc.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strAccessFile & ";" strSQL = "SELECT * INTO " & strAccessTable & " From [Excel 8.0;" & _ "Database=" & strExcelFile & "].[" & strSheetName & "]" Debug.Print strSQL cnSrc.Execute strSQL, num_copied cnSrc.Close MsgBox "Copied " & num_copied & " records." End Sub paul.hartland at fsmail.net wrote: >To all, > >Basically the subject line of my email says it all, I have a VB application and I want to do one of two things: > >1. Export data using an Access query into Excel. >2. export data using a SQL statement in Visual Basic 6.0 to Excel. > >Can anyone show me any samples/point me in the right direction please. > >Thanks in advance for all your help (again). > >Paul Hartland >Freeserve AnyTime - HALF PRICE for the first 3 months - Save ?7.50 a month >www.freeserve.com/anytime >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > > > > -- Marty Connelly Victoria, B.C. Canada From my.lists at verizon.net Thu Mar 11 02:43:29 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 00:43:29 -0800 Subject: [dba-VB] dotNet lists Message-ID: <405026B1.4090601@verizon.net> Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco From chartford at cariboo.bc.ca Thu Mar 11 02:43:48 2004 From: chartford at cariboo.bc.ca (Chuck Hartford) Date: Thu, 11 Mar 2004 00:43:48 -0800 Subject: [dba-VB] dotNet lists Message-ID: I am out of the office until March 19, 2004 From bheid at appdevgrp.com Thu Mar 11 06:44:16 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:44:16 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8D64@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB32F@ADGSERVER> Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From bheid at appdevgrp.com Thu Mar 11 06:52:53 2004 From: bheid at appdevgrp.com (Bobby Heid) Date: Thu, 11 Mar 2004 07:52:53 -0500 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA307C8DC7@ADGSERVER> Message-ID: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Sorry, I just re-read your post. I thought you meant mailing lists. Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid Sent: Thursday, March 11, 2004 7:44 AM To: dba-vb at databaseadvisors.com Subject: RE: [dba-VB] dotNet lists Several lists here: http://discuss.develop.com/ Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) Bobby -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 3:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From artful at rogers.com Thu Mar 11 12:02:17 2004 From: artful at rogers.com (Arthur Fuller) Date: Thu, 11 Mar 2004 10:02:17 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405026B1.4090601@verizon.net> Message-ID: <000001c40792$febebff0$6501a8c0@rock> If you haven't yet visited GotDotNet then that's an excellent place to begin. http://www.gotdotnet.com/ -----Original Message----- From: dba-vb-bounces at databaseadvisors.com [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia Sent: Thursday, March 11, 2004 12:43 AM To: dba-VB at databaseadvisors.com Subject: [dba-VB] dotNet lists Are there other dotNet sites any of you subscribe to read up on, or otherwise frequent for dotNet questions... things such as deployment, development ado (dotNET) syntax etc. thanks -- -Francisco _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com From my.lists at verizon.net Thu Mar 11 10:32:34 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:32:34 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> Message-ID: <405094A2.2060404@verizon.net> :D, I ment lists, mailing or there otherwise :D. thanks for your reply... I can't find any documentation of compatibility of where the .Net Framework 1.1 will run on such as Win98/SE/ME/NT/2k/XP/2003 any or all of the above :) Bobby Heid wrote: >Sorry, I just re-read your post. I thought you meant mailing lists. > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >Sent: Thursday, March 11, 2004 7:44 AM >To: dba-vb at databaseadvisors.com >Subject: RE: [dba-VB] dotNet lists > > >Several lists here: http://discuss.develop.com/ >Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) > >Bobby > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H Tapia >Sent: Thursday, March 11, 2004 3:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:34:14 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:34:14 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <000001c40792$febebff0$6501a8c0@rock> References: <000001c40792$febebff0$6501a8c0@rock> Message-ID: <40509506.7020507@verizon.net> Thanks Arthur, this looks like a great place to start:) Arthur Fuller wrote: >If you haven't yet visited GotDotNet then that's an excellent place to >begin. http://www.gotdotnet.com/ > > >-----Original Message----- >From: dba-vb-bounces at databaseadvisors.com >[mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >Tapia >Sent: Thursday, March 11, 2004 12:43 AM >To: dba-VB at databaseadvisors.com >Subject: [dba-VB] dotNet lists > > >Are there other dotNet sites any of you subscribe to read up on, or >otherwise frequent for dotNet questions... > >things such as deployment, >development >ado (dotNET) syntax >etc. > >thanks > > -- -Francisco From my.lists at verizon.net Thu Mar 11 10:45:12 2004 From: my.lists at verizon.net (Francisco H Tapia) Date: Thu, 11 Mar 2004 08:45:12 -0800 Subject: [dba-VB] dotNet lists In-Reply-To: <405094A2.2060404@verizon.net> References: <916187228923D311A6FE00A0CC3FAA305BB330@ADGSERVER> <405094A2.2060404@verizon.net> Message-ID: <40509798.2090002@verizon.net> :D, Ah I found my answer on that gotdotnet site, which pointed me to the correct Framework page at MS go figure ;o) http://msdn.microsoft.com/netframework/technologyinfo/sysreqs/default.aspx as it turns out it's all of the above w/ Win95 not included but that wasn't on my list anyways. Basic system would be a PII 133 128 ram and 100mb hdd. of course if that IS your system, an upgrade is definately in order ;o) Francisco H Tapia wrote: > :D, I ment lists, mailing or there otherwise :D. thanks for your reply... > > I can't find any documentation of compatibility of where the .Net > Framework 1.1 will run on such as > > Win98/SE/ME/NT/2k/XP/2003 > > any or all of the above :) > > Bobby Heid wrote: > >> Sorry, I just re-read your post. I thought you meant mailing lists. >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Bobby Heid >> Sent: Thursday, March 11, 2004 7:44 AM >> To: dba-vb at databaseadvisors.com >> Subject: RE: [dba-VB] dotNet lists >> >> >> Several lists here: http://discuss.develop.com/ >> Some ASP.Net lists: http://aspadvice.com/ (look for lists on left) >> >> Bobby >> >> -----Original Message----- >> From: dba-vb-bounces at databaseadvisors.com >> [mailto:dba-vb-bounces at databaseadvisors.com] On Behalf Of Francisco H >> Tapia >> Sent: Thursday, March 11, 2004 3:43 AM >> To: dba-VB at databaseadvisors.com >> Subject: [dba-VB] dotNet lists >> >> >> Are there other dotNet sites any of you subscribe to read up on, or >> otherwise frequent for dotNet questions... >> >> things such as deployment, >> development >> ado (dotNET) syntax >> etc. >> >> thanks >> >> > > -- -Francisco From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:04:09 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:04:09 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> List, Haven't seen much action here lately so hopefully someone's "listening". We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. Any help is appreciated. Jim DeMarco Director Application Development Hudson Health Plan T 914.631.1611 x2309 *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:10:59 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:10:59 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F9902E80141@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159059.24804.22.camel@sgsax-th4022.ksu.edu> Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From Jdemarco at hudsonhealthplan.org Wed Mar 24 14:14:18 2004 From: Jdemarco at hudsonhealthplan.org (Jim DeMarco) Date: Wed, 24 Mar 2004 15:14:18 -0500 Subject: [dba-VB] Save database data in PDF Message-ID: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Thanks Seth. So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. Jim DeMarco -----Original Message----- From: Seth Galitzer [mailto:sgsax at ksu.edu] Sent: Wednesday, March 24, 2004 3:11 PM To: dba-vb at databaseadvisors.com Subject: Re: [dba-VB] Save database data in PDF Jim, What you need is something that will generate a pdf file. Acrobat Reader won't do that. You (and your clients) can either buy the full version of Acrobat, or a third-party PDF printing tool. Basically, once you open your fdf/pdf files in Acrobat, you turn right around a print from Acrobat to a PDF file using Distiller or something like it. A quick Google search on "print pdf" should give you several options for third-party tools. Seth On Wed, 2004-03-24 at 14:04, Jim DeMarco wrote: > List, > > Haven't seen much action here lately so hopefully someone's "listening". > > We have an app that allows users to display and print database data using Acrobat Reader (using an FDF file to hold the db data in an electronic version of a paper application form). We now have a need to integrate any older electronic data with our archived applications (scanned paper images) so we decided to create and save them as PDFs. My question is how to save the data filled applications in PDF format? Is there a tool that can perform a "Save As" on an FDF filled with data? We have the Adobe forms SDK but my developer tells me it can't save the files as PDF. Some other option maybe? I called Adobe but tech support pawned me off on customer service who kept trying to sell me Acrobat 6. > > Any help is appreciated. > > Jim DeMarco > Director Application Development > Hudson Health Plan > T 914.631.1611 x2309 > > > > *********************************************************************************** > "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". > *********************************************************************************** > > _______________________________________________ > dba-VB mailing list > dba-VB at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-vb > http://www.databaseadvisors.com -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University _______________________________________________ dba-VB mailing list dba-VB at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-vb http://www.databaseadvisors.com *********************************************************************************** "This electronic message is intended to be for the use only of the named recipient, and may contain information from Hudson Health Plan (HHP) that is confidential or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message is strictly prohibited. If you have received this message in error or are not the named recipient, please notify us immediately, either by contacting the sender at the electronic mail address noted above or calling HHP at (914) 631-1611. If you are not the intended recipient, please do not forward this email to anyone, and delete and destroy all copies of this message. Thank You". *********************************************************************************** From sgsax at ksu.edu Wed Mar 24 14:25:05 2004 From: sgsax at ksu.edu (Seth Galitzer) Date: Wed, 24 Mar 2004 14:25:05 -0600 Subject: [dba-VB] Save database data in PDF In-Reply-To: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> Message-ID: <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Jim, That's outside of my realm of experience. We've done some work with generating FDF files and pulling PDFs as BLOBs out of a table, but not interacting with Adobe at an API level. The method I suggested will actually require the FDF to be opened in Acrobat first, and then printed from there to a new PDF. I imagine the SDK you have will include what you are looking for, if it exists. I should think that as fas as Adobe is concerned, Acrobat is Acrobat, no matter what it is you're working with. Seth On Wed, 2004-03-24 at 14:14, Jim DeMarco wrote: > Thanks Seth. > > So using the full version of Acrobat we can print to the Distiller (I believe we have v5). Do you know if we can do this programatically? I thought there might be an SDK that we could use. I know we did when implementing the FDF. > > Jim DeMarco > -- Seth Galitzer sgsax at ksu.edu Computing Specialist http://puma.agron.ksu.edu/~sgsax Dept. of Plant Pathology Kansas State University From carbonnb at sympatico.ca Mon Mar 29 16:39:09 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 17:39:09 -0500 Subject: [dba-VB] Test Message-ID: <40685F3D.18665.172C9CD@localhost> Just a test. But I won't know if it works until at least tomorrow :( Cross you fingers and let's hope the test is a sccess. -- Bryan Carbonnell - carbonnb at sympatico.ca A good friend will come bail you out of jail.... but a true friend will be sitting next to you saying ^Damn... We ****ed up.^ From garykjos at hotmail.com Mon Mar 29 18:41:33 2004 From: garykjos at hotmail.com (Gary Kjos) Date: Mon, 29 Mar 2004 18:41:33 -0600 Subject: [dba-VB] Test Message-ID: OK. Fingers crossed. Hard to type that way though. ;-) Gary Kjos garykjos at hotmail.com >From: "Bryan Carbonnell" >Reply-To: dba-vb at databaseadvisors.com >To: dba-vb at databaseadvisors.com >Subject: [dba-VB] Test >Date: Mon, 29 Mar 2004 17:39:09 -0500 > >Just a test. > >But I won't know if it works until at least tomorrow :( > >Cross you fingers and let's hope the test is a sccess. > >-- >Bryan Carbonnell - carbonnb at sympatico.ca >A good friend will come bail you out of jail.... but a true friend >will be sitting next to you saying ^Damn... We ****ed up.^ > > >_______________________________________________ >dba-VB mailing list >dba-VB at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/dba-vb >http://www.databaseadvisors.com > _________________________________________________________________ Free up your inbox with MSN Hotmail Extra Storage. Multiple plans available. http://join.msn.com/?pgmarket=en-us&page=hotmail/es2&ST=1/go/onm00200362ave/direct/01/ From carbonnb at sympatico.ca Mon Mar 29 20:10:07 2004 From: carbonnb at sympatico.ca (Bryan Carbonnell) Date: Mon, 29 Mar 2004 21:10:07 -0500 Subject: [dba-VB] Test In-Reply-To: Message-ID: <406890AF.14698.233EF28@localhost> On 29 Mar 2004 at 18:41, Gary Kjos wrote: > OK. Fingers crossed. Hard to type that way though. ;-) Its easier than typing with you hand raised, though :) -- Bryan Carbonnell - carbonnb at sympatico.ca I can only please one person per day. Today is not your day. Tomorrow is not looking good either. From martyconnelly at shaw.ca Wed Mar 31 12:38:26 2004 From: martyconnelly at shaw.ca (MartyConnelly) Date: Wed, 31 Mar 2004 10:38:26 -0800 Subject: [dba-VB] Info Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 released References: <22F1CCD5171D17419CB37FEEE09D5F99030FE608@TTNEXCHSRV1.hshhp.com> <1080159904.24804.27.camel@sgsax-th4022.ksu.edu> Message-ID: <406B1022.5000807@shaw.ca> Microsoft Service Pack 6 for Visual Basic 6.0, Visual C++ 6.0 enduser runtime download Service Pack 6 for Visual Basic 6.0: Run-Time Redistribution Pack (vbrun60sp6.exe) http://www.microsoft.com/downloads/details.aspx?FamilyID=7b9ba261-7a9c-43e7-9117-f673077ffb3c&DisplayLang=en Visual Studio 6.0 Service Pack 6 Description and Visual Studio VB & Visual C++ downloads http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx -- Marty Connelly Victoria, B.C. Canada