RDA method for SQL server CE
Hi All
I need to send some data to the SQL Server 2005(Central Server) from
my Pocket PC Device(Compact Edition,local database). I am going with
RDA method.
Is PULLED data only be able to PUSH back top Server?
Thanks in advance... Tag: [ot] testing 1 2 3 Tag: 239985
MS Graph
Hi!
I have a freetable called 'cperformance.dbf'' which contain field
gname,fname,collection.
I have this in a form with a grid, displaying ' Fname, Gname,Collection'.
This freetable display the staff collection performance
in numbers but it would also be very nice to display the figure in Graph?
Anybody, can share me your sample code of creating a GRAPH and print them?
Any assistance is very much appreciated.
/patrick Tag: [ot] testing 1 2 3 Tag: 239980
Creating a searchable pdf with Print2PDF
VFP 9.2, XP sp2
Using print2pdf for a number of reports. Most of them are searchable for
text, but one is not. Acrobat seems to think the one report is a scanned
document.
The only difference I find is that when calling the "problem" report I set
reportbehavior 90. Could this be the reason? Do I need that command to
take advatage of multiple detail bands?
Thanks in advance.
Dave Tiffany Tag: [ot] testing 1 2 3 Tag: 239964
Which one is best for ODBC/MSSQL: pass as ?MyVariable or as the value?
Hi all:
I wonder which one would be faster to execute by SQL Server - especially if
I put this inside a scan-endscan loop:
1)
text to lcSQLCmd textmerge noshow pretext 2
select some_field_1, some_field_2
from a_table
where the_pk = ?lcThePrimaryKey
endtext
=sqlexec ( liSQLConnHandle, lcSQLCmd, [xCursor] )
OR: 2)
text to lcSQLCmd textmerge noshow pretext 2
select some_field_1, some_field_2
from a_table
where the_pk = '<<lcThePrimaryKey>>'
endtext
=sqlexec ( liSQLConnHandle, lcSQLCmd, [xCursor] )
(please notice the difference on where clause).
Looking forward to hearing from all of you. Thanks.
WBR,
Willianto Tag: [ot] testing 1 2 3 Tag: 239951
Report field stretching problems
I have a report in which a field was changed from
a small character field to a memo field. Some of
the memo fields contain a good deal of text, so this
field on the report needed to be changed to stretch:
http://www.proudviews.com/RptStretch.jpg
After changing the report field to stretch with overflow,
setting the vertical lines to stretch with the
band, and setting the line below the memo fied to
float, here is the result:
http://www.proudviews.com/stretch_new.jpg
The memo field now stretches as desired, but the
vertical lines are lost across a page break, and
very oddly, a field set not to print repeated
values is now showing repeated values.
Any input on ironing this out? I usually don't
use memos much in reports, so there may well be
some setting I'm missing to make this look right.
-- TRW
_______________________________________
t i m . w i t o r t
_______________________________________ Tag: [ot] testing 1 2 3 Tag: 239948
systray is ignoring right mouse click
Hello and thank for the help.
I am using the systray class with VFP 9 and I have code in
IconRightClickEvent() which is being ignored.
I can't figure out what I'm doing wrong. The IconClickEvent() code is
working correctly.
Any suggestions?
Thanks,
Jeff Tag: [ot] testing 1 2 3 Tag: 239947
systray class does not show systray icon in EXE
Hello and thanks for the help.
I have an app in VFP 9 in which I am using the systray class.
When I run the app in the IDE, everything works fine. The systray icon
appears and responds to mouse events.
When I compile the app and run the EXE version, there is no systray icon. Is
there a DLL associated with the systray VCX that I need to distribute?
Thanks,
Jeff Tag: [ot] testing 1 2 3 Tag: 239945
Releasing Memory After Completion of a Process
Hi!
I have developed an EXE [in VFP 9] which the User is intends run to
execute certain tasks (like importing, exporting data etc.). In order
make use of this all the user does is set the task and the time which
the task have to run.
The EXE will be run in the background and checks [each 10 minutes] if
any task have to be executed. If any scheduled tasks fall within
current time range then the task would be run.
This EXE is installed on Windows 2003 Server.
Microsoft SQL Server 2000 is used as the back end.
The issue I'm facing is whenever this EXE tries to execute tasks the
CPU Memory usage of the Client's PC goes high [mostly up to 100%
usage]. There can 100 thousand records or more involved in the import/
export at a given time. I've been under the impression that the CPU
Memory usage goes when the EXE executing tasks is due to the high
volume data and the memory would get released as soon as the process
is over. But this is not case; the memory is not released once the
task is completed execution. The CPU Memory is freed after very long
time.
At present this single EXE consists of all the data import/ export
tasks. I'm planning to have multiple EXE's for each task where the
main EXE would call the relevant sub EXE to execute a task. The main
reason for me to come up with such a method is the expectation that
the CPU Memory would freed / released immediately after the execution
of a sub EXE.
Can anyone of you help out with some suggestion as to how to over come
this issue.
Thanks in advance...
Cheers...
:-) Tag: [ot] testing 1 2 3 Tag: 239942
Ebony Dubs Vol 2 legal mp3
E B O N Y D U B S V O L 2 M U S I C D O W N L O A D
*Ra Vinyl 2003*
'Ebony Dubs Vol 2 - Ra' (http://tinyurl.com/22tvrs) (4:33 6.25Mb
192kbps)
'Ebony Dubs Vol 2 ringtone' (http://mp3tube.info/ebony_dubs_vol_2/),
'Ebony Dubs Vol 2 Ra Vinyl mp3 music'
(http://mp3tube.info/ebony_dubs_vol_2/)
--
Dodes65
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------ Tag: [ot] testing 1 2 3 Tag: 239941
Changing Window Behavior
Hello and thanks for the help...
Can I change the default behaviors of clicking and right clicking on a
minimized window?
Right now, as you probably know, clicking alternates between restoring and
minimizing and right clicking pulls up a menu with restore, move, etc.
I would like to use left clicking for my own purposes and have right click
toggle between restore and minimize.
Is this possible?
Thanks,
Jeff Tag: [ot] testing 1 2 3 Tag: 239935
open word
Hi
Very beginner ? What is code to open a word document. The .doc is already
created. It is a merge print letter.
Please be basic.
Thanks
sherry Tag: [ot] testing 1 2 3 Tag: 239930
VFP 8.0 - How to handle this.
I have multiple compiled .exes using VFP 8.0. Each one is called by a prg,
calls the form and when the form is destroyed, clear events is issued.
Now, I want to call each of these individual .exe's from another .exe. (a
form acting as a main menu). But the problem is that when I run the
individual .exe the entire app is closed because each .exe issues a clear
events in the destroy event.
I thought about creating a public variable when the main menu is
initialized. Then in each individual .exe during the destory event,
checking for the existence of the public variable. If it does not exist,
then the destory event would issue the clear events and act as normal. If
the public variable does exist, then the destory event would only release
the form and return to the main menu.
Is there a better way to handle this. I want to minimize changes to my
existing .exes.
Thanks,
John Tag: [ot] testing 1 2 3 Tag: 239925
Use Format on Editbox Control
Hi,
I am using an Editbox control in VFP9. Now I need to format all the
keyed in text into this edit box control in the uppercase format. How
can I do this? I tried to set the value of ! for UPPERCASE in the
FORMAT property. But from VFP help it seems this value works only for
the edit box but not edit box control? If so, is there any other work
around like setting some other property...
Thanks,
Chakra Tag: [ot] testing 1 2 3 Tag: 239922
file scripting object
This is a multi-part message in MIME format.
------=_NextPart_000_0006_01C8821A.E4E36ED0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I have used the file scripting object in my application.
What do I need to include in my installation routine to make sure that =
all files required are installed for the user?
Sincerely
Stephen
------=_NextPart_000_0006_01C8821A.E4E36ED0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.6000.16608" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>I have used the file scripting object =
in my=20
application.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>What do I need to include in my =
installation=20
routine to make sure that all files required are installed for the=20
user?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Sincerely</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Stephen</FONT></DIV>
<DIV> </DIV></BODY></HTML>
------=_NextPart_000_0006_01C8821A.E4E36ED0-- Tag: [ot] testing 1 2 3 Tag: 239913
Print in Half Page Sheet
Hi to All,
Can anybody help me with this Report Form,
the default paper size I am using is 8.5 x 11, I want to use 8.5 x 5.5.
most paper size's depends on printer installed. what Printer model should I
need to install... I am using Epson LX-300
thanks a lot for your help.
Gechelle Tag: [ot] testing 1 2 3 Tag: 239899
line is too long in eval or &
I have a very long string that i am trying to evaluate, and it returns.
"LINE IS TOO LONG". what are the limitations for eval or macro substitution?
thanks,
Marty Tag: [ot] testing 1 2 3 Tag: 239893
RTF Control
What do I need to include (OCX etc) in my setup program to enable the RTF
control on my end users machine? Tag: [ot] testing 1 2 3 Tag: 239888
Novice Error
Very Novice here.
Getting this error message within Visual FoxPro program.
Error number: 11Error message: Function argument value, type, or count is
invalid.Line of code with error: IF "TEST" $ UPPER(pcParams)Line number of
error: 175Program with error: CREATE_INC_EXPORT
Can someone help me???
I see the attribute pcParams defined. The line of code for that is...
LPARAMETERS pcParams
Also, does anyone have any suggestions for training and/or reading material
for novice FoxPro???
Thanks in advance for your help and consideration.
PSULionRP Tag: [ot] testing 1 2 3 Tag: 239873
VFP Query Solution
Dear All
I have one problem, data and output I want as per below
description. What query should I need to write ?
CODE DATE QTY TIME
A 02/02/2008 5 10:30
A 05/02/2008 1 11:30
A 06/02/2008 2 07:30
B 01/02/2008 4 09:30
B 03/02/2008 2 02:30
B 02/02/2008 1 12:30
OUTPUT
CODE DATE QTY TIME
A 06/02/2008 2 07:30
B 03/02/2008 2 02:30
i.e. QTY and TIME OF MAX DATE
Thanks in Advance Tag: [ot] testing 1 2 3 Tag: 239869
VFP Query Solution
Dear All
I have one problem, data and output I want as per below
description. What query should I need to write ?
CODE DATE QTY TIME
A 02/02/2008 5 10:30
A 05/02/2008 1 11:30
A 06/02/2008 2 07:30
B 01/02/2008 4 09:30
B 03/02/2008 2 02:30
B 02/02/2008 1 12:30
OUTPUT
CODE DATE QTY TIME
A 06/02/2008 2 07:30
B 03/02/2008 2 02:30
i.e. QTY and TIME OF MAX DATE
Thanks in Advance Tag: [ot] testing 1 2 3 Tag: 239868
FoxTalk Reborn
Our friends in the DFPUG have purchased FoxTalk magazine and are re-starting
it under a new title:
http://portal.dfpug.de/dFPUG/Portal/FoxRockX/
Authors are reporting that they're already reviewing galleys of the first
issue and an ordering process should be in place at www.hentzenwerke.com any
day.
Dan Tag: [ot] testing 1 2 3 Tag: 239861
VFP9 browse exit problems.
I use browse frequently in development. VFP9 (SP2) has an annoying
habit of crashing (C00005) when I hit the esc button or ctrl-F4 to
close the browse screen. Does not happen so much in exe. Anybody got a
solution to this?
-----------------------------------------------------------------
Paul Lee ........ Abri Technologies ........ http://www.abri.com/
'Recover' - top rated FoxPro file repair utility.
----------------------------------------------------------------- Tag: [ot] testing 1 2 3 Tag: 239855
Use of Soundex Function
Hi Friends,
I have a field member_name in member_master.dbf
it has few records e.g.
SHAIKH SABA WASEEM
ANSARI JAVID AHMED
NARIWALE ASRAR
SHAIKH EJAZ AHMED
SHAIKH LUQMAN AB. AZIZ
KHAN IJAZ AHMED
When i browse for ;
BROWSE FOR $"EJAZ" MEMBER_NAME
it returns
SHAIKH EJAZ AHMED
but i want to use soundex function or any other function to return
both records matching with EJAZ, IJAZ, AEJAZ etc.
e.g.
SHAIKH EJAZ AHMED
KHAN IJAZ AHMED
Thanks in advance Tag: [ot] testing 1 2 3 Tag: 239842
VFP + MSQL
can anyone suggest a best free resource (e-book, online guide)
for vfp + mysql developement.
seach in google return huge list.. would help save a lot of time
if anyone already found or have it to share it here.
Thanks! Tag: [ot] testing 1 2 3 Tag: 239837
VFP mySQL oddity
I have a mySQL 5.x server running atm and am using mySQL ODBC 5.1.1
and VFP 9 sp2.
When I am querying data from the mysql tables into a cursor, all
fields defined as decimals are coming into VFP as currency.
Is there a way to force VFP to be smart enough to make them all
numeric?
Thanks,
CJ Tag: [ot] testing 1 2 3 Tag: 239831
Why full screen only?
my copy of vfp 9 sp1 has suddenly decided it will only run full
screen. Restarting vfp, restarting computer don't change the
behavior.
I assume I inadvertantly changed a setting, but I can't find it.
Any suggestions?
Thanks Tag: [ot] testing 1 2 3 Tag: 239825
inner join and left join
I have two tables: ACCOUNTS and TRANSACTIONS and I need to produce a cursor
showing comparative totals for the last two years.
I know how to do a sql to get the totals of transactions for last year, and
the totals of transactions for this year, for each account. However I can't
work out how to join them, because there are some accounts that will have no
transactions against them for last year, some that will only have
transactions against them for last year, and some accounts that will have
transactions in both years.
Is creating two cursors, one for each year, and then attempting to join them
the best way, or is there an easier way?
Many thanks
Stephen Tag: [ot] testing 1 2 3 Tag: 239821
Keyboard Search With Combobox
Hello and thanks for the Help.
I have a grid with several comboboxes that have a RowSource as a Cursor
containing the options.
When the user clicks on the drop down, they can type in text and have the
combobox will move to the items that they are typing.
I would like the combobox to drop down as soon as the column gets focus so
that the user can use the keyboard instead of having to stop and use the
mouse.
Is there a way to do this? What would I put in the gotfocus (or other)
method to make this behavior occur?
Thanks again,
Jeff Tag: [ot] testing 1 2 3 Tag: 239820
Dave Spoon Feat Lisa Maffia free MP3 song download
D A V E S P O O N F E A T L I S A M A F F I A L E G A L M P
3 M U S I C
*Bad Girl at Night-(ELECTRADE009B) Vinyl 2007*
'Dave Spoon Feat Lisa Maffia - Bad Girl at Night (Beat Vandals Remix)'
(http://tinyurl.com/ypefc4) (7:39 11.53Mb 211kbps)
'Dave Spoon Feat Lisa Maffia - Bad Girl at Night (Club Mix)'
(http://tinyurl.com/ywgtdc) (7:12 11.00Mb 214kbps)
'Dave Spoon Feat Lisa Maffia - Bad Girl at Night (Dub Mix)'
(http://tinyurl.com/2a4xvo) (6:23 9.77Mb 214kbps)
'Dave Spoon Feat Lisa Maffia - Bad Girl at Night (Instrumental Mix'
(http://tinyurl.com/23yjug) (7:11 10.86Mb 212kbps)
'Dave Spoon Feat Lisa Maffia music'
(http://mp3tube.info/dave_spoon_feat_lisa_maffia/), 'Dave Spoon Feat
Lisa Maffia Bad Girl at Night-(ELECTRADE009B) Vinyl music download'
(http://mp3tube.info/dave_spoon_feat_lisa_maffia/)
--
Cooldog
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------ Tag: [ot] testing 1 2 3 Tag: 239818
MAPI wouldn't run while Windows 2003 Server is on the log off mode. How to make it run?
Hi all:
First of all, thanks for your help regarding the MAPI on my previous post.
It runs perfectly well. Problem arise though; I put the program on Windows'
Scheduled Task and hope that it would run on some specific time. However, I
found out that Windows fail to execute the MAPI. Yes, Windows did run the
task, but it simply didn't send the MAPI.
Question:
How to somehow force Windows to execute MAPI even though it is on the log
off state?
TIA,
Willianto Tag: [ot] testing 1 2 3 Tag: 239809
Experiences of VFP 8.0 running in Vista
Good day everybody,
I have a few applications developed using VFP 8.0 running on XP.
My company is going to change from XP to Vista, therefore I have to make
sure that my applications still work well in Vista.
I have checked the discussion thread and found a posting that said there are
few problems with some of the Word and Excel Automation commands.
I will appreciate if you can share with me your experience of other arising
problems of VFP8.0 running on Vista and your solutions.
This will enable me to prepare and seek to understand with solution before
the company get Vista installed in our PCs which I may have not enough time
for troubleshooting.
I hope to hear and learn from you. Thank you.
Best regards,
Julie Tag: [ot] testing 1 2 3 Tag: 239805
How to create indexes in a SQL cursor?
Hi,
I am using SQL to create cursors. How do I setup various indexes for this
cursor like I do for the regular DBF file, so that I can use:
SET ORDER TO xxxx
for the cursor?
Thanks
Zoom Tag: [ot] testing 1 2 3 Tag: 239791
www.DATINGLOFT.com <<SEXY<<
www.DATINGLOFT.com <<SEXY<<
Hello friends,
i found a TOP good SITE for DATING !!!
Take a look NOW If you also like SEXY dating. For EVERY ONE an EVERY LIKE !
www.DATINGLOFT.com <<SEXY<<
HOPE I could help YOU Tag: [ot] testing 1 2 3 Tag: 239782
Background form display problems
I am calling a modal form from a menu where a complex form is already
displyed.
When I call up the second form the form below has its controls dissapear
and shows all kinds of scrolling lines like names of objects and commands
etc. I can solve that by making previous form visible = .F. and then
visible = .T. after exiting second form.
But a similar thing happens when I call up another modal form on top of the
second.
You can see the effect at http://www.abri.com/background-form.jpg
-----------------------------------------------------------------
Paul Lee ........ Abri Technologies ........ http://www.abri.com/
'Recover' - top rated FoxPro file repair utility.
----------------------------------------------------------------- Tag: [ot] testing 1 2 3 Tag: 239778
Changing grid's RecordSource deletes method code?
VFP6 SP5 on XP Pro SP2
I have a grid with 5 columns in it. In one of the texboxes
of these columns, I have added code to the InteractiveChange
event method.
During the form's execution, the grid's RecordSource needs
to be set to "" while the underlying cursor is rebuilt so
as not to scramble the grid's settings. A side effect of
this is that the code added to the textbox appears to be
lost and no longer runs.
After closing the form and looking at it in the Form Designer,
the code is still there. It's just at runtime it gets
cleared. Is this intentional behavior? Any known
workarounds?
-- TRW
_______________________________________
t i m . w i t o r t
_______________________________________ Tag: [ot] testing 1 2 3 Tag: 239769
How to fix corrupt FPT files?
Is there any way (besides the Abri Recover program) to repair corrupt FPT
files?
Zoom Tag: [ot] testing 1 2 3 Tag: 239759
Foxpro and subversion
Does anyone have any experience with committing FoxPro code to subversion?
The problem I have ran into is that most of the FoxPro code files, except
for .prg, are binary and unreadable as text files. So basically all the
reasons to commit your code are gone if the repository can't compare line by
line code and show you the differences. I found one solution here
http://paulmcnett.com/scX.php, but it appears that nothing has been
developed on it for quite sometime and it was never completely
finished\tested. Does anyone have any suggestions as to the best method of
version FoxPro code?
Thanks,
Curtis Tag: [ot] testing 1 2 3 Tag: 239757
_memberdata
I notice the memberdata editor won't write string above a certain length
into the _memberdata property. I can type them in fairly easily, however, in
the property sheet... so I'm wondering ... since there is an implied length
limitation are there any gotcha's attached to entering by hand? Also, since
there's a clear difference between what I see in the Member Data Editor and
what's stored with the class itself... where is the Editor Data stored?
--
-Lew
The workers took the robot for Maria. Tag: [ot] testing 1 2 3 Tag: 239744
F2 Function Key
Hi to All
Maybe I miss something....
I had a Form, and I set the property KeyPreview = .T.,
in the Keypress Event of the Form, the code was written like this :
IF LASTKEY() = -1 THEN && F2 Key
=MESSAGEBOX("F2 Key Press")
ENDIF
... but nothing happens.
Help pls...
Thanks
Gechelle Tag: [ot] testing 1 2 3 Tag: 239719
Visual FoxPro and its future
We are a pretty heavy Visual FoxPro shop. I understand that Microsoft is
going to stop development and supporting Visual FoxPro. (Please correct me if
I'm wrong.)
Just wondering if there is anyone out there that has transitioned from
Visual FoxPro to a ASP .NET environment and the best way to do that and if
you would suggest the VB .NET route or the C .NET route.
I think it would be easier to transfer to VB .NET. But I might be wrong. We
are going to go to a ASP .NET environment...just wondering the best way to do
that.
And is there an advantage of going to VB .NET as opposed to C .NET or vice
versa???
Thanks in advance for your time and feedback.
PSULionRP Tag: [ot] testing 1 2 3 Tag: 239709
SP2 update issue
I'm trying to update to SP2, and it's asking for a folder/file named
<x>\vfp9setup\vfpprod1\vs_setup.msi, where <x> is the location of the
sp2 self-extracting exe.
Shouldn't the exe have extracted this folder and file? It doesn't exist
anywhere that I can find.
Is there somewhere specific I should put the sp2 exe? Tag: [ot] testing 1 2 3 Tag: 239690
Altering a table structure that has a view
This is a multi-part message in MIME format.
------=_NextPart_000_0022_01C8789D.7233B8D0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
vfp9
I store my tables in one dbc and views in another.
I have created a view from one of my tables, and have now realised that =
I need to add some more field to the table.
I remember reading of a warning that if I don't do it correctly the view =
will go ga-ga and I won't be able to open it in the vfp designer.
Can somebody enlighten me as to what to be aware of?
Sincerely
Stephen
------=_NextPart_000_0022_01C8789D.7233B8D0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.6000.16608" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>vfp9</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I store my tables in one dbc and views =
in=20
another.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I have created a view from one of my =
tables, and=20
have now realised that I need to add some more field to the=20
table.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I remember reading of a warning that if =
I don't do=20
it correctly the view will go ga-ga and I won't be able to open it in =
the vfp=20
designer.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Can somebody enlighten me as to what to =
be aware=20
of?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Sincerely</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Stephen</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV></BODY></HTML>
------=_NextPart_000_0022_01C8789D.7233B8D0-- Tag: [ot] testing 1 2 3 Tag: 239688
Grid Problem
This is an annoyance more than a problem....
I have a grid that is used for display only....I have
Grid.AllowCellSelection set OFF and Grid.HighlightStyle set to 2 to give the
impression to the user that the grid is readonly.
Everything is fine whilst I use the textbox control on each column
As soon as I try and use an edit box, the contents of the underlying field
'shift' a few pixels down and to the right whenever I click that column.
It's only a small cosmetic thing but I'm a stickler for detail and see no
reason why it should do it.....
I've disabled the editbox, put a return .f. in the when statement....and
just about everything else I can think of but it make no difference.
I wondered if anyone had any ideas? Tag: [ot] testing 1 2 3 Tag: 239687
Training Materials
Wow! Need to learn Visual FoxPro. Does anyone out there know of any good
training resources??? Computer based training??? Books??? Etc.???
Thanks in advance for your help.
PSULionRP Tag: [ot] testing 1 2 3 Tag: 239682
Can myApps ask MAPI to Press Send instead of ask the user to press it?
Hi there,
My application sends an e-mail thru MAPI. Problem is, the MAPI dialog box
shows up, and the user would have to press Send to actually _send_ the mail.
Anybody knows how to automate this?
TIA,
Willianto
p.s. I know there are lots of options from AutomatedEmail topic in
fox.wikis. Just hope that MAPI-ways would work. Tag: [ot] testing 1 2 3 Tag: 239673
Creating a survey using VFP
Hi:
I must write an application for creating surveys and polls in VFP9.
Is only a desktop application for printing the questions.
Has somebody information or sample on this subject?
I don´t want to reinvent the wheel here.
Thanks.
Alejandro Fernandez Tag: [ot] testing 1 2 3 Tag: 239670
I can't access msnews.microsoft.com directly... need to post via Usenet...
"Man-wai Chang ToDie" <toylet.toylet@gmail.com> skrev i meddelandet
news:47da77c2$1@127.0.0.1...
>
> I can't access msnews.microsoft.com directly... need to post via Usenet...
>
> ping...