topic
stringlengths
1
63
text
stringlengths
1
577k
A Alphablend tutorial for Photoshop a. Paintshop Pro
Hello, in addition to Antonio's video,a tutorial for photoshop and Paintshop Pro[img:3qsyiuu9]http&#58;//www&#46;pflegeplus&#46;com/pictures/trans1&#46;jpg[/img:3qsyiuu9][img:3qsyiuu9]http&#58;//www&#46;pflegeplus&#46;com/pictures/trans2&#46;jpg[/img:3qsyiuu9]Picture Downloads :<!-- m --><a class="postlink" href="http:...
A Beginners Guide to ADO
To All Over the past few days I have had to learn how to connect and manipulate an Access database .mdb. with xHarbour and FWH. I would like to dedicate my “Beginners Guide for ADO” to Enrico Maria Giordano who has been an inspiration and a tireless help in answering every one of my questions. For anyone who has ha...
A Beginners Guide to ADO
Thank you very much <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Rick, I imagine you had to work hard to get this knowledge <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> , so is very good that you share ...
A Beginners Guide to ADO
Hi Rip, I just want to comment that [code:3w15iiu4]IF oRS&#58;eof // query resulted with no records Msginfo&#40; "not found" &#41; RETURN&#40;NIL&#41; ENDIF [/code:3w15iiu4] Sometimes will not be enought to determine if this recordset is empty or not. I think should be better do: [code:3w15iiu4]IF oRS&#58;eof...
A Beginners Guide to ADO
Or even better [code:2m8dcb6o]IF oRs&#58;RecordCount = 0[/code:2m8dcb6o] But it will not work with all cursortype. EMG
A Beginners Guide to ADO
Enrico, >IF oRs:RecordCount = 0 >But it will not work with all cursortype. Are you saying that oRS:RecordCount might be greater than zero even when there are no records in the recordset under some circumstances? If so, under what circumstances? James
A Beginners Guide to ADO
oRs:RecordCount() is -1 when an adOpenForwardOnly or adOpenDynamic cursor type is used. EMG
A Beginners Guide to ADO
Hi, is RLOCK() possible ? Thanks, JAGarcia
A Beginners Guide to ADO
No, locking is automatic. You can choose pessimistic (from the first change to the Update() call, if I remember correctly) or optimistic (only during Update() call). EMG
A Beginners Guide to ADO
Enrico, >oRs:RecordCount() is -1 when an adOpenForwardOnly or adOpenDynamic cursor type is used. OK, so oRS:RecordCount() <= 0 when there are no records, right? Or, oRS:RecordCount() < 1 James
A Beginners Guide to ADO
No, with those two cursor types oRs:RecordCount is -1 even if there are records in the recordset. Thanks to MS for this... EMG
A Beginners Guide to ADO
>No, with those two cursor types oRs:RecordCount is -1 even if there are records in the recordset. Hmm. So how can we tell if there is an empty recordset? James
A Beginners Guide to ADO
[code:1isgjmnp]oRs&#58;Open&#40; &#46;&#46;&#46; &#41; IF oRs&#58;EOF&#40;&#41; &#46;&#46;&#46; ENDIF[/code:1isgjmnp] EMG
A Beginners Guide to ADO
To All oRs:eof is an effective way of determining an EOF as well as a no find as in the first example. I do have some difficulties running SQL UPDATE statements in a large loop over and over again .. Updating number values as in the first cSQL variable works flawlessly .. however when you start moving 'text' you have...
A Beginners Guide to ADO
I'm no SQL expert, but try switching your single and double quotes so that you are not surrounding your text strings with single quotes. James
A Beginners Guide to ADO
James SQL can only interpret single quotes to pass as values : cSQL := "UPDATE rcra_compliance_indexing SET ASSOCIATED_ID = " cSQL += "'"+cID+"', FILE_NAME = '"+cNAME+"'" cSQL += " WHERE ASSOCIATED_FILE_NUM = '"+cFILE+"'" This string equates to: "UPDATE rcra_compliance_indexing SET ASSOCIATED_ID = '12345', FILE_NAM...
A Beginners Guide to ADO
[quote="Rick Lipkin":3jarowst] IF oRs:eof oRs:MoveFirst()[/quote:3jarowst] You can't move the record pointer when the recordset is empty. This will result in a runtime error. EMG
A Beginners Guide to ADO
[quote="Rick Lipkin":1mylhfhm]I have no problem with the numeric values .. where my string breaks is passing the file_name string. Don't know why .. but there is no ryme or reason for the failure .. never happends on the same record .. so I can not find any specific reasons .. just my gut instinct .. VM gets taxed or ...
A Beginners Guide to ADO
Rip, About method Find of RecordSet (from BOL): [quote:1cpr511m]Find Method Searches a Recordset for the row that satisfies the specified criteria. Optionally, the direction of the search, starting row, and offset from the starting row may be specified. If the criteria is met, the current row position is set on the ...
A Beginners Guide to ADO
Rick, >SQL can only interpret single quotes to pass as values : Double quotes work for me, at least with Access. This works here: oRS:Open( [SELECT * FROM Customers WHERE companyname="Eastern Connection"], "Provider=Microsoft.Jet.OleDB.4.0;Data Source=Northwind.mdb" ) James
A Beginners Guide to ADO
Masters Any idea for compact a mdb, like "Compact & repair" but with SQL instruccion ? tnks Spanish ON------------------ Maestros, Alguna idea de como compactar una base mdb, como "Compactar y reparar" del Access, pero como instruccion SQL ? Gracias.
A Beginners Guide to ADO
[code:25fne4yj]FUNCTION MAIN&#40;&#41; LOCAL oJro &#58;= CREATEOBJECT&#40; "JRO&#46;JetEngine" &#41; LOCAL cConStr1 &#58;= "Provider=Microsoft&#46;Jet&#46;OLEDB&#46;4&#46;0;Data Source=mydb&#46;mdb" LOCAL cConStr2 &#58;= "Provider=Microsoft&#46;Jet&#46;OLEDB&#46;4&#46;0;Data Source=mydb2&#46;mdb" oJr...
A Beginners Guide to ADO
OK, any class to include or "pure & hard code" Spanish ON Ok, alguna clase a incluir o "codigo puro y duro" ? PD: Sql instruction via ODBC, exists ?
A Beginners Guide to ADO
Pure xHarbour code. EMG
A Better Programming Environment
Hi all fivelinux programmers. You are probably using gedit to write / edit your source code. I figured that there are probably some ways to make this a better environment. Antonio has already shown how you can build your application from within gedit. I figured that the default syntax highlighting wasn't exactly wh...
A Better Programming Environment
Hi all I have found out how to get xBase highlighting to come out as an extra option on the syntax highlighting menu of gedit. That means you don't have to overwrite your C syntax highlighting. The following file doesn't work perfectly - there are some C features still left in, and some xBase features aren't working...
A Better Programming Environment
Oops! The file has to be in /usr/share/gtksourceview-2.0/language-specs directory. xProgrammer
A Better Programming Environment
Booleans work with this fix [code:3l0fsn5r] <!-- C99 booleans --> <context id="boolean" style-ref="boolean"> <match extended="true"> \&#46;&#91;tTfF&#93;\&#46; </match> </context>[/code:3l0fsn...
A Better Programming Environment
Here is an improved version with support for @ and class variables (ie ::) I wrote 2007 in the file and its 2008 - I am DEFINITELY going to bed now! [code:3eawwh4g]<?xml version="1&#46;0" encoding="UTF-8"?> <!-- Authors&#58; Marco Barisione, Emanuele Aina Copyright &#40;C&#41; 2005-2007 Marco Barisione <barisione...
A Better Programming Environment
Doug, We have found that the Wine emulator is working better and better, so we use our familiar UEStudio in Linux too <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> So we use the same source code editor in Windows and Linux now <!-- s:-) --><img src="{SMILIES_PATH}/icon_...
A Better Programming Environment
Hi Antonio Thanks for the info. I now have gedit behaving pretty much as I want it so I'd rather stay with something that isn't relying on an emulator. I have made further improvements since last version of xbase.lang posted here. Still shows signs of being a hack from c.lang. I'll fix that doing some renaming and...
A Better Resource Editor?
For the past year, I have used the Resource Editor in UEStudio. For about the same time I have been communicating with IDM support urging them to fix a multitude of problems I was having with it. I was told extensive time was spent looking into all my reported problems. I did see a couple of visual changes after UEStud...
A Better Resource Editor?
Hello Ken, thank you for your post. Do you have an example how to use prg-files with Fbedit? Regards, Otto
A Better Resource Editor?
[quote="Ken Wantz":ha3l3jla]It can be downloaded from [url:ha3l3jla]http&#58;//www&#46;radasm&#46;com[/url:ha3l3jla].[/quote:ha3l3jla] I just tried to open one of my RC made using Borland Resource Workshop and the very first thing I get was a very bad GPF! Sorry but I deleted it immediately. EMG
A Better Resource Editor?
It seem there is no way to work with .RES files. <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><!-- s:cry: --> Best regards
A Better Resource Editor?
[quote="EnricoMaria":5eqo60kv][quote="Ken Wantz":5eqo60kv]It can be downloaded from [url:5eqo60kv]http&#58;//www&#46;radasm&#46;com[/url:5eqo60kv].[/quote:5eqo60kv] I just tried to open one of my RC made using Borland Resource Workshop and the very first thing I get was a very bad GPF! Sorry but I deleted it immediate...
A Better Resource Editor?
Otto, No, I have not looked at or tried Fbedit at all. I have used Ultra Edit for years and I am quite comfortable with it just as Antonio is with using the Borland Resource Editor. It could be that Fbedit was designed more for creating ASM files. Enrico, I extracted all 114 files to a folder. Most, if not all look ...
A Better Resource Editor?
ResEd has just been updated to 2.0 and now includes Undo/Redo. Also added is the ability to edit an RC source directly within ResEd. The GPF problem previously reported by Enrico Maria has also been resolved. I assume BRW has the capability to create and edit images. ResEd was and still is unable to load built-in bitm...
A Better Resource Editor?
You just talking about editors I use PSPad. It is multilanguage, its free and can handle many things, i didn't see in other editors. Syntax-handling for every program-language. A long time a worked with EditPlus, but this one is much better. A better one i couldn't find. You can download it at : <!-- m --><a clas...
A Better Resource Editor?
Hi Uwe, [quote:2tpb4sky]You just talking about editors [/quote:2tpb4sky] Not directly. I am primarily talking about the Resource Editor, [b:2tpb4sky]ResEd[/b:2tpb4sky]. I used UE (UltraEdit) in the past with Clipper but when I decided to move to FiveWin I quickly learned I would need a Resource Editor. As I never ow...
A Better Resource Editor?
Have a look at this also: [url:12gwje11]http&#58;//www&#46;resedit&#46;net[/url:12gwje11] EMG
A Better Resource Editor?
Just curious .. why in the .rc does the name of the dialog get named 'dialogx' .. Rick Lipkin
A Better Resource Editor?
Enrico, >Have a look at this also: >http://www.resedit.net I looked at the website and it looks promising. Have you already tried it? If so, what are your impressions? James
A Better Resource Editor?
It seems the best I've tried so far. EMG
A Better Resource Editor?
I am looking for a replacement of Borland's as well. I found Resource Builder. It starts there, where Borland ended. It is not free of charge ( 48 Dollars ) but for that, what you can do, it is ok. for download : <!-- m --><a class="postlink" href="http://www.resource-builder.com">http://www.resource-builder.com</a><!...
A Better Resource Editor?
Rick Sorry for te delay. I believe you meant "Dialogex" not "Dialogx." According to what I found at [url:1imu5xag]http&#58;//www&#46;mycplus&#46;com/tutorial&#46;asp?TID=298[/url:1imu5xag], here is the explanation: [quote:1imu5xag]DIALOG: The dialog keyword tells the C++ resource compiler that we are creating a new...
A Better Resource Editor?
Ken Thank you for the explaination .. what would be the 'extended styles' ?? Sorry for the dumb question .. Please forgive me .. if a legacy .rc does not use the 'extended styles' .. why would you not leave DIALOG the way it is .. only if the developer chose 'extended styles' would you use the DIALOGEX indentifier...
A Better Resource Editor?
Unfortunately it seems that RCs produced by ResEdit can't be compiled, as they are now, with Borland Resource Compiler because it uses extended parameters for the FONT clause that are not supported by BRC. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> I already reported the ...
A Better Resource Editor?
Hello, Enrico I bought Resource Builder 2.6.4.1 It is not free of charge, but can do a lot ( 58.-- Euro ) Just look the Topic : A better Resource-Editor There, i put the descripton. Regards Uwe
A Better Resource Editor?
I already tried it and I didn't like it, sorry. EMG
A Better Resource Editor?
Rick, I am still getting my feet wet in the Windows arena so I still have a lot to learn. I created a simple dialog and this is what ResEd (NOT ResEdit) created. [code:3dfy2gvg]#define IDD_DLG1 1000 #define IDC_STC1 1001 IDD_DLG1 DIALOGEX 4,3,146,81 CAPTION "IDD_DLG" FONT 14,"Times New Roman",700,0 STYLE WS_CAPTION|...
A Button-effect for BMP > oBmp:bLClicked ?
Hello,For a new project, I'm looking for a Button-effect for the method:< oBmp:bLClicked > to get a Button-look.It means : a < pressed-effect > and changing the mouse-cursor inside the bitmap-earea. Maybe to add something inside the BMP-class ?Is there a sample for it ?[img:2q6vtq83]http&#58;//www&#46;pflegeplus&#46;co...
A Button-effect for BMP > oBmp:bLClicked ?
Uwe,[code:a6ccoyi6]#include "fivewin&#46;ch" function main&#40;&#41; local oWnd, oBmp define window oWnd title "Test Mouse Over" @ 4, 16 BITMAP oBmp FILENAME "Tutanka1&#46;bmp" ADJUST SIZE 280, 200 OF oWnd oBmp&#58;bLClicked &#58;= &#123;|| Msgalert&#40; "Button" &#41; &#125; oBmp&#58;bMMoved &#58;=...
A Button-effect for BMP > oBmp:bLClicked ?
James,thank you very much,The line is added to the source-sample.I had a look at [code:3m36lqqi] oBmp&#58;lStretch &#58;= &#46;f&#46; nZoom&#58;=nZoom-&#40;0&#46;10&#41; oBmp&#58;Zoom&#40;nZoom&#41; oBmp&#58;Refresh&#40;&#41; oBmp&#58;ScrollAdjust&#40;&#41; and than &#58; oBmp&#58;lStretch &#58;= &#46;f&#46; nZoom&#...
A Button-effect for BMP > oBmp:bLClicked ?
Hello James,I found a way, to solve the problem[img:1a88pu4v]http&#58;//www&#46;pflegeplus&#46;com/pictures/Voolsfont1&#46;jpg[/img:1a88pu4v][code:1a88pu4v] // blClicked changes the Color // the user can see, if a button is activated&#46; // after closing the dialog or message, the old color is restored to the button&...
A Call for New Ideas and Web Integration
Hello friends, We often have situations now where there are days without new posts. What happens then: You stop checking the forum regularly. It's actually the beginning of the end. It's clear, we are now all experienced FIVEWINNERS, FIVEWIN is super stable, and the standard situations are solved. But for those of us...
A Call for New Ideas and Web Integration
Dear Otto, be patient post here some examples, definition, documentation for one like me that want to know about webview starting from principal. Have a nice day Marco
A Call for New Ideas and Web Integration
Otto: I agree with Marco, be patient, it is hard to leave our comfort zone but with support, like yours, the learning curve will be less hard. With best regards
A Call for New Ideas and Web Integration
[quote="Otto":37suvu59]Hello friends, We often have situations now where there are days without new posts. What happens then: You stop checking the forum regularly. It's actually the beginning of the end.[/quote:37suvu59] Only a small correction: you do not have to check the forum regularly yourself, just activate the...
A Call for New Ideas and Web Integration
How Notifications Affect Our Real-Life Togetherness and Interest in Each Other: A No-Go Dear Enrico, Lately, I've been thinking a lot about how the constant flood of notifications affects our coexistence and our relationships. Here are some thoughts I'd like to share and discuss: We all know it – constant notifica...
A Call for New Ideas and Web Integration
That's why you should activate only the really necessary notifications.
A Call for New Ideas and Web Integration
Thank you. I will search through ChatGPT's plugins to see if there is already a feature that can distinguish important from unimportant.
A Call for New Ideas and Web Integration
Only you can know if a notification is important for you.
A Client-Server Data Base Server in Harbour
Hi all A while ago, in response to a post about data bases, I mentioned my Harbour based client-server architecture data base. I promised to post in response to a request and this thread will fulfill that promise, albeit a bit later than I originally promised. Herewith is the main .prg file. It really only implemen...
A Client-Server Data Base Server in Harbour
The include file rapids.ch provides defines that are independant of the data base being used including defines usede to transfer error and error class back from the server to the client. [code=fw:mpkrv7zo]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// rapids.ch</span><br /><...
A Client-Server Data Base Server in Harbour
I also use defines with respect to the particular data base being served. This is a real example, and the one referenced in the code in the first post in this thread: DBEmphasis.ch [code=fw:2jb0i97y]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// DBEmphasis.ch</span><br /><b...
A Client-Server Data Base Server in Harbour
Herewith an example of the code related to a particular data base. Note that the queries and the list of fields to be returned are created as objects the code to do this is generated by a series of #xcommands contained in DBQuery.ch [code=fw:242l3rkq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...
A Client-Server Data Base Server in Harbour
To understand how DBEmphasis.prg works you need to know DBQuery.ch which is as follows: [code=fw:3e86vyfs]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// DBQuery.ch</span><br /><br />#xcommand ENDXQUERYFORMAT => ;<br />  :<span style="color: #000000;">SetUp</span><span ...
A Client-Server Data Base Server in Harbour
This looks interesting. Thank you for sharing Doug
A Client-Server Data Base Server in Harbour
Hi all Now I can start with the code that sets up the individual components of the "compiled" queries. Class TData is the base class for class TSingleData (for a read or a write of a single record) and class TListData (for a read of a list of zero, 1 or more records). [code=fw:1law55a7]<div class="fw" id="{CB}" styl...
A Client-Server Data Base Server in Harbour
Hi all Herewith the class TListData [code=fw:1lygwhur]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// TListData.prg</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"hbclass.ch"</span><br /><span style="color: #00D7D7;">#inc...
A Client-Server Data Base Server in Harbour
Hi all And now TSingleData [code=fw:3df5qw6z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// TSingleData.prg</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"hbclass.ch"</span><br /><span style="color: #00D7D7;">#include</s...
A Client-Server Data Base Server in Harbour
Hi all Herewith class TServerQuery which handles the receipt of the query request on the server [code=fw:3hjhvec7]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// TServerQuery.prg</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff000...
A Client-Server Data Base Server in Harbour
Hi again Herewith class TDBQuery which holds together the details of the actual database query [code=fw:35dyrxqc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// DBQuery.prg</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"h...
A Client-Server Data Base Server in Harbour
Hi again And finally (for today) my TDateTime class [code=fw:16vmi7c8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// TDateTime.prg</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"hbclass.ch"</span><br /><span style="color: #00C...
A Colorpicker and RGB-tools
Hello Marc Your question What i need to do : (we are in business of dresses, sweaters, ...) I have a xbrowse with thousands of records that show a jpg. The picture is show in the dialog with a oImage object, and changes when browsing I need to make a small jpg file or save the colorcode with the color of the product....
A Colorpicker and RGB-tools
Thanks Uwe, This method was even more usefull as my idea. Used it.
A Colorpicker and RGB-tools
Uwe, I get indeed all kind of values, since it will check op pixel level i think. Is it possible to have a larger range, so that my selection will give a better return value ? Also, conversion from dec to hex ofthen gives a #FFFFFF value. Are they out of range or so ? [code=fw:o3c0dci0]<div class="fw" id="{CB}" st...
A Colorpicker and RGB-tools
I Just found one of your colorpickers. Will try this out...
A Colorpicker and RGB-tools
Marc, I think it is better to select a fixed color from a dropdown-list ( color-sorted ) next to the image. A image includes many colors even if Your eye will see just one. I hope I will have the time this weekend to create a sample that shows what I mean. Maybe You can give me a colorlist from the colors You want to ...
A Colorpicker and RGB-tools
Uwe, Creating a page/group (selection of colors) for each manufacturer would be a interesting way, since I can keep the colors more together. I like the Colorpicker more, since it let me draw the cursor and show the color realtime, until i'm satistied. I will create the colors from your picker, and close the picker,...
A Colorpicker and RGB-tools
Hey Uwe, I found a post from you from 2014 <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=29764&hilit=pick">viewtopic.php?f=3&t=29764&hilit=pick</a><!-- l --> There is a program that does just what I need. I think I can addapt this one. Thanks
A Colorpicker and RGB-tools
Marc, How many manufacturers You administer and how many colors a manufacturer is using ? I'm thinking about picking colors from a table ore using a xBrowse. [quote:1zladpdy]Creating a page/group (selection of colors) for each manufacturer would be a interesting way, since I can keep the colors more together.[/quote:...
A Colorpicker and RGB-tools
Manuf. up to 40, Colors now over 1200 ! Each brand has his own color Red for example. I do need it to work in Xbrowse, selecting first a Brand, and than view a xbrowse with only the selected colors. I can do this in combination with your colorpicker. I have more trouble in the conversion to Hex. I need hex format f...
A Colorpicker and RGB-tools
[quote="Marc Venken":157w5ws4]I have more trouble in the conversion to Hex. I need hex format for HTML, but I see often that the colors RGB or DEC have will not convert correct with the provided function from FWH[/quote:157w5ws4] This is what I'm using: [code=fw:157w5ws4]<div class="fw" id="{CB}" style="font-family:...
A Colorpicker and RGB-tools
Marc, Enrico I added some new functions 1. new hex-values on selected color and brightness 2. saving any of nValue, RGB or Hex - results to the clipboard if needed just select the needed color, click and paste 3. gradient circle adjusted to new fwh-release Because the gradient-values are for internal use, I didn't ...
A Colorpicker and RGB-tools
Uwe, Is it also creating/saving to a database ? In the test version it's not as far as I see. If not, that would be a nice feature, because we could that create a database with all colors we want. If you even let it be possible to split in differtent lets say Brands, that your tools if even better )) Dbf. Brand ...
A Colorpicker and RGB-tools
Marc, a good idea like saving to the clipboard I can save to dbf-fields as well. I will add this function regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
A Colorpicker and RGB-tools
Marc, I added scrollbars to the dialog. Next I resized to the section < Metro-colors > Before I activated < to clipboard > Now I could paste the colorvalues to another program switching between the two programs. Does it make sense to keep this solution ? [img:5yrrgqz0]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/Colp...
A Colorpicker and RGB-tools
In my case it does. I could use this solution in combination with my program. If we can store it to a dbf, then I would first create some color tables for the most wanted colors with colorpicker, and then integrate that dbf into my own program for selecting colors. Will post foto next
A Colorpicker and RGB-tools
[img:3w33ounx]http&#58;//www&#46;maveco&#46;be/fivewin/uwe1&#46;jpg[/img:3w33ounx] Left top is the browse with 1 product selected and adding all the colors I want. Left bottom = list off all colors available as tekst ( "Red,Green,Blue,...") // data from brands csv files for import in shopcarts. 2 imgs : only for visa...
A Colorpicker and RGB-tools
Uwe, I don't need adjustments. Only colorpicking from a image or from the defined colors table. I see that in this version the colorpicker is not included ? Some brands have easyly some hunderds of colors )) Maybe a dbf design like this is better ? The colornaam is a must, because it is used as refCode into prest...
A Colorpicker and RGB-tools
Marc, [color=#0000FF:83wb9wgd]I extracted the parts only showing the basic colors Do You still need the < brightness - adjustment > ?[/color:83wb9wgd] On the left hand side a collector ( brands ) to define colorgroups. I still have to work on the first browser where it is possible to collect colors. All the rest like ...
A Colorpicker and RGB-tools
Uwe, The basis colors mosaic, can it be filled with the scoped colors from the database ? and the Metro colors can be the same data, but with the names of the Brand colors into it. In my spicific case, the dark and light browse are not needed, and coulf be replaced by a browse for brands, with a button for (Add recor...
A Colorpicker and RGB-tools
Marc, I'm still working on a update A button for activating the colorpicker is included. The colorpicker supports hex I only save the values to the clipboard ( don't show a brand-browser ) The reason of the wrong colorpicker results I found. The screen scale-factor [img:2yh3w28n]http&#58;//www&#46;pflegeplus&#46;com/...
A Colorpicker and RGB-tools
Great, that the values are ok now !! The picker does not need a Brand browser. I can use it as it is now. If the Rgb browser could have a option for showing brand colors, that would be great. Great work !!
A Colorpicker and RGB-tools
Marc, as soon it is finished, the download will include the sources as well. It means You can modify ( add / delete ) what ever You like. regards Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
A Colorpicker and RGB-tools
That would be very nice !
A Colorpicker and RGB-tools
Marc, the download <!-- m --><a class="postlink" href="http://www.pflegeplus.com/DOWNLOADS/Colorpick1.zip">http://www.pflegeplus.com/DOWNLOADS/Colorpick1.zip</a><!-- m --> The source of the color-browsers is included. The colorpicker ( color at cursorposition ) will still be updated. regards Uwe <!-- s:D --><img sr...
A Colorpicker and RGB-tools
Downloaded. Will commend...