DCGET PASSWORD Not Working On Windows98

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
GeneB
Posts: 158
Joined: Sun Jan 31, 2010 8:32 am
Location: Albuquerque, New Mexico, USA
Contact:

DCGET PASSWORD Not Working On Windows98

#1 Post by GeneB »

Since build 255, DCGET PASSWORD is not showing * when typing, it is showing the actual character typed, but only on the Windows 98 machines.

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#2 Post by rdonnay »

How is your code different than the below code? This works fine.

Code: Select all

#INCLUDE "dcdialog.CH"

FUNCTION Main()

LOCAL GetList[0], cPassword := Space(10)

@ 0,0 DCSAY 'Enter Password' GET cPassword PASSWORD SAYSIZE 0 SAYBOTTOM

DCREAD GUI FIT

RETURN nil


PROC appsys ; return
The eXpress train is coming - and it has more cars.

User avatar
GeneB
Posts: 158
Joined: Sun Jan 31, 2010 8:32 am
Location: Albuquerque, New Mexico, USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#3 Post by GeneB »

My code

Code: Select all

   @ 0,0 DCSTATIC TYPE XBPSTATIC_TYPE_RECESSEDBOX ;
      SIZE 40,3 ;
      OBJECT oPW

   @ 1,1 DCSAY "Enter " + cPwLevel + " Password"  ;
      GET cPassword  ;
      PASSWORD ;
      NOCONFIRM ;
      SAYTOOLTIP "enter 'reset' to change" ;
      GETTOOLTIP "enter 'reset' to change" ;
      PARENT oPw

   DCREAD GUI ;
      TITLE "Password" ;
      ADDBUTTONS ;
      ENTEREXIT ;
      MODAL ;
      EVAL {|o| SetAppWindow(o)} ;
      SETAPPWINDOW ;
      FIT

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#4 Post by rdonnay »

When I compile your code, it works fine.

Please compile your sample and send it to me as an EXE.
The eXpress train is coming - and it has more cars.

User avatar
GeneB
Posts: 158
Joined: Sun Jan 31, 2010 8:32 am
Location: Albuquerque, New Mexico, USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#5 Post by GeneB »

Attached, along with the prg and xpj. The xpj has some extra 'stuff' in it but that might be clues to the failure.
Thanks.
Attachments
testPW.zip
(46.05 KiB) Downloaded 668 times

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#6 Post by rdonnay »

Your testpw.exe works fine. Shows asterisks.

Now send me your dclipx.dll.
The eXpress train is coming - and it has more cars.

User avatar
GeneB
Posts: 158
Joined: Sun Jan 31, 2010 8:32 am
Location: Albuquerque, New Mexico, USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#7 Post by GeneB »

Roger, next time feel free to just say "Hey Einstein, did you update the dll's on those 98 machines?"
They are old warehouse stations, use a dummed down version of the main program that never calls more advanced features, and loaded fine with the '07 dlls. They did work since '07 with the GUI password routine but build 255 caught me.
Thanks for your time.
GeneB

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCGET PASSWORD Not Working On Windows98

#8 Post by rdonnay »

I thought it might be something like that.

Glad you got it working.
The eXpress train is coming - and it has more cars.

Post Reply