Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

BarryStevens

About

Username
BarryStevens
Joined
Visits
2,071
Last Active
Roles
Member

Comments

  • Thanks - Confirmed
    in $DEBUG Comment by BarryStevens June 3
  • 👍 Just in case anyone is looking at this and scratching their head over the $debug, then this is for you. Ignore the Openisight 11 heading (which I have an issue with), it is for OI10 https://revdevx.com/2024/12/05/debug-the-safer-alternative-to-deb…
    in $DEBUG Comment by BarryStevens May 29
  • FYI: 6th November for your benefit 😜
    in $DEBUG Comment by BarryStevens May 29
  • Yes
    in $DEBUG Comment by BarryStevens May 29
  • 3.4.11.0
    in $DEBUG Comment by BarryStevens May 29
  • 👍
  • Ok, one more hint (sorry, just a me thing), so that you dont have to maintain a list of table names if you create more and also be a catchall change Call Attach_Table(Dir_Name, Table_Names, "", "") to Call Attach_Table(Dir_Name, "", "", "") ;* defa…
  • Maybe detach_volume would be a better catchall https://revelation.wiki/doku.php?id=guides:programming:programmers_reference_manual:detach_volume
  • when you say you oscopycopy the rev files, does that include the revmedia, if so, then maybe if you use Rename_Volume after the copies then that may work. I dont see any OI10 do for it but it is in OI10 object
  • Depends if the NEW location was originally a copy of the OLD location. If so, then I would say that is the issue but you should have get an 404 error in Status and @file_error
  • Jim, you said you did not get a status error which in my case was 404. So your volume names ARE different?
  • My issue is that I think they might have plugged a loophole (which they have done a lot of in Oi10) in Oi9 thru to Oi10.2.3 I could use attach_table to attach tables from a copy of a folder (volume) that is already attached (If done via IDE you get…
  • same as always OpenInsight Issue Tracking System & Suggestion Box
  • @DonBakke Are you using 10.2.3 because I have a similar issue in 10.2.4 but not 10.2.3
  • Just out of curiosity, which version of OI10? For me OI10.2.4
  • I have done some testing and it appears to be a bug in OI10 where you DO NEED the DBID
  • As an experiment try: Call Attach_Table(Dir_Name, "", "", "") and also doing: loop through the Table_Names and attach individually Note: Ensure that Table_Names are @fm delimited If that works, then report the issue in the Rev Issue tracker.
  • Could the DataBase name be diferent from the app you are in. Try attaching via the dataBase manager in the IDE and see if you get a response
  • I am sure that the event has to conform to the event it's self params per: CLOSE(ctrlentID, ctrlclassID, cancelflag) it must be referinfering to your @fm string
  • No idea what Super Strings are, so, chatgpt says: In OpenInsight SuperStrings, a period (.) is treated as a wildcard/special character, so to match a literal period you escape it with a backslash: "\." Example: ss = "file\.txt" This matches the lit…
  • I found this in the forum where Carl's responses may help you: https://revelation.com/revweb/oecgi4p.php/O4W_RUN_FORM?INQID=WORKS_READ&SUMMARY=1&KEY=19491.36924%2A6EB8D0A90470D24991678304619B9C4F#/section/breadcrumb/UPDATETABLE/Display
  • is $CreateCompatibleBitmap* in SYSOBJ if not you may need to do Declare_FCNS
  • Sorry, but you need someone more expert from here on to chip in!!
  • Bit out of my league here, but, do I remember something about being 'registered/compiled' Hey - Are the .dlls in the OI10 folder.
  • I assume they have unique names that wont clash with any OI10 ones (Dont know too much about structures) btw: I think the migration should have copied them - but did you get a 'please review' errors for them in the error log (Just saw that in the do…
    in Struct Comment by BarryStevens April 22
  • In OI9 create APPROW entries in your app for the struct records you want to migrate Create a repository view with those approws Then in OI10 do:
    in Struct Comment by BarryStevens April 22
  • Kevin, thank you so much for your effort. Getting too old to learn how to put this stuff together. Dont get me started on Bob Carten's AI 'teaching' hints 😜
  • Are you willing to provide a newer installer script as the one I have still has srputil in it.
  • First, I copy the EXE and RDK files into $PLUGINSDIR, then I call the exe like this: FileWrite $0 '"$PLUGINSDIR\SRPInstallRdk64.exe" -a $OI_APP -u $OI_USERNAME -p $OI_PASSWORD "$PLUGINSDIR\RDK"$\r$\n' Can you expand on this a bit more? - where ;…