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 - MikeR

Pages: 1 ... 15 16 [17] 18
241
Hi , anybody downloaded the Capesoft Forums Software ?
I compiled it, created 1st user.
Can create other users.
I can create Forums and Groups
Assign Users to Groups,
But cant see or post any topics
I think the answer is in the browse topics procedure but not sure what im looking for.
did a debugview listing (attached).
Lines 37 to 40 come from the browse topics procedure
I'm not sure what the next line 41 is and what it means ?

Any Help ?

[attachment deleted by admin]

242
 ??? still not working Boss ?

244
Thanks Bruce ,
does Top of Generate Browse Routine execute when the browser requests the next page ?

245
I have a bog standard NetWebBrowse.
I want to execute a piece of code Once and only once before showing the table contents
The contents can be refreshed only by request of the user.

What embed point do I use ?

246
Hi Alan,
found an old copy of Clarion 8
I have unzipped it and looked at the source
I am curios about a few things.

I follow the embed logic in the login , logoff and webserver procedures.

1.  I don't understand what the embed code in the webhandler does ?

It seems to position at the latest record , but then just closes the file ?

2.  what does this code do ?
    IF self.IfExistsValue('Login')

3. I assume   p_web._OpenFile(WebUser)   in the login procedure opens the file.
 
I don't see a ._closeFile,.What is the difference between ._openFile and Access:File.Open()   
Can it be used anywhere p_web exists ?

Thanks in advance for your time.
 


247
use the following java script, give it a max height and width , it will resize and keep ratio (ie no stretch)


function resize(img, h, w) {                 

                                var elem = img;

                                var newImg = new Image();
                    newImg.src = elem.src;
                    var height = newImg.height;
                    var width = newImg.width;

                    var perc;

                    if (width > height) {                             
                                                frac = (h / width);
                    }
                    else {                 
                                                frac = (w  /height);
                                }

                    elem.width = elem.width * frac;
                    elem.heigth = elem.height * frac;

                }


248
The form is a popup form like an update from a browse.
I only want to go back to the browse once both tasks (actually 2 half tasks) have completed.

249
Some of us still use Clarion 6.3 ?
anyway this knowledge can be shared ?

250
Thanks Bruce.
perhaps I could make it a 2 stage process.
eg. first just upload the spread sheet,
then 2nd process actually process it. as per create spread sheet example.(long running task)

I would be nice if I could kick off the 2nd process automatically (1st prize)
and/or have the long running task start as the pop-up or page opens (2nd prize)
then close it again (ok im getting ahead of myself)


251
I have a netwebform
where I upload a file (spread sheet)
on successfull update I process the spreadsheet
This all works well.
But how do I keep the user informed of the progress ?
The file is only uploaded after the 'save' button is pressed.
It could be a faily lenghty process ?
 

252
Web Server - Ask For Help / Re: TPS Error messages on server
« on: March 24, 2012, 05:51:48 AM »
 :) Use capesoft MessageBox extention template

253
Web Server - Ask For Help / Re: Mobile detection and redirecting
« on: November 09, 2011, 07:47:29 AM »
When is the long awaited NT6 going to make an appearance ?

254
Any Comments Please

255
Web Server - Ask For Help / Pass Variables from Menus
« on: September 06, 2011, 01:24:56 AM »
I want to call a procedure as popup from different menu selections, that’s easy enough, but how do I pass diffent information or values to it ?


Pages: 1 ... 15 16 [17] 18