@Nico,
Did srod get you information? I just sent him a PM in the hopes that he has alerts enabled and actually gets it.
Alternatively, does anyone else have a copy of the demo they could make available for me to download so I know for sure if this will meet my needs?
Thank you,
tcb
Search found 12 matches
- Wed Sep 23, 2015 3:43 pm
- Forum: Announcement
- Topic: Arctic reports (reporting system - Windows)
- Replies: 201
- Views: 125172
- Tue Apr 28, 2009 5:13 am
- Forum: Coding Questions
- Topic: Database problem with Left() taking too much [Resolved] Thx!
- Replies: 5
- Views: 1274
- Tue Apr 28, 2009 2:37 am
- Forum: Coding Questions
- Topic: Database problem with Left() taking too much [Resolved] Thx!
- Replies: 5
- Views: 1274
It has to be Row$=Left(Row$, 13) The 'length' parameter wants to know the length of the snippet you want to get, not the length of the remaining snippet that you want to throw away.
By the way, if you want a 100%-safe and more flexible solution, you might have a look at Regular Expressions. Using ...
By the way, if you want a 100%-safe and more flexible solution, you might have a look at Regular Expressions. Using ...
- Tue Apr 28, 2009 2:14 am
- Forum: Coding Questions
- Topic: Database problem with Left() taking too much [Resolved] Thx!
- Replies: 5
- Views: 1274
Database problem with Left() taking too much [Resolved] Thx!
Could someone please tell me why the commented line in the following code would cause the last few database entries to get cleared? The thing I am trying to do is that if a column has date in the name I want to remove the last 13 characters before I add it to the list. The dates look like: "2009-04 ...
- Wed Jan 24, 2007 4:08 pm
- Forum: Coding Questions
- Topic: Copy only modified files
- Replies: 10
- Views: 2716
- Wed Jan 24, 2007 3:59 pm
- Forum: Coding Questions
- Topic: Force variable evaluation
- Replies: 7
- Views: 1973
- Wed Jan 24, 2007 8:25 am
- Forum: Coding Questions
- Topic: Copy only modified files
- Replies: 10
- Views: 2716
Thank you everyone who helped me (especially Trond). I finally went through the work to do it the right way instead of trying to rely on xcopy. I have it working remarkable well.
It creates missing directories
It copies any file not matching date modified
Optionally deletes files in the destination ...
It creates missing directories
It copies any file not matching date modified
Optionally deletes files in the destination ...
- Wed Jan 24, 2007 5:13 am
- Forum: Coding Questions
- Topic: Force variable evaluation
- Replies: 7
- Views: 1973
- Wed Jan 24, 2007 1:51 am
- Forum: Coding Questions
- Topic: Force variable evaluation
- Replies: 7
- Views: 1973
Force variable evaluation
I have looked through the help file and the forum and I just can't figure it out. How can I force evaluation of a variable so I can use the variable value in a listname declaration? temp$ = SomeProcedureCallReturnValue()
NewList temp$() This creates the list with the name temp$, not the value that ...
NewList temp$() This creates the list with the name temp$, not the value that ...
- Mon Jan 22, 2007 8:05 pm
- Forum: Coding Questions
- Topic: Copy only modified files
- Replies: 10
- Views: 2716
- Mon Jan 22, 2007 8:33 am
- Forum: Coding Questions
- Topic: Copy only modified files
- Replies: 10
- Views: 2716
- Sun Jan 21, 2007 6:42 am
- Forum: Coding Questions
- Topic: Copy only modified files
- Replies: 10
- Views: 2716
Copy only modified files
Hi,
I have a batch file that I use to xcopy several directories using the /D flag, so that only modified files are copied when compared to the destination. It works OK, but I would like to be able to do more error handling and reporting so I found PureBasic. I have the demo, and have spent all day ...
I have a batch file that I use to xcopy several directories using the /D flag, so that only modified files are copied when compared to the destination. It works OK, but I would like to be able to do more error handling and reporting so I found PureBasic. I have the demo, and have spent all day ...