Search found 55 matches: duplicates

Return to advanced search

Re: don't open duplicates of an exe

ok now load the same exe again and then look at the computer task manager
however I use Harbor and it doesn't work on mine
by Silvio.Falconi
Wed May 19, 2021 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: don't open duplicates of an exe
Replies: 11
Views: 1207

Re: don't open duplicates of an exe

It works perfectly. Show how you are doing. What is the NAME of your EXECUTABLE? I don't understand why nothing works for you.

https://i.imgur.com/Xd9rfEn.png

Image

Regards.
by karinha
Wed May 19, 2021 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: don't open duplicates of an exe
Replies: 11
Views: 1207

Re: don't open duplicates of an exe

   IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) )      MsgInfo( "WinOrcam.exe Já Está Rodando Nesta Máquina","WinOrcam.exe")      SHOWWINDOW( FINDWINDOW( 0, "WINORCAM" ), 9 )      SETFOREGROUNDWINDOW( FINDWINDOW( 0,...
by Silvio.Falconi
Wed May 19, 2021 2:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: don't open duplicates of an exe
Replies: 11
Views: 1207

Re: don't open duplicates of an exe

   IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) )      MsgInfo( "WinOrcam.exe Já Está Rodando Nesta Máquina","WinOrcam.exe")      SHOWWINDOW( FINDWINDOW( 0, "WINORCAM" ), 9 )  &n...
by karinha
Wed May 19, 2021 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: don't open duplicates of an exe
Replies: 11
Views: 1207

don't open duplicates of an exe

not to open the same exe I have always done this way (it seems to me that the source is EMG) # define NOME_PROGRAMMA_TITLE "Winbeach"Function Main()... IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) )       MsgWait(NOME_PROGRAMMA_TITLE+"  è già in esecu...
by Silvio.Falconi
Wed May 19, 2021 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: don't open duplicates of an exe
Replies: 11
Views: 1207

Re: Funções "RANDOM" não funcionam!

... they are expected to do. We can not expect that random number generators generate "every" number in a series. Also they may generate duplicates. It is for us (the programmer) to use the random function to get what we want. For example, if we want a function to generate every number ...
by nageswaragunupudi
Fri Aug 07, 2020 1:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Funções "RANDOM" não funcionam!
Replies: 4
Views: 555

Re: Records:0 Duplicates:0 Warnings:0 message every AlterColumn

vilian wrote:Yes,

IF I understood what you want, and you don't want to see this message, just do this:
oCn:lSilent := .T.


Yes, you are right. It solves my problem. I could not find it in wiki.

Thanks.
by Horizon
Fri May 22, 2020 10:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Records:0 Duplicates:0 Warnings:0 message - SOLVED
Replies: 2
Views: 357

Re: Records:0 Duplicates:0 Warnings:0 message every AlterColumn

Yes,

IF I understood what you want, and you don't want to see this message, just do this:
oCn:lSilent := .T.
by vilian
Fri May 22, 2020 10:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Records:0 Duplicates:0 Warnings:0 message - SOLVED
Replies: 2
Views: 357

Records:0 Duplicates:0 Warnings:0 message - SOLVED

Hi,

It display an information about result on every AlterColumn. I try

Code: Select all  Expand view
oCn:lShowMessages := .F.
oCn:lShowErrors   := .F.
oCn:lLog := .F.
oCn:lLogErr := .F.


Is there any different parameter for passing display this information?

Thanks.
by Horizon
Fri May 22, 2020 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Records:0 Duplicates:0 Warnings:0 message - SOLVED
Replies: 2
Views: 357

Error Log Content

... on many of them ( perhaps 6 or 7 ). All files are opened as data objects, and when the routine ends, they are closed. Many of the files listed are duplicates of the one that is being used on the local workstation. Any thoughts on this would be greatly appreciated. Thank you.
by TimStone
Tue Oct 01, 2019 7:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Log Content
Replies: 3
Views: 712

Re: Hunt down my functions in a project

... across ALL files, so your list would be of all the functions that exist, but since you only define them once in the project, you would not get duplicates. Of course in UE you can also turn on ( check View - Windows/Toolbars ) the function display on the right side of your editor that shows ...
by TimStone
Sat Dec 29, 2018 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hunt down my functions in a project
Replies: 6
Views: 1343

Re: FWH 18.08: Enhancements to strings.prg

... * 1) have its international entries ordered with ascii() code ascending order. * 2) have the number of entries correctly set up * 3) never have duplicates in it's table international entries. * * An application can know the type of the table loaded by looking at the * last 3 characters of the ...
by carlos vargas
Tue Nov 13, 2018 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5445

Re: FWMARIADB:copy record. How can it know the dest. record id?

... with the values from the source and otherwise the rows are inserted retaining the same ID as in the source. Set the 4th parameter to .F.: ( ignore duplicates ) In this case rows with duplicate IDs are skipped without raising error and other rows are inserted retaining the same ID as in the source. ...
by nageswaragunupudi
Wed Dec 06, 2017 3:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWMARIADB:copy record. How can it know the dest. record id?
Replies: 9
Views: 1507

Re: FWHMARIADB Samples

... number is very easy: Eg: ? oCn:NextSerial( 'IN' ) ? oCn:NextSerial( 'VR' ) CAUTION: Using this function inside a transaction may result in duplicates
by nageswaragunupudi
Tue May 16, 2017 7:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20566

Re: multiple defintions, forst defined here

I changed the folder I was using to start hbmk2 to where the source code sits, and now am getting undefined instead of duplicates This is due, I guess, to not pulling in the correct library(ies). I added trace to see what was going on (thanks for that tip). Does this and the console ...
by lmheimendinger
Mon Dec 05, 2016 11:37 pm
 
Forum: FiveWin for CA-Clipper
Topic: multiple defintions, forst defined here
Replies: 15
Views: 20445
PreviousNext

Return to advanced search

cron