ODBC Foxbase

2007-09-10 Thread aj
Hello all. I was wondering if an odbc driver for foxbase existed? If so where could I find it? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Formatted Text

2007-07-17 Thread aj
Hi all. Is there any way to show formatted text inside of a vfp control without using ActiveX? I need to display this text in a scrolling container and the ActiveX objects do not draw correctly when used in scrolling containers. Has anyone else come up with a workaround for this problem?

Re: Formatted Text

2007-07-17 Thread aj
I'm using the scrolling container from this site http://www.ctl32.com.ar/ctl32_scontainer.asp I tried adding the Microsoft Rich textbox control version 6.0 The controls that should be clipped bleed through to the form. This happens even with the standard foxpro container object.

SplitBar

2007-07-10 Thread aj
Has anyone ever seen a window in foxpro with a split bar. I need to implement something like this where the top portion and bottom portion of the form are resizeable. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: SplitBar

2007-07-10 Thread aj
True but foxpro does not have a scrollable container. Ive always wondered why not. My quest continues. :) ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: SplitBar

2007-07-10 Thread aj
Thanks guys very helpful. I was not aware that i could view the code that fox is actually made of. How can i view the code for the class browser? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox

Re: [OT] New Poll: The Cause of the war in Iraq

2007-06-21 Thread aj
Why would you blame them for the war. Ive never heard of a Jew running into a public place and blowing themselves up. What have they ever done to you ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: [OT] New Poll: The Cause of the war in Iraq

2007-06-21 Thread aj
Guess I understood it another way. I am not Jewish but when I read it I felt the need to say something. Sorry ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Combobox Value

2007-06-15 Thread aj
I have a combo box attached to a cursor with two columns. one column is the primary key. The other is a text value. I want the combo box to display the text value but return the primary key as its Object.Value. How would I go about doing such a thing? TIA A.J.

Re: Combobox Value

2007-06-15 Thread aj
Thanks guys. Appreciate the help on a Friday afternoon. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable

Another combo box problem

2007-06-15 Thread aj
I have a container with a text box control and a combo box control. I put this container inside of a column in a grid. The problem happens when the container has focus. The display value of the combo box gets set to blank. If I click on anything else in the form my value magically returns.

Re: Algorithm to calculate intermediate colors

2007-06-11 Thread aj
I'm not a mathematician but maybe you could treat the color vectors as points on a graph. Start with red and draw a line to your ending color. I think all the points that are part of that line should give you the result you are looking for. Hope this helps A.J.

Re: Algorithm to calculate intermediate colors

2007-06-11 Thread aj
testing. I sent a reply to you but it didn't seem to get there. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech

[test]

2007-06-11 Thread aj
Cant seem to post messages. Testing 123 ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive:

Re: [test]

2007-06-11 Thread aj
Thanks. I didn't realize that i had been unsubscribed ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable

Re: [OT] Auto insurance

2007-05-25 Thread aj
Not sure if this is true but a friend told me that you can get better rates by going to a physical location than if you did it over the web. I suggest doing both. See a broker and check on the Internet. It wouldn't hurt. ___ Post Messages to:

Re: [OT]Flat Panel Plasma TVs

2007-05-17 Thread aj
Recently purchased a 50 panasonic Verio Plasma. Very happy with it. Consumer reports rates the brands in this order Fujitsu, Hitatchi, Panasonic. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: Multithreading - what is the latest

2007-03-20 Thread aj
Was looking around for the same, thing found this http://vfpconversion.com/Article.aspx?quickid=060034 Hope it helps. If you create anything interesting please let me know. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Containers ActiveX HELP PLEASE

2006-11-08 Thread aj
I have a container that is holding multiple ActiveX objects. The problem is that when I load these objects into the container they draw themselves outside of the container when it should be getting clipped. Has anyone been through this before. ___

Re: Containers ActiveX HELP PLEASE

2006-11-08 Thread aj
I cant have this. I need the objects to go outside the visible borders so that i can scroll them. Im showing thumbnails inside of a container object. I've seen this before. I think the only solution is to have your container's resize event resize/reposition the enclosed ActiveX so that

Problem with class init

2006-10-19 Thread aj
I placed a custom class onto a form with a private datasession. Inside the Init method of my class I have code like this. if used('tablename') = .F. use data\tablename in 0 endif The Default data session has this table open. What happens is the used() test returns false but when the code

Re: [NF] Terabyte servers for the home

2006-10-16 Thread aj
I was wondering if this software works with a cable box. Or is it just for local television stations? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list:

Re: Level of node in treeview

2006-09-29 Thread aj
Maybe this will help Try something like this in the NodeClick event. procedure NodeClick lparameters Node,MyLevel Local lNodePath lNodePath = Node.FullPath MyLevel = Occurs(/,lNodePath) + 1 This number is the level *your code here EndProc I hope this is useful. A.J.

Re: Level of node in treeview

2006-09-29 Thread aj
My last post was off by one. MyLevel = Occurs(/,lNodePath) + 1 This number is the level Do not add 1 if you want to start from zero. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free

Re: Level of node in treeview

2006-09-29 Thread aj
mylevel is a local parameter sorry bout that one. friday jitters. Maybe this will help Try something like this in the NodeClick event. procedure NodeClick lparameters Node,MyLevel Local lNodePath lNodePath = Node.FullPath MyLevel = Occurs(/,lNodePath) + 1 This number is the level *your

Re: Modal form class

2006-09-01 Thread aj
Tristan Leask wrote: Have you tried oform.show(1)? Tristan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of aj Posted At: 01 September 2006 16:02 Posted To: Profox Archive Conversation: Modal form class Subject: Modal form class Hello all. I have

Re: [NF] There is a case for top posting

2006-09-01 Thread aj
Sorry about that guys. Here is the post Tried this and it does not seem to work. I placed the code after createobject(). I also tried it in the initialization method of the class. The code after createobject() still continues to fire. ___ Post

Re: Modal form class

2006-09-01 Thread aj
If I do it just as you stated with the base 'form' class it does work. For some reason its not working for my class. Not sure what I could have done wrong. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: Modal form class

2006-09-01 Thread aj
No. I just discovered that the problem is with the containers that i have added to the form. If create another form and place these containers on it I get the same problem. If the containers are removed the code works as expected. I am using image controls by a company called data

Blobs

2006-07-19 Thread aj
In Fox9 is an fpt file generated per record when its used or per table? Im asking this because I read that its maximum size limit is 2 gigs and I'm going to need more than this in the future. Any help would be greatly appreciated. ___ Post

Re: Blobs

2006-07-19 Thread aj
Dave Crozier wrote: AJ, I agree with Ed. If you are looking at blob images then VFP is not the most efficient tool to use. I gave up holding pictures/documents in our VFP files as the memo bloat was ENORMOUS and just crippled the system after running live a few months. I moved it over to MySQL

Re: Thumbnails

2006-07-12 Thread aj
Dave Crozier wrote: AJ, With VFP9 you can simply set the Picture Property of an image control to point to a .tif file and then set isometric sizing. Dave Crozier A computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people

Tiff images

2006-06-27 Thread aj
Hey everyone. I'm looking for a tool that will allow me to view tiff images as thumbnails and allow me to rearrange the thumbnails. I also need a normal size view of the image in the center of the screen. Has anyone been down this road before? I'm using VFP 8.