NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bruce

Pages: 1 [2] 3 4 ... 736
16
The generator creates the CLW file.
If the generator fails to update the CLW file, then you'd see this issue.

The compiler compiles the CLW file into an OBJ.
If the compiler fails to compile the CLW then you'd see this issue.

The linker links the OBJ's into a DLL or EXE. If the linker fails to find the new OBJ, and uses an old one instead, then you'll see this issue.

Also - The Build Menu in the IDE has a "Clean solution" option, which removes OBJ's to force the compiler to remake them.

17
Web Server - Ask For Help / Re: Search field in the header
« on: April 15, 2024, 11:18:20 PM »
To go this way I'd likely experiment with making a small memory form with the search entry field and then include that in the header. Probably with a small "search" button.

18
I don't see this effect myself, but it's probably important to know which it is.
CLW or OBJ.

Cheers
Bruce

19
Web Server - Ask For Help / Re: API problem, NT 14.20
« on: April 15, 2024, 11:15:08 PM »
>> Should this fix my prefix issue?

yep.

>> Is the problem here because BCS_Status has only three characters before the underscore?

yep.


20
Web Server - Ask For Help / Re: Download file from menu
« on: April 10, 2024, 09:50:16 PM »
I'm away for a few days Sean, but will investigate on my return.

21
Web Server - Ask For Help / Re: API problem, NT 14.20
« on: April 10, 2024, 09:49:04 PM »
I bet it's the only field in the table that uses an underscore?

What's happening is that the engine is seeing the BCS_ part as a prefix, and removing it.
The solution is either to work with that, or tell it to stop.

The easiest way to tell it to stop is to set the MaxPrefixLength property for the JSON object to be 1,2 or 3. It defaults to 4, (including the separator) which is why it's seeing this. You could also change the separator character (which is being set to _ as I recall).

Bruce

22
Web Server - Ask For Help / Re: Download file from menu
« on: April 09, 2024, 08:45:22 PM »
The browser may appear to just hang, but perhaps it is downloading? see the downloading icon to see what's happening under there.

23
update to at least the latest NT12, or better yet, NT14.

Cheers
Bruce

24
>> However, I want to change some behavior of the app on mobile screen.

I think you need to define "mobile screen". Is my laptop mobile? is my 13" ipad?

>> I want to change the menu items - some so display and some not to display.  How does that  get done?

if you are basing the "mobileness" on resolution, then attach a css class to the menu item, and use css to set
display:none
when that resolution is met (ie with a media query).

Cheers
Bruce

25
Post a small example showing the affect and I can comment on what you might be doing wrong.

26
Web Server - Ask For Help / Re: API documentation
« on: March 28, 2024, 09:37:44 PM »
That's on the list. Or already in.

27
sure, post the example app showing the effect and i can check it out.

28
Web Server - Ask For Help / Re: Multi-Site host question
« on: March 28, 2024, 09:35:19 PM »
>> Will it ever be possible to mix NT versions of apps in the future?

I expect not. The host has a server object which is passed into the DLL. If the DLL is on a different version, then the prototype of the server may be different, which in turn will lead to bad things.

Cheers
Bruce

29
make sure the "outer" form has the "Generate <form> tag" option turned OFF and the table form has it ON.

30
I _feel_ like it inherits it automatically?
Perhaps tweak one of the example apps to show the layout you have and we can look from there.
But, from memory, the "action" is a value for the page, and so cascades down to all the controls on the page.

B

Pages: 1 [2] 3 4 ... 736