I don't know if I understood right but you may maintain moving the values from screen to another through defining global variable for each field you require. Or if the table is not a big one, you may define a global Queue and copy the values of the table to the queue when you start the...
I don't have clarion 9 but it should me the same sequence as 6.3
it is from menu bar choose project -> Properties, you should see the Project Tree. in this tree you scroll down until you find Database driver libraries, when you double click on it will give the list of database drivers, you...
the suggestion of Annaise is ok but in this case you have to add both tables to the dictionary,the new one and the old one or define its structure in the procedure.
there is some other way is to rename the old one and export the old data using Topscan utility to a delimited file and import it...
Dear All,
In my applications I used to have a string to view the date of when it was compiled and created (not the exe date as it could change). I tried to create a global template but the problem that it holds the date when I add the extension only and do not change until I remove and add the...
Dear all
Is there any way or template to search for a certain text in the application (.app) file.
for example I want to know in which procedures I used "display" or "stop" ... etc.
Now what I do is exporting the application to txa file and do the search.
thank you
Hello All
I am trying to add a new path to "Path environment variable". (actually I want to add the path regardless the method)
my code retrieved the path correctly but it fails to update the path, even I tried to create a new variable in the registry but also failed.
Reg_pth1...
Also in SQL you will get the number of columns using:
SELECT count(*)
FROM INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME = 'TableName'
but this is not the case, I gave an example as * to make it easier to explain but the query could be:
Select F1,F2 from Table
what I want to know is the...
Because my Queue contains more than 100 fields so instead of defining 100 fields I can define one field of DIM(100), then you can loop through instead of dealing with so many fields.
In operation it runs fine but if you try to view it in a list it gives this error.
I will give an example for what Iam trying to do:
I defined a queue as follow:
QQQ QUEUE,PRE(QQQ)
CC CSTRING(20),DIM(20)
END
and then ran this code to create a sample data
free(QQQ)
loop i# = 1 to 3
QQQ:CC[1] = i#
add(QQQ)
end
Until here it is fine, but when I tried to...
Dear All
I have this application which creates small xml files. but the problem that files are unusable until I save them externally to utf-8.
is there a way to convert them directly from clarion?
any feed back could be helpful
thank you
I have two SQL databases. both have same tables and same structure.
My Application requires to use both, I managed to deal with data by changing the connection string and reopen tables and it worked fine.
But the thing that I couldn't solve is having a browse for a table and a button to...
gettig the size is easy by using GetFileSize function (if that is the question). but still it does not solve my problem that no action can be performed while the copy is in progress. Further more, the copy command create a dump file with the same size as original from the beginig of the copy...
Hi TinLegs,
thank you for the reply, but my problem is that I am copying a big file (more than 7GB). the thing that it takes time to copy through the network (approx. 7 minutes). what I want is to have some changeable effect to tell the user that the copy is still running. Now I am putting a...
Thank you TinLegs for your reply.
Iam using clarion copy command but I dont know how to apply the progress bar with the copy command as it has only two parameters : COPY(file,new file) and cant put any order while the copy in process (as far as I know).
I will be so thankful if you give an idea...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.