Search results

  1. X

    Error 2290 In WebClient deployment

    I've encountered a lot of problems on winME and the error 2290. Sometimes the same problem occured on win2000 with "heavy users" of the application. It was always the same : after a short while the application crashed with error 2290. After restarting the application: same story. After...
  2. X

    Error 2290 on 9.1d

    I've encountered a lot of problems on winME and the error 2290. Sometimes the same problem occured on win2000 with "heavy users" of the application. It was always the same : after a short while the application crashed with error 2290. After restarting the application: same story. After...
  3. X

    MSWord in Progress panel

    You could use the RichtTextControl-ocx (for this, you need to have & register the RichTx32.ocx -> comes with Visual Studio,...). This will allow you most of the needed functions (except the spellchecking). Or, like Edward points out: use OLE to control the "real" MS-Word (of course, all your...
  4. X

    ActiveX License problem - VB .NET

    I might be far off base here, but I thought it was enough to copy your mscomctl.ocx to the client machine and execute a "regsvr32 mscomctl.ocx" on it ... (at least, that's how I solve it...).
  5. X

    adding new users to database

    DBA in Progress db To be superuser of the database: create a user account SYSPROGRESS, password SYSPROGRESS (don't know if this password is required though). Log in with this account in SQL explorer and you should be able to grant/revoke permissions.
  6. X

    Help with making a background process in Windows

    use a socket server Hello, I'm not saying that this is THE answer, but this is how I solved that problem: Make your background program as being a 'server' process -> use a socket server, and make it listen/accept connections on a specific port on Localhost. The other programs...
  7. X

    Run Super

    Problem is: you cannot use FRAME <widget-handle>, only FRAME <frame-name>. With object handles, I don't think you can use statements like ENABLE, DISABLE, VIEW, HIDE, etc... only properties and methods like SENSITIVE, HIDDEN, etc... I see two ways to solve your problem: 1) disable the whole...
  8. X

    Running A Macro With Arguments From Progressl

    Hello, I haven't fully tested the code, but I think the following should work: Public Sub Importcsv(ByVal arg1 As Integer, ByVal arg2 As Integer) Workbooks.OpenText Filename:="C:\WINDOWS\Desktop\Test2.txt", Origin:= _ xlWindows, StartRow:=1, DataType:=xlDelimited, TextQualifier:= _...
Top