Stephen,
I had the same thing happen to me while testing a new installer for our software, separate from the error my dad got. It happens after re-downloading the client installer, so that is not...
Type: Posts; User: matthewd
Stephen,
I had the same thing happen to me while testing a new installer for our software, separate from the error my dad got. It happens after re-downloading the client installer, so that is not...
It should just work. I set up a simple test on one of our aliased files like so:
Object oJournal is a Journal_DataDictionary // master
Set pbUseDDRelates to True
...
This was very helpful and led me to the solution, in our case only certain customers were getting the error. We were of course very careful whenever modifying the DF_OPEN_PATH to always restore it...
Before I started I suspected I might need to do a base64 encode for transmitting binary files because I have a general awareness that that is a thing that's done.
With my proof of concept, I tried...
I have a proof of concept working now using a cHttpTransfer on the Windows side and a cWebHttpHandler on the WebApp side to make and receive a POST request to transfer a file. Easy-peasy. (I can say...
This is no doubt helpful, but if you are like me and are wondering what the heck to do with hBitmap once you have it, I found a simpler, higher level approach using the Graphics Library:
...
Thanks Wil!
That worked, as did this:
Get ComFindItem of hoCombo sTypeFace to iItem
if (iItem>0) Set ComListIndex of hoCombo to iItem
Which is what I thought I already tried. Arrgh!
First time I'm using the CodeJock toolbar's xtpControlComboBox, and I'm trying to update the value displayed in the comboform dynamically.
From the help I've cobbled this together:
...
We still have customers on embedded so I made a slight adjustment to the autoincrement logic to support both SQL sequences and traditional DD auto increment.
If the last control number in the...
That doesn't seem right to me, but now knowing how your code is structured and the size of you data, it is hard to say why?
I ran a simple test with the SQL query/fetch separated from from...
Michael,
I this what you are looking for? https://support.dataaccess.com/Forums/showthread.php?42524-capturing-a-view
(There's a few different ZIPs Ivan posted and there is a message that you...
Technically it's the same user account, if you are looking in Task Manager, but it is different in certain ways. (One way for example is that elevated processes don't carry over network drive...
Did you verify through Task Manager whether one app was elevated and the other not?
The DF_DRIVER_CACHE_PATH attribute can be set at runtime, after determining the SQL driver version if you wanted to store different CCH files in different folders.
I have been having trouble recently maintaining the default application for PDF files. I've been using Foxit Reader for years, but recently it seems Edge and Chrome have been taking over the file...
One thing I started doing with export is putting the export data into a string[][]. Then I have two classes, one for CSV exporting and one for Excel exporting. Both support the same interfaces, so...
We started doing this with SQL server connection info (before the Connection ID stuff was added). We put our own settings in a separate section [Database] so there was less change of a collision...
Did you remove the call to the license method (probably ComVpeLicense? I don't use the COM class). I believe the call to VpeLicense (DLL) determines what features you can access. Not calling...
A brief followup:
The Studio (19.1) can be impacted by this problem as well. The situation is a workspace for an in house application, with a SQL database and filelist.cfg and the INT files...
The cJsonHttpTransfer class by default expects to get back some JSON, that's why HttpGetJson et al returns a handle to a cJSONObject. If they get back something else, they obviously can't convert...
I added a function to my cJsonHttpTransfer subclass to get the data received back:
// get the data received into a string, useful if non-JSON data is returned
//
Function...
I made a replacement message box a while back, it's here: https://support.dataaccess.com/Forums/showthread.php?52769-Message-Box-replacement-2-0
You can supply your own bitmap. An ICO would be...
Interesting, and pre-dates the release of Server 2019. If this has the same cause, then perhaps something in 2019 makes it more likely to happen that previous versions of Windows Server...
In October Mike Cooper reported a problem with the DF_FILE_ROOT_NAME attribute returning a blank here:
https://support.dataaccess.com/Forums/showthread.php?65026
I think we've experienced this...
Thank you Frank! That was it.
Google search turned up the following instructions here which I used: ...