topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
testpop3 | hi Enrico, I put this TESTPOPX.PRG in FHW/SAMPLES
[code=fw:1f11imhq]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Testing FiveWin new Internet incoming mail (POP3 protocol) Class</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"... |
testpop3 | Remove TRY/CATCH/END so you can see the real error.
EMG |
testpop3 | hi Enrico,
I removed TRY/CACTH
now I run .exe, click button for ACTION Getmail and nothing happens
any suggestion? |
testpop3 | In order to help you I need a complete sample to run here.
EMG |
testpop3 | Hi Enrico or any other
my code is just this (MYPOP3.PRG):
[code=fw:1wyk26gz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Testing FiveWin new Internet incoming mail (POP3 protocol) Class</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0... |
testpop3 | I know that sample is working fine with my pop3 server. For this I need to test it with your.
EMG |
testpop3 | hi Enrico
I sent to you email with access data
thank you |
testpop3 | The server name was mistyped (pop instead of pop3).
EMG |
testpop3 | damianodec
FYI .. If you are trying to use Gmail via POP or IMAP from multiple devices .. you will need to tell Gmail to let less secure apps use your account .. in order to connect.... if you are using your own domain .. obviously this suggestion will not apply..
Rick Lipkin
<!-- m --><a class="postlink" href="http... |
testpop3 | hi Rick, thank you for your help.
yes, I'm using my domain and not gmail
bye |
testpop3 | hi,
problem solved, thank to Enrico, he suggested to me to downloaded xHarbour Binaries 1.2.3 Rev. 10205 for BCC 5.5.1 and now my prg works.
thanks to Enrico for his availability. |
testpop3 | Hi enrico,
Your function works with gmail?
What string for cServer?
cUser := "acessosoft@gmail.com"
cPassword := "acess123"
cServer := "gmail.com"
It this? |
testpop3 | I don't know, sorry.
EMG |
testpop3 | Hi Enrico,
Please, post a example for fill string cServer and cUser |
testpop3 | [code=fw:2x6g6p8i]<div class="fw" id="{CB}" style="font-family: monospace;">? GETMAIL<span style="color: #000000;">(</span> <span style="color: #ff0000;">"pop.tiscalinet.it"</span>, <span style="color: #ff0000;">"emag5@tiscalinet.it"</span>, <span style="color: #ff0000;">"password"</span> <span style="color: #00000... |
testrich | Hola ForoReciban un cordial saludoAntonioTestrich.prg enseña como emplear richedit desde recursos, Como se hace desde codigo o para encajarlo en una ventana?Gracias nuevamenteCordialmenteJairo Barbosa |
testrich | Jairo,Revisa fwh/samples/TestRtf.prg gracias |
testrich | [quote="Antonio Linares"]Jairo,Revisa fwh/samples/TestRtf.prg gracias[/quotGracias por tu respuesta... si ahi esta la manera de hacerlo,es una muestra muy bien argumentada tiene de todo.CordialmenteJairo Barbosa |
testsk1.prg in FWH1111 | Hi
The buttons in .\fwh1111\samples\Testsk1.prg are diffetent now. How do I get back the old buttons.
Thanks
Regards
ACWoo |
testsk1.prg in FWH1111 | Acwoo,
Please download FWH 11.11 and check if it is the same as the one that you have.
Testsk1.prg shows fine here. No changes. Could you please post a screenshot ? thanks |
testsmtp | what is wrongI send mail form <!-- e --><a href="mailto:inkom@hot.pl">inkom@hot.pl</a><!-- e --> to <!-- e --><a href="mailto:inkom.kj@wp.pl">inkom.kj@wp.pl</a><!-- e --> , everything is ok but I will get mail ( from <!-- e --><a href="mailto:inkom@hot.pl">inkom@hot.pl</a><!-- e --> to <!-- e --><a href="mailto:inkom.k... |
testsmtp.prg - Can't get it working. | I'm trying to include the SendMail() routine in the testsmtp.prg test program in my application to send an email. I've changed it to my SMTP server and my email. All I get from the GetHostByName() call is an IP address of 0.0.0.0. It also seems to return very quickly which looks like it is not doing the lookup.
I a... |
testsmtp.prg - Can't get it working. | Dan,
We are reviewing it. We will answer you asap. |
testsmtp.prg - Can't get it working. | Dan,
Ok, its working. There are some little changes to implement:
In samples\TestSmtp.prg, change:
oOutMail = TSmtp():New( cIP := GetHostByName( "smtp.fivetechsoft.com" ) )
into:
WSAStartup()
oOutMail := TSmtp():New( cIP := GetHostByName( "smtp.fivetechsoft.com" ) ) // Notice the use of ":=" at the begin... |
testsmtp.prg - Can't get it working. | I'd prefer the revised fivert32rt.dll.
Thanks |
testsmtp.prg - Can't get it working. | Dan,
Please send us an email requiring it (Five32rt.dll). Thanks. |
testsmtp.prg - Can't get it working. | Can you post the change to the source code for the TSMTP class. I need to fix it in my program.
Thankyou <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Angelo |
testsmtp.prg - Can't get it working. | Angelo,
Here it is:
<!-- m --><a class="postlink" href="http://hyperupload.com/download/0165891d51/tsmtp.zip.html">http://hyperupload.com/download/0165891 ... p.zip.html</a><!-- m --> |
testsmtp.prg - Can't get it working. | Hi Antonio,
Thankyou for the source for the updated Tsmtp class.
I have compiled it in my program and I get the following two (2) function references which can not be resolved:
cFileNoPath(...) ---I assume it has something to do with getting file paths
FMimeEnc(...) ---I assume file MIME Encoding is done here... |
testsmtp.prg - Can't get it working. | Angelo,
cFileNoPath() source code is located at source\function\filename.prg
FMimeEnc() source code is located at source\function\mimeclip.prg |
testsmtp.prg - Can't get it working. | Hi Antonio
Thanks. That was easy. I should have looked in there before I asked the question. So much for working late and being so tired you don't think straight.
My program compiles and links OK now.
Thanks again,
Angelo |
testsmtp.prg - Can't get it working. | Fine <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
testtab2.prg | #include "FiveWin.ch"
FUNCTION MAIN()
local odlg
local otabs
DEFINE DIALOG oDlg TITLE "Selección articulos" FROM 77,178 TO 353,662 ;
PIXEL //FIVEWIDI
ACTIVATE DIALOG odlg ;
ON INIT PlaceTabs( oDlg, oTabs )
RETURN Nil
function PlaceTabs( oDlg, oTabs )
@ 119.00,1.00 TABS oTabs OF oDlg ITEMS "Orde Natural"... |
testtab2.prg | Hello, José!
Please, check your "Fivewin.ch". It has include the string "#include "Folder.ch". If not, you can include "Folder.ch" by hand. |
testtcbr.prg: problemi per memorizzazione dati | Salve,
ho compilato e lanciato il file testtcbr.prg.
Ho cliccato su "Create" e provato a modificare qualsiasi campo ma non si riesce a salvarlo.
Ho provato a modificare e linkare anche il fiel editcell.prg...ma non si riesce a memorizzarlo.
Dove sbaglio ?
Qualcuno ha avuto gli stessi problemi ?
Grazie e auguri
Ro... |
testtre2.prg - any idea how to be able to use res editor? | In fwh\samples\testtre2.prg, the controls on oDlg were all coded.
Is it possible to design dialogues using resource editor and later to dynamically moved it to oDlg depending on which tree item was clicked on?
TIA |
testtre2.prg - any idea how to be able to use res editor? | ::oTree :=TTreeView(): REDEFINE( 201, odlg,0,nrgb(255,255,255))
// 201 id
::oTree:bChanged := {|oTree,oItem|eng0303(self) }
// dynamic add items
.rc / .dll :
CONTROL "", 201, "SysTreeView32", 0 | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL| TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT | TVS_SHOWS... |
testtre2.prg - any idea how to be able to use res editor? | Thanks for the reply Shuming.
My requirement was actually met with this ChangeParent() snippet here <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=23490&start=0#p126403">viewtopic.php?f=3&t=23490&start=0#p126403</a><!-- l --> |
testwico.prg | Hi,
This seems to not draw icons. Is it supposed to be working? |
testwico.prg | Alex,
No, it is just a wrong test. Please delete it, thanks.
You may use samples\TestLvw.prg |
testxbrw error | Compiling...
Harbour Compiler Alpha build 45.0 (Flex)
Copyright 1999-2005, <!-- m --><a class="postlink" href="http://www.harbour-project.org/">http://www.harbour-project.org/</a><!-- m -->
Compiling 'testxbrw.prg' and generating preprocessed output to 'testxbrw.ppo'...
100
300
400
Lines 689, Functions/Procedures 21
G... |
testxbrw error | That sample is using ADS local RDD. You need to link this library too: ads32.lib
In order to use the right one, please do:
implib.exe ads32.lib ads32.dll |
testxbrw error | I may switch adsloc32.dll instead of ads32.dll becuase I did not find ads32.dll ?
I should open the line :
echo %hdir%\lib\rddads.lib + >> b32.bc |
testxbrw error | yes, right. |
testxbrw error | I took all the files associated with testxbrw.prg and recompiled and I found that error though that customer.dbf was inside the directory ?
Error description: Error ADSCDX/6082 Open error: CUSTOMER |
testxbrw error | I am sorry . missing ADS32* libraries
Thanks |
testxbrw error | Ehab,
good you solved it <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
testxbrw filter | I am trying to update the testxbrw.prg to fullfill my needs as below . It does not work ???
select 1
USE METE
index on dtoc(me_date)
go top
set filter to 1->me_serial="9855564"
// USE CUSTOMER NEW |
testxbrw filter | Ehab:
You can used this sample code:
FUNCTION Incremental( oWnd )
local oChild, oBrw
DEFINE WINDOW oChild TITLE "Incremental seek " MDICHILD OF oWnd
oBrw := TXBrowse():New( oChild )
oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW
oBrw:nColDividerStyle := LINESTYLE_INSET
oBrw:nRowDividerStyle := LINESTYL... |
testxbrw filter | Is that code will result to access one record as focused by dbseek ? |
testxbrw filter | Even that code does not focus on seeking x value ?!!!! |
testxbrw filter | Use SET SCOPE its faster and you can use ranges. |
testzip.prg lib ? | salve ho harbour80 di nov/08 e ho provato a compilare il file testzip.prg, mi da questi erroriUnresolved external:_HB_FUN_ZIPFILE_HB_FUN_ZIPTYPE_HB_FUN_ZIPBLOCK_HB_FUN_ZIPMSGQuale libreria devo usare ?GrazieRomeo/Zingoni |
testzip.prg lib ? | Se non vado errato, quelle sono funzioni di Fivewin/Clipper a 16 bit e non sono usabili con FWH.Devi usare le funzioni di hbziparc.lib.PS. Non so cosa sia Harbour80.EMG |
testzip.prg lib ? | harbour80...intendevo harbour vers .8.x comperato a nov/08Comunque il file testzip.prg si trova nella cartella di FWH (x harbour)C'e' anche il file testuzip.prg Mi danno enrambi gli stessi errori nella compilazione?Romeo |
testzip.prg lib ? | [quote="Romeo":qibjqz6d]harbour80...intendevo harbour vers .8.x comperato a nov/08[/quote:qibjqz6d]
Scusa, è per capire: "comperato"? Harbour è gratuito e non ne esiste neanche una distribuzione commerciale come quella di xHarbour.com. Quindi non capisco proprio come tu abbia fatto a comperarlo. Forse intendevi riferi... |
texcelscript | Necesito exportar una .dbf a excel, ya tengo la clase texcelscript que tan amablemente me la paso victor, ya la enlace y todo ok, pero al intentar crear el archivo me truena con:
Error Excel.Application:WORKBOOKS/16389 E_FAIL: OPEN
como soy novato en esto pues no se por donde buscarle.
estoy usando fwh, xharbour (99.60... |
texcelscript | listo ya exporta, gracias |
texplorer bar class | Hi All !
[img:3meet4j9]http://planetsourcecode.com/Upload_PSC/ScreenShots/PIC2004621221246286.jpg[/img:3meet4j9]
Vb source code :
[url:3meet4j9]http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=53572&lngWId=1[/url:3meet4j9]
Can you help me ? Please translate to fivewin.
best rega... |
texplorer bar class | Vb source code for explorer bar :
[url:1m8xf5pa]http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=61899&lngWId=1[/url:1m8xf5pa]
Please translate to fivewin
Thank's
areang |
texplorer bar class | YOU MUST USE Vtaskbar CLASS of Canalfive FOR IT
send a message to <!-- e --><a href="mailto:Paco@canalfive.com">Paco@canalfive.com</a><!-- e --> |
texplorer bar class | I send him a lot of Emails and never get an answer
Im looking fir Vtaskbar tooooo |
texplorer bar class | Uwe:
Mr. RF is a Canal Five reseller
Contat him by email.
He tell us here about it.
(Sorry for my bad English)
Best Regards
Ruben Fernandez |
texplorer bar class | Uwe:
Now We are handling the CanalFive distribuition WorldWide.
VtaskBar is the best way to go the way you want, we delivery inmediatly and you can pay worldwide by PayPal
Pleas feel free to contact me: <!-- e --><a href="mailto:rflores@google.com">rflores@google.com</a><!-- e --> |
text 2 mysql or txt 2 msql | Someone have a utility or a func to converte a delimiter text file to a file MYSQL or Sql ?THANKS |
text 2 mysql or txt 2 msql | Que quieres hacer, tienes algun ejemplo...What do u need, any example ?thks |
text 2 mysql or txt 2 msql | no I have a txt file and I wanted create a file to use it on asp web page |
text file | Wich class I must use to create a text ascii file ?
I must also cal an .bat file from fwh , how I can call this file bat ?
thanks |
text file | Silvio,
// At end of job, we add the last line to cText :
cText := cText + cNewLine + CRLF
// Then we write it to disk as a .TXT file:
MEMOWRIT(cTxtfile, cText)
I think .BAT is executed like a EXE
regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
text file | I'sorry
I am having a memory void and i'm worried that i should deliver the application early and i'm really desperate |
text file | Uwe,
sample :
nSticketnumber:= "123456" number of the ticket
ShellExecute(GetActiveWindow(),'Open',oApp():cPath+"\"+nSticketnumber+".bat",,,4) |
text into... | where i can found information about used of "text into..."? |
text into... | Hello,
do you mean this?
Best regaqrds,
Otto
[code=fw:tvssbhei]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#xcommand <span style="color: #0000ff;">TEXT</span> INTO <v> => <span style="color: #00D7D7;">#pragma</span> __cstream|<v>:=%s<br />#xcommand <span style="color: #0000ff;">TEXT</span> INTO <v> ... |
text on a panel - on init | Hello,
I have a window with a panel and would like to show a text on the panel.
It is working when I use a button to start the action to fire the oPanel:say but I don’t find a way to show
the text when starting the program automatically.
Thanks in advance
Otto
[code=fw:3p88z4ca]<div class="fw" id="{CB}" style="font-f... |
text on a panel - on init | Otto,
Why don't you create a SAY control as child of the panel ?
@ ..., ... SAY oSay PROMPT "test" OF oPanel |
text on a panel - on init | Hello Antonio,
Thank you for your response.
I need more than one line of text and many say – objects and pictures.
Then the application is overloaded and slow. It should become a kind of touchflow navigation.
Best regards,
Otto |
text on a panel - on init | Otto,
Then please try it this way:
oPanel:bPainted = { | hDC | oPanel:Say( ... ), ... }
When you want the panel to be repainted, simply do:
oPanel:Refresh() |
text on a panel - on init | Hello Antonio,
I made the changes you suggested but I can’t get it working.
Here is my code.
Thanks in advance
Otto
[code=fw:gkim0tk8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// FiveWin for Pocket PC - </span><br /><br /><span style="color: #00D7D7;">#include</span> <s... |
text on a panel - on init | Otto,
My proposed code was fine but Class TPanel was not managing bPainted. So I have added Class TPanel at the bottom of the PRG and modified it properly.
This PRG is working fine:
[code=fw:d1g10sav]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// FiveWin for Pocket PC... |
text on a panel - on init | Otto,
If you change this line, then you can see how it gets properly updated when you press "show" button:
oPanel1:bPainted = { | hDC | opanel1:Say( 195,169 , Time() , RGB(250,28,3) , , , .T., .T. ) } |
text on a panel - on init | Hello Antonio,
thank you so much. Perfect.
Best regards,
Otto |
text on bitmap | How I can write a text on a bitmap ? |
text on bitmaps | it is possibile write a text on bitmap ?
Sorry I mean How I can write a number with the mouse ( when I click over the bitmap) initiating from 1
or
How create a xbrowse grid 4X4 and when I click on a cell it insert the number from 1 to n ...? |
text on bitmaps | In the samples folder bmptext.prg
Saludos |
text on bitmaps | Sorry
Imake an error I modified the message but then not saved it |
text on tab | I'd Like insert a text on the left of tabs how I can make to write it on the left
I try as you can see in this picture but the text is wrote near to second tab
[img:2tzjj444]http://img16.imageshack.us/img16/6159/errtab.png[/img:2tzjj444]
I made
the tab
@ oApp():oDlg:nGridBottom, nSplit+2 T... |
text on tab | Silvio,
To get the left text-startposition,
maybe You can calculate the needed total Tab-width like :
[img:103ew6we]http://www.pflegeplus.com/pictures/tabwidth,jpg[/img:103ew6we]
[code=fw:103ew6we]<div class="fw" id="{CB}" style="font-family: monospace;"><br />nSpace := <span style="color: #000000;">0</s... |
text on tab | good run ok!!!
but only until two tabs
If I have Many tabs it not run
pls see it
[img:3hu57gi9]http://img843.imageshack.us/img843/4742/errortab2.png[/img:3hu57gi9] |
text on tab | I resolve with :
IF Len( oTab:aPrompts ) > 5
numtab:= 3
ELSE
numtab:= Len( oTab:aPrompts )
ENDIF
FOR n = 1 to numtab
NOW run ok with ( until ) 10 Tabs I not Know why ...eh eh eh <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
text on tab | Silvio,
I would adjust the text from [color=#FF0000:272pd8fr]Dialog RIGHT-position.[/color:272pd8fr]
That looks much better and the Position is always the same distance from Right.
But if You like, getting closer to the Tabs, just increase the defined Space from right.
Some calculations needed, using [color=#FF0000:27... |
text over the video | Hi All !Can someone translate to FWH ?Thanks for helpBest RegardsFafi[code:2qvxew7l]
The Actual Work
Displaying text over video means, that first we need to create a bitmap then we will write our text over that bitmap, and that bitmap will be blended with the running video with the help of VMR9.
Need Some Control... |
text's transparence in ribbonbar | i have inserted in the ribbonbar example the code below, but i haven't the transparence of the texts.
(windows xp, fwh 7.09, xHarbour 1.21)
@ 5, 1 SAY oSay1 PROMPT "ribbonbar" OF oGr TRANSPARENT
DEFINE BRUSH oBrush STYLE NULL
@ 6, 1 CHECKBOX oCheck1 VAR lPrev OF oGr1 PROMPT "ribbonbar"
oCheck1:oBrush := oBrush... |
text's transparence in ribbonbar | Please,
can somebody posts an example how to insert in ribbonbar a transparent SAY, CHECKBOX or RADIOBUTTON?
thanks in advance
marzio |
text's transparence in ribbonbar | Marzio,
Could you please post a screenshot with an example of what you want ? thanks |
text's transparence in ribbonbar | Antonio,
see this image: [url:1ri9o6qh]http://www.marzioni.it/ribbonbar.jpg[/url:1ri9o6qh]
thanks, marzio |
text's transparence in ribbonbar | Hello Marzio,
I use a transparent VTitle, to show a Text with any Style inside a Ribbonbar :
[img:2qltqno8]http://www.pflegeplus.com/pictures/ribb1.jpg[/img:2qltqno8]
[code=fw:2qltqno8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />..<br />..<br /><span style="color: #0000ff;">DEFINE... |
text's transparence in ribbonbar | Marzio,
Para mostrar un contro tipo SAY puedes hacer:
[code=fw:17zra94e]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> @ <span style="color: #000000;">68</span>, <span style="color: #000000;">30</span> ADD <span style="color: #0000ff;">BUTTON</span> oSay1 GROUP oGr <span style="color: #0000ff;">SIZ... |
text's transparence in ribbonbar | thanks for the solutions,
what to do for CHECKBOX and RADIOBUTTON?
marzio |
text's transparence in ribbonbar | Marzio,
[img:qp0yno3g]http://img338.imageshack.us/img338/1420/check1.jpg[/img:qp0yno3g]
[img:qp0yno3g]http://img687.imageshack.us/img687/1986/check2.jpg[/img:qp0yno3g]
[code=fw:qp0yno3g]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> @ <span style="color: #000000;">... |
texto en buttonbmp | Hola, quisiera saber como se si un buttonbmp desde recurso tiene texto o esta en blanco?, probe con ::cCaption y si funciona, parece que esto es desde codigo, probe con ::cPrompt y no funciona truena, pense que este era para saberlo desde recurso, alguna idea?
gracias
Paco |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.