<?xml version="1.0" encoding="iso-8859-1"?><rss version="2.0"><channel><title>Universal Thread Support Area feed</title><description>Most recent technical threads updated every minute</description><lastBuildDate>Sun, 05 Feb 2012 03:56:40 EST</lastBuildDate><link>http://www.universalthread.com/</link><item><title>Releasing objects added to the screen [Visual FoxPro] - 5 messages (Ken Levy)</title><description><![CDATA[I have created an object that I place on the screen... ie I use _screen.addobject
How do I get the object to release. I know clear all works, but that is kind of drastic, don't you think?
Mike]]></description><pubDate>Sun, 05 Feb 2012 03:55:43 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>VFP Speed [Visual FoxPro] - 14 messages (Jos Pols)</title><description><![CDATA[Hi All,

I am doing a raw speed test on some very simple operations to compare basic VFP operations with another language. Would some of you care to do a similar test against another language of your choice? e.g. Python, PHP, VB.Net, whatever. I am looking for VFP speed vs. language_of_your_choice speed on the same machine. Here are two simple tests manipulating some numbers and building a string in VFP



CLEAR
tStartTime = SECONDS()
ta=0
FOR i = 1 TO 1000000
  ta = Log(i) + Cos(i) + Sin(i) + Log(i) + exp(i)
next  
? SECONDS() - tStartTime 

*

tStartTime = SECONDS()
ta = ""
FOR i = 1 TO 1000000
  ta = ta + "xx"
next  
? SECONDS() - tStartTime 
]]></description><pubDate>Sun, 05 Feb 2012 03:33:52 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Microsoft: Windows Phone 8 To Use NT Kernel [iPhone/iPad] - 6 messages (Ken Levy)</title><description><![CDATA[Way cool!

http://www.osnews.com/story/25574/Microsoft_Windows_Phone_8_To_Use_NT_Kernel]]></description><pubDate>Sun, 05 Feb 2012 00:41:43 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Screencast: Class Browser for Visual FoxPro by Ken Levy [Visual FoxPro] - 5 messages (Tore Bleken)</title><description><![CDATA[Today I’m announcing MashupX screencasts presented by Ken Levy, starting with one on the topic of the Class Browser in Visual FoxPro.

I have the first in a series of JavaScript for VFP developers going online later today. Future ideas for topics include Class Browser add-ins/automation, Component Gallery, Creating custom Builders, and topics non-VFP related such as apps/utilities tips for Windows, Mac, and iOS. 

The Class Browser screencast is for any VFP developer who is or has used it since VFP 3.0, which I originally designed and wrote over 16 years ago. For this first screencast, optionally to consider it a donation if you think you’ve benefited at least $10 of value from the Class Browser over the past 15+ years.

The overall donations for my screencasts will determine how I can justify preparing and recording more screencasts for those who are interested. Feel free to provide constructive feedback on this first one in the series to help improve future screencasts.

http...]]></description><pubDate>Sat, 04 Feb 2012 18:44:58 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Copy dbf structure to mySQL table [Visual FoxPro] - 4 messages (Bill Fitzgerald)</title><description><![CDATA[Hi

I've been working with PHP and mySQL for some time and I like it.
I can manage my mySQL tables with VFP via ODBC.

Now I installed mySQL  in my desktop (localhost)

Is there a way to copy structure of my .dbf file to a mySQL (localhost) table via ODBC ?

Or do I have to create the structure manually ?

The ideal was to create the structure with all data inside, but if I could only create the struture,
I think I could be able to copy all via ODBC.


Moises]]></description><pubDate>Sat, 04 Feb 2012 13:15:41 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Best way to sort a collection [.NET] - 5 messages (Viv Phillips)</title><description><![CDATA[In a collection, the only thing I add in it is an object, which is an array of various parameters. One of them is a priority. I need to sort that collection based on the priority.

For examples, the collection is build like this:


        ' Add an Image
        ' expC1 Image
        ' expC2 Text
        ' expC3 Tooltip
        ' expC4 Url
        ' expL1 Separator
        '       Optional
        ' expC5 Target
        '       Optional
        Public Function AddImage(ByVal tcImage As String, ByVal tcText As String, _
         ByVal tcTooltip As String, ByVal tcUrl As String, _
         Optional ByVal tlSeparator As Boolean = False, _
         Optional ByVal tcTarget As String = "", _
         Optional ByVal tnPriority As Integer = 0) As Boolean
            Dim loObject(6) As Object
            Dim loObject2(3) As Object

            loObject(1) = tcImage
            loObject(2) = tcText
            loObject(3) = tcTooltip
            loObject(4) = tcUrl
    ...]]></description><pubDate>Sat, 04 Feb 2012 04:30:02 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Textbox loses its Anchor behavior upon Resize [Visual FoxPro] - 4 messages (Dennis Lim)</title><description><![CDATA[Hi Experts,

I have a textbox class which I used as sort of a title holder to be dropped in a form.  Its Anchor property is 10 (Resize Width).  I put a method named Dock to make sure it is placed at the topmost part of the form.  Dock method is called in its Init().  

In my Dock method, I placed the Anchor setting to a variable, did the 'docking', then restored the Anchor value of this textbox.

The form's Init though resizes the form's width, which I expect the textbox to follow suit since its Anchor setting is 10.  Lo and behold, it does not!

The weird thing is, if I drop this textbox class on a form that does not resize its width, it behaves well.

Thanks in advance for any help on this.

Dennis]]></description><pubDate>Fri, 03 Feb 2012 22:43:42 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Joining two consecutive REPORT FORM.. PREVIEWs [Visual FoxPro] - 9 messages (Dennis Lim)</title><description><![CDATA[Hi Experts,

Is it possible to join or merge two or more consecutive REPORT FORM.. PREVIEW outputs into one?

To further elaborate, I would like to say:

1.  fetch statement records of Customer A.. then issue REPORT FORM... PREVIEW
2.  fetch statement records of Customer B.. then issue REPORT FORM... PREVIEW

The above will mean that the first PREVIEW will show, then wait for it to be closed for the second one to execute.

How could I do it in such a way that after doing the PREVIEW be shown after all two (or more) are done?

Thanks In Advance,
Dennis]]></description><pubDate>Fri, 03 Feb 2012 21:29:39 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Printing labels on LPT1 from VFP [Visual FoxPro] - 2 messages (Sergey Berezniker)</title><description><![CDATA[Hi friends

Till now I was printing codebar labels through Clipper with these simple instructions:

SET PRINTER TO (PORT)
SET DEVI TO PRINT
? NARCHI

"NARCHI" is a variable that contains a set of particulars commands which cause nice codebar labels are printed.

 Now I want to do the same in VFP. Since I have no problems to print other documents on LPT1 I thought this would work

SET CONSOLE OFF
SET PRINTER TO NAME (ETIQ_PIMP)
SET PRINTER ON
SET DEVICE TO PRINT

?? NARCHI

SET PRINTER OFF
SET CONSOLE ON
SET DEVICE TO SCREEN
SET PRINTER TO

But printer prints literal commands

I create a file with the same commands I'm sending to print. If I try to print that file from DOS it prints correctly.

I know I could try to print that file using COPY FILE NARCHI TO LPT1.DOS and it will work but I must considere perhaps a non LPT printer could be used.

Any idea?

Thank you.

                                         Héctor]]></description><pubDate>Fri, 03 Feb 2012 19:50:54 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Installed excel 2010 [Visual FoxPro] - 6 messages (Yossi Gourarie)</title><description><![CDATA[Hi All:

This code hangs once I installed Excel 2010.  BTW, I left Excel 2003 on my computer as well.


LOCAL loExcel AS Excel.APPLICATION

CLOSE ALL

SET PROCEDURE TO sysproc
SET DELETED ON

CLEAR

SUSPEND

USE flckmast ORDER flcode

loExcel = CREATEOBJECT("Excel.application")
loExcel.VISIBLE = .F.

loWorkBook = loExcel.Workbooks.OPEN('P:\Flock Information.xls')  &&HANGS HERE


Thanks,

Yossi]]></description><pubDate>Fri, 03 Feb 2012 17:07:47 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>How to create a menu or contextmenu on form [Visual FoxPro] - 2 messages (Sergey Berezniker)</title><description><![CDATA[how to create a menu or contextmenu on a form without using right click.]]></description><pubDate>Fri, 03 Feb 2012 16:53:25 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Changing Checkbox from White to ???? [Visual FoxPro] - 3 messages (Tommy Tillman)</title><description><![CDATA[Hi Gang!

Any way to change the WHITE color of the checkbox to some other color ???   (not the Background color of the Text part of the Checkbox.... the actual little Checkbox square white color ) ????

Thanks a bunch!]]></description><pubDate>Fri, 03 Feb 2012 15:31:51 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Performance - union [Microsoft SQL Server] - 40 messages (Fabio Lunardon)</title><description><![CDATA[Hi
I have a view (MyView) which is 

SELECT * FROM DB1.dbo.tableA
UNION 
SELECT * FROM DB2.dbo.TableB


I have SQL statement


SELECT myView.* FROM MyView
INNER JOIN DB2.dbo.TableZ ON myView.Key = TableZ.Key


It is working fine, returned result in 2 secs

However, if I amend it as below, it will take more than a minute to execute.


SELECT myView.*, TableZ.FieldA FROM MyView
INNER JOIN DB2.dbo.TableZ ON myView.Key = TableZ.Key


After some trial and error, found that, if I remark the edit my view without UNION (select only from TableB), the performance is 2 secs as well. Why?

Beside, I tried to add an index which contains Key + FieldA, but not helping at all.

Please advice, why remove the UNION can be helpful? How to solve this matter with "right" way?

Thank you]]></description><pubDate>Fri, 03 Feb 2012 13:42:47 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>SSMS for 2008 [Microsoft SQL Server] - 9 messages (Michel Fournier)</title><description><![CDATA[On a development server I am using, this is SSMS for 2005. However, we can now connect to another server which is SQL Server 2008 64 bits. Howewer, if I use SSMS 2005, this will not be fully integrated for the support of 2008. Is there a way on that server to install SSMS for 2008 so I can benefit from everything when I connect to the other server?]]></description><pubDate>Fri, 03 Feb 2012 13:33:48 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Sql to mysql query [Visual FoxPro] - 7 messages (Khubaib Khalid)</title><description><![CDATA[Sergey i think u gave me reply . I searched but could not find thread.
Now i want to use query into mysql SQLEXEC. How this possible
thanks


insert into dlyatten (code, date, type, category, scode, lCode, sec,syear ) ;
   select code, m.pDate, 1, "P", scode, lCode, Sec,ssyear ;  
	   from Student st ;
	   WHERE Admtd = 1 ;
		AND NOT EXISTS (SELECT * FROM dlyatten dl ;
			WHERE dl.code = st.code AND date=pdate )
]]></description><pubDate>Fri, 03 Feb 2012 11:45:43 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Data Group not overflowing to new page [Visual FoxPro] - 7 messages (Srdjan Djordjevic)</title><description><![CDATA[Hello All,

I have 1 application that is still compiled in VFP6 SP5. The reason for this is because when we try convert and compile it in VFP9, the report will not function correctly. In the Group Footer we have several dynamic Field controls. These fields will contain Comments and tend to stretch. If blank, they are removed. In VFP6 when the 6 fields contain excess test, they continue onto the next page. Along with all the other controls that are set: Fix Relative to Bottom of Band. But when we convert/compile in VFP9, they just run off the bottom of the page and most are not even printed since the page is only so long.

I've tried to adjust the report to have all the Group Footer data in the Summary, but this gave me the same results. The bands are not overflowing to a new page. Is there a setting I've not been able to find?

TIA
Mike]]></description><pubDate>Fri, 03 Feb 2012 10:02:10 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Can VFP app have its own copy of Word? [Visual FoxPro] - 9 messages (Tamar Granor)</title><description><![CDATA[I have a VFP app that produces documents under OLE automation. Currently it instantiates Word as required, releasing the copy when the documents have been printed.  Recently the client moved the app to Terminal Server and added additional users.  Shortly afterward, users began to complain that document preparation had slowed down.  They have beefed up TS and added more RAM and that has helped.  I know that instantiating Word is a slow process.  Would it be practical to instantiate a copy of Word as the VFP app loads and have it ready when needed?  Would that increase the number of Microsoft licenses they need?  

The other task that is really slow is changing printer drivers in Word but I don't see any way to improve that.]]></description><pubDate>Fri, 03 Feb 2012 09:24:28 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Slow network to server [Windows] - 10 messages (Greg Reichert)</title><description><![CDATA[There are two people on a Win08 server.  It is a 100Mb network. All are set to 100Mg Full Duplex.  But the best we can achieve is about 300KB (2.5Mb) through-put (sp).  I have not been able to discover any erroring on the network.  Is there anything esle I can look for to help resolve the speed issue?]]></description><pubDate>Fri, 03 Feb 2012 07:46:31 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Ayuda sobre una consulta [Visual FoxPro] - 3 messages (Hilmar Zonneveld)</title><description><![CDATA[Muy buenas tardes.
Muchas gracias de antemano.


Tengo una tabla con los campos: 
FACTURAS - COD_ART - DES_ART - CANTIDAD - PRECIO.

en un formulario coloco 2 campos en donde se tipee las facturas a comparar.

¿Como seria la realización de un select en donde me seleccione unicamente los registro que coincidan en articulos? de las facturas a comparar.]]></description><pubDate>Fri, 03 Feb 2012 07:29:53 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>'XX' is undefined [Javascript] (John Jones)</title><description><![CDATA[Hi

I have web application developed via ASP.NET. It is working fine, but recently some users reported they hit error as below when load the page (login page). It only happens in certain machine (IE 7/8). But working fine in Chrome/Safari. Any ideas? Thank you

Webpage error details 
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; chromeframe/15.0.874.121; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; MS-RTC LM 8; .NET4.0C; .NET4.0E)
Timestamp: Thu, 12 Jan 2012 09:14:52 UTC
Message: Object doesn't support this property or method
Line: 1818
Char: 3
Code: 0
URI: https://../FlexEA/DXR.axd?r=1_23
Message: 'ASPxClientLoadingPanel' is undefined
Line: 240
Char: 1
Code: 0
URI: https://../FlexEA/HRSuite/Forms/MainPage.aspx
Message: 'ASPxClientTimer' is undefined
Line: 251
Char: 1
Code: 0
URI: https://../FlexEA/HRSuite/Forms/MainPage.aspx
Message: 'WebForm_LoadingPanel' is undefined
Line: 58
Char: 78
Code: ...]]></description><pubDate>Fri, 03 Feb 2012 02:55:37 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Same level offset frames [Javascript] - 3 messages (Michel Fournier)</title><description><![CDATA[Lets assume the fact that I have a main container with several IFrames at the same level. Thus, I could have one IFrame on the left and next to it, another IFrame with about the same height.

When I do a specific operation, I need to obtain the exact pixel in width from the browser itself. I can determine the width offset of a specific Div on that page. But, in order to position something exactly where I want, I need to also obtain the width of the IFrame sitting on the left.

So, basically, the IFrame on the right knows about its parent. In this case, it is the main container. But, it doesn't know anything about the IFrame on the left. It could, but I would have to hardcode it such as window.parent.TheFrameOnTheLeft.scrollWidth. But, I need a generic way of knowing it. Is there somekind of formula I could use to obtain all the frame sitting on the left side of the frame I am working with, no matter how much frames there would be?]]></description><pubDate>Thu, 02 Feb 2012 23:59:20 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Steve Ballmer video on Visual FoxPro 7.0 - October 2001 [Visual FoxPro] - 3 messages (Ken Levy)</title><description><![CDATA[Just for fun, since people have asked me about it, and for a decade old reference... here's a link to the 2 minute video from October 2001 of Steve Ballmer promoting Visual FoxPro 7.0. 

You can watch it streaming or download the FLV file. Maybe someone here will post it on YouTube. :) If someone does, they should probably say so in reply on this thread to avoid duplicate postings.

http://www.screencast.com/t/aF06QoSmSfIR]]></description><pubDate>Thu, 02 Feb 2012 22:11:26 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Creating Styles in Excel [Visual FoxPro] - 2 messages (Sergey Berezniker)</title><description><![CDATA[Hello,

Users just recently began reporting problems with some Excel automation code that used to work:

loDocument.styles.add(lcStyle)

generates the error: OLE IDispatch exception code 0 from Microsoft Excel: Unable to get the Add property of the Styles class..

This is not a commonly used feature of the app, so the problem may have existed for awhile. I've tested and found the problem in Excel 2007 and 2010.  Any help would be appreciated.

TIA]]></description><pubDate>Thu, 02 Feb 2012 19:09:15 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Most popular Musical Instrument [Android] - 7 messages (Victor Anderson)</title><description><![CDATA[Steps to reproduce:

Go to Amazon App Store

Click on "Music" category.

Observe this page:

http://www.amazon.com/b/ref=mas_lftnav_Music?ie=UTF8&node=2478849011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=browse&pf_rd_r=07YVAM1Q6QVFFGZJP6EC&pf_rd_t=101&pf_rd_p=1344110422&pf_rd_i=2350149011

Observe the Draw Music MonadPad icon, representing the "Instruments" sub-category.

Observe that the "Test Drive" feature at Amazon has been reactivated for this app, so you can test it out on your computer.]]></description><pubDate>Thu, 02 Feb 2012 17:21:47 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Excel - Save As CVS [Visual FoxPro] - 2 messages (Sergey Berezniker)</title><description><![CDATA[I have been given a bunch of csv file that I need to import into a database.  But, when I import them, the dates are not converting.  But if I open them in Excel and save them as CSV (MS-DOS) they convert correctly. 

To save time, I would like to create a VFP program that would do the SaveAs routine for me.  What is the proper Automation procedure to do the SaveAs?]]></description><pubDate>Thu, 02 Feb 2012 16:27:59 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Changing Page Orientation in Reports [Visual FoxPro] - 2 messages (Jerry Kahn)</title><description><![CDATA[I need to print cards that are portrait on the front and landscape on the back.  After seeing that the VFP Help section says "Changing between page orientations, such as landscape to portrait, between reports is not supported" and searching fruitlessly on the Web, I figured out how to do it.  I want to share it with anyone else who needs this feature.
I am using VFP8, and printing to an Evolis Dualys3 card printer.  I don't think that it matters that I switched between reports and labels.  Here is how I did it:


REPORT FORM CardFront.LBX NOCONSOLE TO PRINTER NOPAGEEJECT   &&This is the front of the card.
REPORT FORM DummyCard.FRX SUMMARY NOCONSOLE TO PRINTER       &&Dummy card with controls only in the Detail band, none in the Header or Footer.
REPORT FORM BlankCard.LBX NOCONSOLE TO PRINTER NOPAGEEJECT   &&Blank card that contains only a white period (.), which is invisible, since it is white on white.
REPORT FORM CardBack.FRX NOCONSOLE TO PRINTER                               ...]]></description><pubDate>Thu, 02 Feb 2012 15:39:06 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Height of full page [Javascript] - 2 messages (Michel Fournier)</title><description><![CDATA[clientHeight returns the height of the view area of the page. scrollTop gives the amount of pixels since the scroll. But, I need to obtain the height of the full page. Is there a way to obtain that?]]></description><pubDate>Thu, 02 Feb 2012 14:49:09 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Scheduling a script and reporting errors [Microsoft SQL Server] - 7 messages (Frank Cazabon)</title><description><![CDATA[Hi,

I've been asked to schedule a .cmd file to run under Windows scheduler.

this is the contents of the file:

echo on

sqlcmd -d cman -i backupHQ.txt

copy E:\MyPath\CManHQ.bak \\Myserver\CMan\xchange\

pause

I know the first thing I need to do is get rid of the  pause command.

I haven't messed with this kind of thing in years so would appreciate any guidance on how to get the output of the commands to get stored in a text file or if any errors occurred to get them included in the Event Log.]]></description><pubDate>Thu, 02 Feb 2012 14:39:20 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Report output to Pdf file [Visual FoxPro] - 8 messages (Stuart Reid)</title><description><![CDATA[Hello All,

I am looking for a simple utility that will allow us to print a VFP report ( .frx ) to a .pdf file.

Currently our application will generate PO, attach an electronic signature to it and print it to the printer. All this with the native report functions of VFP. This print is then faxed to our supplier. The purchasing department would like to have the application generate a .pdf document and attach it to an email ready to be sent to the supplier.

We have tried pdf creators in the past and they take an eternity to generate the file. And in some cases, with prolonged delay, the generated file did not contain what it supposed to contain.

TIA]]></description><pubDate>Thu, 02 Feb 2012 10:03:33 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Slow INIT of ZoomNavBar [Visual FoxPro] - 2 messages (Sergey Berezniker)</title><description><![CDATA[Hi all,

I am trying to use ZoomNavBar of ThemeControl. Add the control into a form and add the codes in INIT() and actions in ButtonClicked(). I got around 6 buttons.When I run the form open up slowly. If I delete the ZoomNavBar it will open up quickly. The form will runn accordingly and button can be clicked. The problem now is very slow INIT. Any tips?

I am using windows 7 professional, i7 quad core, 8 GB RAM with a lot of harddisk space. 

Regards,
Farouk Yew Abdullah]]></description><pubDate>Thu, 02 Feb 2012 09:10:24 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Object's properties [Visual FoxPro] - 3 messages (Alessio Iancarelli)</title><description><![CDATA[Hi there, 
I wonder if it was possible to get programmatically a list of all the properties belonging to an object a sort of "aproperty"  command :)

thanks]]></description><pubDate>Thu, 02 Feb 2012 03:39:00 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>How to pass the value to other form ( use MDI )? [.NET] - 3 messages (Alex Lam)</title><description><![CDATA[Hi all,
          I use vb.net , mdi form. I want to pass the value to previous form mean ItemPrint.txtcdesc.Text ="aaa"
My case MainForm is menu,  on click will go to Itemmas, click the print button to itemprint page, after click the button to 
SelectForm. If click the Ok button , ItemPrint.txtcdesc.Text ="aaa"
        But it is empty in this time, how can i do? Thank you all~~~

MainForm


    Sub FunctionMenu_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim ThisMenu As ToolStripMenuItem = CType(sender, ToolStripMenuItem)
       Dim sonForm As Form
       sonForm = _
        CType(Activator.CreateInstance(System.Reflection.Assembly.GetExecutingAssembly.GetType("WTS." & ThisMenu.Name.ToUpper)), Form)

                    sonForm.MdiParent = Me
                    sonForm.Show()
          End Sub


Itemmas


       Private Sub ToolStripPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripPrint.Click
     ...]]></description><pubDate>Thu, 02 Feb 2012 02:03:07 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>How to burn cd from VFP [Visual FoxPro] - 2 messages (Naomi Nosonovsky)</title><description><![CDATA[How to burn CD-R from VFP program? I would like to send some files (PDF, JPG) to CD-R]]></description><pubDate>Wed, 01 Feb 2012 21:10:30 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>FRx + PDF in single print job [Visual FoxPro] - 2 messages (Cesar Chalom)</title><description><![CDATA[Hi All,

I am trying to come up with a method whereby I can print a VFP report and 1 to many PDFs within a single print job. I wish to do this so as to be able to have the printer staple all of the pages together.

I imagine that I can probably find a pdf creation tool (a pdf printer I can print to) that can achieve this but is there a cleverer way using NOPAGEJECT and then outputting the pdfs to the print job, also without ending the print job (until the last pdf).

I want to avoid having to output the VFP report to PDF as it has trutype barcodes on it and they don't scan when converted to pdf.

Cheers,
Jamie]]></description><pubDate>Wed, 01 Feb 2012 18:15:37 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>.NET report class similar to Peachtree interface [Visual FoxPro] - 12 messages (Craig Berntson)</title><description><![CDATA[Hi,

We've just started using Peachtree Accouning and I love the report interface.  Users can add or delete fields from report, vary the look in the report editor, save the choices and export results to different formats,

I'd like to provide that great experience with the reports of our VFP application, which brings up two questions.  First, is there a .NET class that I can purchase that mimics the behavior of the Peachtree report interface and second, how do you go about interfacing an VFP application to such a .NET class.  I believe the second part can be done, so I am just sort of asking for confirmation at this time.  More important for now is to find the .NET class that can do the job.

The class I'm talking about is only for presentation.  All data would be prepared in VFP and turned over to the class.

TIA,

Alex]]></description><pubDate>Wed, 01 Feb 2012 11:53:15 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Windows START menu style [Visual FoxPro] - 13 messages (Dragan Nedeljkovich)</title><description><![CDATA[i want to change the GUI of my app  and i have decided to mimic the windows 
i have 2 problems
1-what king of object do i need for the menu that appears and desappears when mouse is out
2-how to put the task bar at bottom of screen ?]]></description><pubDate>Wed, 01 Feb 2012 10:59:29 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Excel PlotBy xlColumns [Visual FoxPro] (Frank Cazabon)</title><description><![CDATA[SOLVED: m.loChart.PlotBy = xlColumns

Hi,

I've been using this code to create a chart in Excel:

m.loXL = CREATEOBJECT("Excel.Application")
m.loXl.DisplayAlerts = .F.

m.loXLWorkbook = m.loXL.Workbooks.Add()

m.lnRowCount = 1
m.loXL.ActiveSheet.Cells[m.lnRowCount,1].VALUE = "Month"
m.loXL.ActiveSheet.Cells[m.lnRowCount,2].VALUE = "Claims Received"
m.loXL.ActiveSheet.Cells[m.lnRowCount,3].VALUE = "Avg. Turnaround"
SCAN
	m.lnRowCount = m.lnRowCount + 1
	m.loXL.ActiveSheet.Cells[m.lnRowCount,1].VALUE = MonthNumberToName(c_TurnaroundChart.M, 3) + "'" + RIGHT(TRANSFORM(c_TurnaroundChart.Y), 2)
	m.loXL.ActiveSheet.Cells[m.lnRowCount,2].VALUE = c_TurnaroundChart.TotalReceived
	m.loXL.ActiveSheet.Cells[m.lnRowCount,3].VALUE = c_TurnaroundChart.AvgTurnaround
ENDSCAN
m.loSourceRange = m.loXL.Range("A1:C" + TRANSFORM(m.lnRowCount))	&& + m.loXL.ActiveSheet.Range("A65536").End(xlUp).Row)	&&.loXL.Range(loXL.cells(1, 1), loXL.Cells(m.lnRowCount,4))
m.loSourceRange.Select()

m...]]></description><pubDate>Wed, 01 Feb 2012 09:40:30 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>Problem with record update on insert trigger [Visual FoxPro] - 4 messages (Thomas Ganss)</title><description><![CDATA[I have two tables with a one to many relationships. I have set buffer mode to 5 on the detail table. I want to execute code to update a field within the record that is currently updated on the insert trigger. The field will hold an unique number that I will assign as each record is updated. I am doing this since I want the number I assign to run in sequence with no gaps and the number is alphanumeric.
However, when I try to replace the field with the value I have generated i get a message that the cursor is readonly.

How can I replace the value of the current record being updated (I use Tableupdate command) before the physical update is executed without getting the readonly record?

Thanks in advance.

Stuart]]></description><pubDate>Wed, 01 Feb 2012 05:07:04 EST</pubDate><link>http://www.universalthread.com/</link></item><item><title>VFP application crash in Wind2008 server RC [Visual FoxPro] - 4 messages (John Jones)</title><description><![CDATA[Hi
I face problem that, my application crash (blue screen) randomly in Windows 2008 server RC. User use terminal service to remote access to server and run my application. 

Attached is the error details captured from vent viewer

Any ideas?]]></description><pubDate>Wed, 01 Feb 2012 03:57:23 EST</pubDate><link>http://www.universalthread.com/</link></item></channel></rss>
