topic
stringlengths
1
63
text
stringlengths
1
577k
A Question Abot DIALOGs
Hi James>>> I'm not sure how any application can be completely independent of the data source.>What I meant by this is not the file type source but a different application with its own data tables. Another application could have a totally different set of fields and even different tables. They may not be storing all th...
A Question Abot DIALOGs
Doug,>>What I meant by this is not the file type source but a different application with its own data tables. Another application could have a totally different set of fields and even different tables. >But it can be! Sure the other application has to have sufficient information and a means of being invoked..But, what ...
A Question Abot DIALOGs
Doug, >I am not sure why the values are stored as a single string when multiple fields would not increase table size. Here you see what I save into these textfields:I can access every cell with substr(cText,x,1) for example.For input I use checkboxes.[img:36gdhysv]http://www.atzwanger.com/fw/blockkontrolle&...
A Question Abot DIALOGs
Hi OttoNow I see! I was curious.> I can access every cell with substr(cText,x,1) for example. Or cText[x] I believe. And iterate through with FOR EACH.And if you want to access with meaningful "labels" put the values into a pre-labelled hash.If these represent resource availabilities it would be nice to have a functi...
A Question about (FiveLinux) Class TWBrowse
Hi AntonioI don't quite know how to do something. Take a TWBrowse. I want to be able to set the default selection to some position other than 1. I can do this by setting oBrw:nAt but the issue is if I set that to record n then records 1 through n-1 aren't displayed. Is there a way around this? To date I have been ...
A Question about (FiveLinux) Class TWBrowse
Doug,Please try this workaround: oBrw:SetArray( aTest ) oBrw:GoDown()or for n rows:[code:u22efi8k] for n = 1 to nRows oBrw:GoDown() next [/code:u22efi8k]
A Question about (FiveLinux) Class TWBrowse
Hi AntonioI think I had already tried this "trick" but it doesn't work because the n-th row is put at the top of the browse and the rows above aren't visible. (Unless you arrow up to them which is no good and moves the default selection you have just set.)Here is the example:[code:3if5h9y0]// Using a browse to display ...
A Question about (FiveLinux) Class TWBrowse
Doug,This is not working totally right yet, but we are closer <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> oBrw:SetArray( aTest ) oBrw:nRowPos = 2
A Question about (FiveLinux) Class TWBrowse
No, it is not a right solution as oBrw:nAt is not properly set <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
A Question about (FiveLinux) Class TWBrowse
This is better: oBrw:SetArray( aTest ) oBrw:nAt = 2 oBrw:nRowPos = 2
A Question about Gradient-Calculation.
Hello, Working with Gradients, I noticed inside my Tools and also in the new xbrowse-Gradient-painting, the result of the centered Color-calculation is not linear. [img:14y2y2ah]http&#58;//www&#46;pflegeplus&#46;com/pictures/gradposition1&#46;jpg[/img:14y2y2ah] Just 1 % changing from 45% to 44%, shows a big Differen...
A Question about Gradient-Calculation.
Uwe, You can review the source code of GradientFill() in FWH\source\bar.prg (surely we will migrate it from there to a different module soon). Wiki docs for GradientFill(): [url:38dailbw]http&#58;//wiki&#46;fivetechsoft&#46;com/doku&#46;php?id=fivewin_function_gradientfill[/url:38dailbw]
A Question about Gradient-Calculation.
Antonio, I corrected the wrong Screenshots, to explain the Problem. They have been lost, overwritten with different ones. Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
A Question about WAITRUN
Hello, using WAITRUN, there is no stop of the called Application : The Situation : 1. Creating a PRG-file with given values. 2. Open Wordpad, to show the created PRG. 3. Compile the PRG. 4. Open the created EXE-file. The same time Wordpad opens the PRG-file, the Compile runs allready in the Background. You can see t...
A Question about WAITRUN
Please use WordPad.Exe instead of Write.Exe. Place WordPad.Exe in the application path.
A Question about WAITRUN
Rao, thank You very much. With these changes it is working now, like expected. I think, to include < Notepad.exe > in the Zip-File ( only 151 KB ) is no problem ), otherwise I have to explain, what to do. Best Regards Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol:...
A Question about WAITRUN
I advised WordPad.Exe, not NotePad.Exe. Both are fine for WaitRun. But WordPad.exe is the same as Write.Exe But waitrun works for wordpad.exe ( this exe is in accessories folder.) All windows users have wordpad.exe. I am not sure but I think there is nothing wrong in your providing wordpad.exe along with your applic...
A Question about WAITRUN
[quote:245iv59c]>using WAITRUN, there is no stop of the called Application [/quote:245iv59c] Hello Uwe, did you find out why your application didn't stop. I have the same problem. Best regards, Otto
A Question about WAITRUN
Hello Otto, I just tested with the new WORDPAD 2009 from Windows 7. You can download it for Free. It works fine, but didn't load Files with Extension .PRG. I had to rename to .TXT to get it working. [img:18x0kjsj]http&#58;//www&#46;pflegeplus&#46;com/pictures/LoadError3&#46;jpg[/img:18x0kjsj] After some Vista-Update...
A Question about WAITRUN
Hello Uwe, If I use waitrun like this - waitrun does not wait! [quote:ebzi2738] MENUITEM ("Adressenimport &Schnittstellen") + chr(9) + "Strg + S" ; ACTION (waitRun("xImport.exe",0), oLbxX:upstable(), oLbxX:refresh(),oLbxX:gobottom(), oLbxX:SetFocus() ); ACCELERATOR A...
A Question about convert ==> DLL to => LIB
Hello,Can this be a useful tool, together with FWH, to convert DLL's to LIB and include in the Make-file ?If it is possible to use the tool, I don't need these functions ?DLL32 FUNCTION CREATEDIBITMAP( hDC AS LONG, hInfoH AS LONG, nFlags AS LONG, ;hBits AS LONG, hInfo AS LONG, nUsage AS LONG ) AS LONG ;PASCAL FROM "Cre...
A Question about convert ==> DLL to => LIB
Uwe,It may work for some DLLs, but Windows DLLs as "gdi32.dll" can't be converted into static LIBs.What you can do is to use implib.exe to create an import library from a DLL, and then code your function in C code instead of using DLL FUNCTION ... (static linking vs. dynamic linking).
A Question about convert ==> DLL to => LIB
Antonio,thank You very much for the information.Reading the text, I didn't know exactly, what i coulddo with it.RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
A Question about function < WaitSeconds( 0.3 ) >
Hello,I wanted to use the function < WaitSeconds( 0.3 ) > ( internal used in FWH - Wait-functions ) to change on click 0.3 seconds to a new color of a bitmap. After the time, i want to show the old color again.[img:15nipjs8]http&#58;//www&#46;pflegeplus&#46;com/pictures/Voolsfont1&#46;jpg[/img:15nipjs8][code:15nipjs8] ...
A Question about function < WaitSeconds( 0.3 ) >
Uwe,I guess you should use a timer instead of make the user wait.Just a suggestion <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
A Question about xBrowse-Linestyles
Hello, I have a Question about xBrowse-Linestyles. I can change the Linecolors but the predefined Colors ( Linestyles ) don't work anymore on Selection. Is it possible to change from defined Pen-color to Linestyle ? It seems with defined Pencolors, Linestyle 1, 2, 3 and 4 are disabled. I would like to show all possibl...
A Question about xBrowse-Linestyles
XBrowse derives Pens from the Linestyles defined by the programmer. That way the DATA of Pens were basically kept for internal use. If we change the pens directly, Xbrowse does not know that pens are not consistent with the linestyles and there can be unexpected behavior. You may directly deal with pens but keep this i...
A Question about xBrowse-Linestyles
Mr. Rao, I agree with You, I got it working, but there are to many needed changes. I will replace this Part with other useful Tests. Maybe any Proposals ? included Tests : 1. Background ( Brush ) 2. Marquestyle 3. Linestyle 4. Fonts 5. Row- and Header-height 6. Head-color or Style 2007 7. Image-selection 8. Pyjama-e...
A Question for Antonio
Hi AntonioIn order to support blocked text in GETs we need a GETGETSEL() function. The C code seems fairly easy but it passes in two gint * to be updated with the start and end of the current selection and returns a logical value - corresponding to whether or not a selection has been made.What is the best way to pass ...
A Question?
Friends I need a server smtp for send mail with blat.exe ? Thank You
A RIBBONBAR-Tool-Solution still needed ?
Hello, some Times ago, I started with a visual Ribbonbar-Tool. I stopped this work because of other urgent Updates and new Projects. I'm not sure, if there is still a need, to carry on with this Project, because I've seen a start from Silvio and I don't want to do a Job twice. As well there are still some open Project...
A Request to all ""FiveWin""ners
It is my humble request to you all FIVEWINNERS, I was thinking to share this view with you all since a long time. All erstwhile Clipper programmers who wanted to come into Windows environment have started using FIVEWIN + *HARBOUR alongwith some known tools developed either using FIVEWIN + *HARBOUR or some thirdparty...
A Request to all ""FiveWin""ners
If I do understand you well, you are afraid that some solutions, proposed by certain fivewinners, aren't shared with other fivewinners which results into a repetition of some questions. I agree with that, but ... The example that you mentioned, you spoke about a direct solution within FiveWin/*Harbour. But if I click...
A Request to all ""FiveWin""ners
driessen, Fivewin Brasil is in portuguese, not in spanish. Regards
A Request to all ""FiveWin""ners
Sorry, but indeed. In Brazil, they speak Portuguese. But the problem is still the same since I don't speak that language. Thanks.
A Request to all ""FiveWin""ners
Friends, I'm brazilian and I can explain some points... In Brazil our language is Portuguese (or "Brazilian Portuguese") a variant of Portuguese from Portugal. I think Portuguese is a complicated language. Any persons says that it is a "secret code" and I agree <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt...
A Request to all ""FiveWin""ners
Maurilio, As far as I can say, your English is very good and surely very understandable.
A Solution of Software-protection still needed ?
Hello, I created a Solution of Software-protection, but I don't know if there is still requirement. Otherwise, there are still other things to do, maybe starting with Metro-style. This demo shows the functions of Registering - Start - GetRegistrationInfo - Register 2 small Files are created. The Keymaker activates Sh...
A Solution of Software-protection still needed ?
Hello Uwe, >maybe starting with Metro-style This would be fine haveing your tools for metro style. Best regards, Otto
A Solution of Software-protection still needed ?
Software protection is always an issue, and there is always a need. This looks quite helpful.
A Solution of Software-protection still needed ?
Can any one share nice code
A Solution of Software-protection still needed ?
I have a completely different solution for registration. Every time a customer installs the program and opens it up they will have displayed a 7 digit serial number which is randomly generated. This means that every install generates a different serial number. The customer then sends me their serial number. At that ti...
A Solution of Software-protection still needed ?
Friends, Check it: <!-- m --><a class="postlink" href="http://www.oreans.com/es/winlicense.php">http://www.oreans.com/es/winlicense.php</a><!-- m --> Hope it helps!!
A Solution using VTitles inside Dialog-Resources ?
Hello, I wanted to paint a [color=#FF0000:13lbfmwb]Vtitle[/color:13lbfmwb] on a Dialog from Resources, but it seems not to be possible. I think any Trial, to paint something from Source on a Resource, doesn't work only REDEFINE. Is there maybe a Solution, to paint a VTitle on Dialog defined as Resource ? ( before, I p...
A Strange Error in TGroup in 12.02
Hi, As you can see difference in screenshots as below, I think there is a paint problem in TGroup class. The code is exactly the same. 1) Look to the group title. 2) disappears some lines in group. 12.01 screenshoot [img:2l6d0qq4]http&#58;//www&#46;objekt&#46;com&#46;tr/fwh_test/fwhx_1201&#46;png[/img:2l6d0qq4] 1...
A Strange Error in TGroup in 12.02
Antonio Any comment?
A Strange Error in TGroup in 12.02
Hakan, Please add this function inside FWH\source\classes\group.prg: [code=fw:ynm8pc71]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> IsAppThemed<span style="color: #000000;">&#40;</span><span style="color: #0000...
A Strange Error in TGroup in 12.02
Antonio, It works OK now. I just want to know that Should I change everytime group.prg in every new version or you changed it in your group.prg? Thanks
A Strange Error in TGroup in 12.02
Hakan, Please provide me a small PRG to reproduce the GROUP paint error here and we will fix it for FWH 12.03, thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
A Strange Error in TGroup in 12.02
Antonio, I have tried to simulate the my application. but I only simulate the group title error. I think it occurs when the group is resized. [code=fw:edmz25el]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span> <br ...
A Strange Error in TGroup in 12.02
up
A Strange Error in TGroup in 12.02
Hakan, Your example looks fine here, whats wrong with it ? [img:2hfo34fk]http&#58;//img811&#46;imageshack&#46;us/img811/7682/capturegx&#46;png[/img:2hfo34fk]
A Strange Error in TGroup in 12.02
Hi, Look at the group title. .rc [code=fw:7l0xwify]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #000000;">1</span> <span style="color: #000000;">24</span> <span style="color: #ff0000;">"WindowsXP.Manifest"</span> <br /> </div>[/code:7l0xwify] [img:7l0xwify]http&#58;//www&#46;objek...
A Strange Error in TGroup in 12.02
up
A Strange Error in TGroup in 12.02
Try changing this (look at EMG) in group.prg: [code=fw:2zrya0al]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> <span style="color: #0000ff;">Paint</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #00C80...
A Strange Error in TGroup in 12.02
Thanks Enrico, If I use 12.01, There is not problem. I will wait a solution in 12.03.
A Strange Error in TGroup in 12.02
Hakan, This change is required in Class TGroup: (fwh\source\classes\group.prg) [code=fw:1h1hjk74]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> <span style="color: #0000ff;">Paint</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;...
A Strange Error in TGroup in 12.02
Hi Antonio, I have copied the your emailed Fivehcm.lib to lib directory. I have have deleted the group.prg from my xbp file and compiled. Result : - The font problem is gone. It is OK now. - disapearing group line is same as fwh 12.02. (I know I could not prepare a small sample for it.) I have added to group.prg to...
A Strange Error in TGroup in 12.02
Hakan, In our first tests it was needed, but now, yes you are right we could remove it, as the SetBrushOrgEx() is properly filling the background where we paint the text <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
Hello, In the new Tools, i added the new FWH 8.04 option to select a brush for a defined Col. Because everything can be done at runtime with preview, it must be possible, that the user can switch the brush On and Off like with transparent .T. or .F. The normal code is just : DEFINE BRUSH oBrush RESOURCE "WALL" oLbx:...
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
During runtime it is possible to assign a brush, change a brush or remove brush ( by assigning ocol:obrush := nil ). On studying the code, the intention is that even a codeblock can be assigned to oBrush so that different rows can be painted with different brushes. Example oBrush := { || If( ordkeyno() % 2 == 0, oBrus...
A Switch for the new oLbx:aCols[2]:oBrush := oBrush ?
Thank you very much, I included the option and it works fine. Now the user can choose a brush and test, how it looks in relation to the rest of his settings. Regards Uwe
A TActiveX working sample using Acrobat Reader 7
Here it is: [code:3tewp2y7]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oWnd, oPdf DEFINE WINDOW oWnd oPdf = TActiveX&#40;&#41;&#58;New&#40; oWnd, "&#123;CA8A9780-280D-11CF-A24D-444553540000&#125;" &#41; oPdf&#58;Do&#40; "LoadFile", "filename" &#41; oWnd&#58;oClient = oPdf AC...
A TActiveX working sample using Acrobat Reader 7
This is an alternative: [code:3ctg68pp]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oWnd, oPdf DEFINE WINDOW oWnd oPdf = TActiveX&#40;&#41;&#58;New&#40; oWnd, "AcroPDF&#46;PDF" &#41; oPdf&#58;Do&#40; "LoadFile", "filename" &#41; oWnd&#58;oClient = oPdf ACTIVATE WINDOW oWnd ...
A TActiveX working sample using Acrobat Reader 7
Enrico, Have you checked if after some time it gets unloaded ? Sometimes the activex remains loaded for some time and later on it gets closed.
A TActiveX working sample using Acrobat Reader 7
No, I will check it, thank you. EMG
A TActiveX working sample using Acrobat Reader 7
[quote="Antonio Linares":ytxrthbg]Enrico, Have you checked if after some time it gets unloaded ? Sometimes the activex remains loaded for some time and later on it gets closed.[/quote:ytxrthbg] Antonio, is there a way to know if the Activex Control is already loaded on memory, and a way to unloaded it if is true. W...
A TActiveX working sample using Acrobat Reader 7
Adolfo, With some OCXs, like Acrobat Reader, if you press Ctrl+Alt+Del you can see AcroRd32.exe is loaded. On some other OCXs where EXEs are not used, it may be more difficult to know it.
A U T O CODE for FW
New functions: The program works now for XBrowse, XbrColumn or any other generic object. Works from combobox or with pasted code. We can select "WITH OBJECT oBrw" in the combobox or paste with object code of any browse variable. 1) The program identifies if the pasted code belongs to Browse or Column or some other ob...
A U T O CODE for FW
It is magnificent
A Very Happy Easter to All!!!!
The best Easter for all my good friends of this forum, thanks for your help and support.
A Very Happy Easter to All!!!!
Happy Easter! EMG
A Very Happy Easter to All!!!!
Happy Easter Everybody.
A Very Happy Easter to All!!!!
Also happy easter to you all.
A Very Happy Easter to All!!!!
Happy Easter to all of you <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> Regards,
A Very Happy Easter to All!!!!
Happy Easter !!!
A Very Happy Easter to All!!!!
Happy Easter to all !!! <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
A Very Strange Problem
This is a very strange problem, and I first discovered it in 16.12. Rebuilding in 16.11 DOES NOT give the same result. I cannot replicate the problem on my computer, but have seen it occur on two of my clients' computers. It only occurs in one area of the application. I have a multi-folder dialog. There is a but...
A Very Strange Problem
Tim, Does it look similar to these screenshots ? <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=196199#p196199">viewtopic.php?p=196199#p196199</a><!-- l --> [url:1vixuevu]https&#58;//www&#46;dropbox&#46;com/sh/ctnzxlk544jaqpo/AADAfLWd0AMD7-DyqmtLAHfva?dl=0[/url:1vixuevu]
A Very Strange Problem
I don't see it there. It looks like the security icon on the taskbar in Win 10, except its Blue and Yellow. It replaces all the bitmaps and the browse. I see some strange things but this is really different. Here is how it normally looks: [img:23p4vvwt]http&#58;//www&#46;autoshopwriter&#46;com/images/ASWbmps&#46;p...
A Very Strange Problem
Tim, > Now imaging ALL bitmaps, plus the browse, being replaced by the same "shield" icon Could you get a screenshot ?
A Very Strange Problem
Tim, Please do: MsgInfo( hb_compiler() ) and let us know what Visual C++ you are using, thanks
A Very Strange Problem
The problem only occurs on other machines so I can't replicate it. I'm using Harbour / MSVC 2015. I don't know if it happens with other builds. That is the place I observe it. Tim
A Very Strange Problem
OK ... here is the bad screen .. [img:1xdrkkke]http&#58;//autoshopwriter&#46;com/images/BadBmp&#46;PNG[/img:1xdrkkke]
A Very Strange Problem
Tim, Please let me know what hb_compiler() shows with your VS2015 build, thanks
A Very Strange Problem
Microsoft Visual C++ 19.0.23506 (32 bit ) My Harbour build is dated April 2016 and it is one you provided.
A Very Strange Problem
Tim, thanks we are reviewing all our recent changes to find where such problem may come from
A Very Strange Problem
Thank you. I'm holding an update release hoping this problem can be located quickly. I'd love to include 16.12 features but am stuck at 16.11. Tim
A Way of Treeview of odlg add item Chinese words
DEFINE FONT ofont1 name "MS Sans Serif" SIZE 0,-12 oTree:bChanged = { ||oitem:=otree:getselected(),oitem:add("Show Chinesse words&#26174;&#31034;&#27721;&#23383;")} otree:setfont(ofont1) // otree of a dialog, This works . If font changes to "arial" will cause wrong display words . If otree of a window or of a ...
A XMLDOM simple sample
Hi,This is my simple test using XMLDOM:I have instaled Windows Server 2003 SP2 e .NET 1.0 e 2.0 and SOAP Toolkit 3.0.[code:wixjr68p] #include "FiveWin&#46;ch" Function main&#40;&#41; local RespText, objXMLHTTP oXMLDoc &#58;= TOLEAUTO&#40;&#41;&#58;New&#40;"Microsoft&#46;XMLDOM"&#41; // Allow the d...
A XMLDOM simple sample
Rochinha,Thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
A XMLDOM simple sample
[quote="Rochinha":1tw1msgt]Hi, This is my simple test using XMLDOM: I have instaled Windows Server 2003 SP2 e .NET 1.0 e 2.0 and SOAP Toolkit 3.0. [code:1tw1msgt] #include "FiveWin&#46;ch" Function main&#40;&#41; local RespText, objXMLHTTP oXMLDoc &#58;= TOLEAUTO&#40;&#41;&#58;New&#40;"Microsoft&#46;XMLDO...
A XMLDOM simple sample
Me respondo a mi mismo....Debe compilarse junto a la lib de xharbour debug.lib.
A XMLDOM simple sample
Jose,The sample work with you?See other sample in <!-- m --><a class="postlink" href="http://www.5volution.com/forum/xmlmerge.zip">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->This sample merge a XML data with a Word document via OLE and XMLDOM.
A XMLDOM simple sample
[quote="Rochinha":2fnfvghu]Jose, The sample work with you? See other sample in <!-- m --><a class="postlink" href="http://www.5volution.com/forum/xmlmerge.zip">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m --> This sample merge a XML data with a Word document via OLE and XMLDOM.[/quote:2fnfvghu]Si, el ejempl...
A XMLDOM simple sample
[quote="Rochinha":3g2r0058]Jose, The sample work with you? See other sample in <!-- m --><a class="postlink" href="http://www.5volution.com/forum/xmlmerge.zip">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m --> This sample merge a XML data with a Word document via OLE and XMLDOM.[/quote:3g2r0058]Estoy teniend...
A XMLDOM simple sample
Jose,see how to use XMLMerge.exe:[i:1qxaetfj]XMLMerge arquivo.doc arquivo.xml[/i:1qxaetfj]Example: [i:1qxaetfj]XMLMerge teste.rtf teste.xml[/i:1qxaetfj]TESTE.XML code:[code:1qxaetfj] <?xml version="1&#46;0" encoding="ISO-8859-1"?> <olemerge> <campos>nome</campos> <campos>email</campos> <campos>site</campo...
A XMLDOM simple sample
Hello Rochinha,I would like to have a look on your xmldom example but I get this error:Path and name: C:\FWH\samples\xmldom\XMLMERGE.EXE (32 bits) Size: 1,111,552 bytes Time from start: 0 hours 0 mins 0 secs Error occurred at: 06/02/08, 19:57:59 Error description: Error BASE/1081 Argument error: + Args:Reg...
A XMLDOM simple sample
Otto,The XMLMerge is a command line tool.You need pass two parameters:[i:3i3nknjl]XMLMerge arquivo.doc arquivo.xml[/i:3i3nknjl]Otherwise, i rebuild the XMLMerge, download it in <!-- m --><a class="postlink" href="http://www.5volution.com/forum/xmlmerge.zip">http://www.5volution.com/forum/xmlmerge.zip</a><!-- m -->
A better Solution to adjust Panel-Height / Explorerbar ?
Hello, to place any Control inside a Explorerbar-panel, I have to adjust the Height, to get empty space for the embedded Controls. My Solution for the Moment : adding empty Links, until I reach the needed Height.. Is there a better way how to do it ? [img:1jcwmq5j]http&#58;//www&#46;pflegeplus&#46;com/pictures/panel5...