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

Pages: 1 ... 18 19 [20] 21 22
286
Web Server - Ask For Help / NetWebBrowse range limits
« on: November 23, 2011, 06:00:51 AM »
Hi Guys,

I am going into a NetWebBrowse from a NetWebForm(Wizard) procedure.
I am creating a new record with a unique "record ID" in the NetWebForm procedure, prior to opening the browse.

From the NetWebForm, I am storing the unique "record ID" in a session variable "A".

How can I limit the NetWebBrowse records to the unique "record ID" created in the NetWebForm?

I have created a local variable in the NetWebBrowse and limit the browse-records to the local variable value.

In the NetWebBrowse procedure, I have tried to set the local variable to my session variable using (p_Web.GSValue), but it doesn't work.

I think I am using the incorrect embed in the NetWebBrowse to load the LOC: value?

287
Web Server - Ask For Help / Hover text
« on: November 18, 2011, 05:13:59 AM »
Hi Guys,

I am using a NetWebForm (Wizard) for a site.

Just below the NEXT, PREVIOUS & FINISH buttons, it shows some text when I mouse-over some of the controls.
The "hover text" is not in the right place and it could be as a result of some "styles"  file that is missing.

Can the hovering be switched off altogether?
Can it be fixed?  I am not sure where it is suppose to show?

288
Web Server - Ask For Help / Re: Handling table records
« on: November 18, 2011, 05:00:04 AM »
Thanks Guys!

I incorporated all these changes and seems to be working now :-)

Regards
Rupert

289
Web Server - Ask For Help / Re: Security and SSL
« on: November 15, 2011, 09:21:53 AM »
Thanks so much Flint, this is the type of information I was looking for.
I am using mostly TPS data files at this time, so I guess, using TPS even more so lower the risk of hacking our database / web.

290
Web Server - Ask For Help / Security and SSL
« on: November 15, 2011, 04:51:17 AM »
Hi Guys,

If I don't use SSL for my site, how safe is the data integrity on my site?
We don't accept any credit cards and don't handle highly confidential information.

I realize that this question is relative.

However, some information re hacking possibilities may help us decide whether we should consider implementing SSL.

291
Web Server - Ask For Help / Re: Handling table records
« on: November 15, 2011, 04:30:16 AM »
Hi Kevin, Stu,

Thanks for your repies;

I did a few tests and the problem is arising when I include the following line (bold below):

TABLE:REC_ID = GLO:REC_ID                                 !GLO:RecID stored in previous instance
   SET(REC_ID_KEY,REC_ID_KEY)
   LOOP UNTIL ACCESS:TABLE.Next() <> LEVEL:Benign
      IF TABLE:REC_ID = GLO:REC_ID
          TOT:Cnt += 1
      ELSE
       
         BREAK
      END
   END

When I remove this line out, the loop handles all records (CORRECT)
As soon as I put this line back, the loop doesn't handle ANY records ...
It is not making any sense, as with the line:  TABLE:REC_ID = GLO:REC_ID
I am only starting the record processing at the record with the set-value ... correct?

I have even tried setting TABLE:REC_ID = 4  .... (constant)
There is a record with ID (4), but when I add this line, the loop doesn't process any records.

It's not making any sense ...
Any help please?

292
Web Server - Ask For Help / Handling table records
« on: November 13, 2011, 01:25:36 PM »
Hi Guys,

I have a NetWebForm calling a NetWebBrowse.
On the tab after the browse in the NetWebForm I'd like to "handle" and check the records being added by the user and give totals or warning upon their input.

I have added code in the "NextTab, Start" embed to loop through the records in the table, but for some reason my loop and record handling doesn't want to work.

Here is my code: * This code is only suppose to count the records according to the key-value ...


CASE lower(p_web.PageName)
OF lower('fWizard_nexttab_' & 8)

   ACCESS:TABLE.OPEN()
   ACCESS:TABLE.USEFILE()

   RESET(TABLE,1)                                                  !Reset the record pointer

   TABLE:REC_ID = GLO:REC_ID                                 !GLO:RecID stored in previous instance
   SET(REC_ID_KEY,REC_ID_KEY)
   LOOP UNTIL ACCESS:TABLE.Next() <> LEVEL:Benign
      IF TABLE:REC_ID = GLO:REC_ID
          TOT:Cnt += 1
      ELSE
        
         BREAK
      END
   END

   ACCESS:TABLE.Close()

293
Web Server - Ask For Help / Radio button in IE doesn't show
« on: November 11, 2011, 02:14:18 AM »
Hi Guys,

I am using a NetWebForm (Wizard),
On my first tab I have a radio button.  The radio button shows in Firefox, but not in IE.

Will appreciate any help, not sure what can cause this to happen ...


[attachment deleted by admin]

294
Web Server - Ask For Help / Printing from NetWebForm or NetWebBrowse
« on: October 30, 2011, 12:57:01 PM »
Hi Guys,

This is my first attempt at printing from a NetWebForm or NetWebBrowse.
I read through a few topics in the forum, but can't get the buttons to call my report procedure from the app-tree.

I added a button in the parent NetWebForm to the "tab" section (below the browse being called)
The button shows below the browse on the page, but when I click the button it attempts to open another page, and doesn't call the report-procedure.  I did link the report to the "procedure" field of the button, and not the URL field.

I would prefer not to use a printing button on each of the browse record lines.
Thus, just one button below the browse.

I will appreciate any advice.

295
Thanks Bruce, I finally figured that it is some setting in my primary CSS file that is causing the image to discard the width value.

I didn't know that CSS could overrule the image dimensions.  I am currently hunting for the culprit.

296
Hi Guys,

I am trying to show an image on a NetWebForm(Wizard) procedure.
I have done this previously without a problem on another form.

This time I am unable to get the width of the image resized.
I have tried using the template support for an image and specified the width and height.
When this didn't work, I inserted some xHTML code on the "text line" and tried setting the width and height in HTML.  This also failed. 

The height is adjusting, but not the width.

I am not sure what could interfering with the image size settings,
I also looked at the CSS class, but can't get it fixed.

I will appreciate any possible suggestions ...

297
Web Server - Ask For Help / Re: Hiding a tab based on drop-down condition
« on: October 26, 2011, 07:13:31 AM »
Thanks for the help Rene, Bruce,

I downloaded  5.38 and now seems to be sorted.
Still had some difficulty making it work with the drop-down box, but changed to radio buttons with success :-)

298
Web Server - Ask For Help / Re: Hiding a tab based on drop-down condition
« on: October 25, 2011, 12:49:24 AM »
Thanks Rene, Bruce,

I am on version 5.37
I still can't get it to work, what is the command to manually reset / refresh the "tab"?

What I've done;
1.  Gave the tab an equate label;  Tab1a
2.  Clicked the box "send new value to server"
3.  Entered the Server Code to set the new session variable value
4.  Upon changing tabs, I tested and the new session value is correctly set
5.  I added the "Tab1a" equate to my reset list (unchecked the prompt, value and comment boxes)

I've tried various conventions, but can't get the tab to hide / unhide according to the session value set on the previous tab.

I suspect the problem is with "refreshing" the tab ...



299
Web Server - Ask For Help / Re: Hiding a tab based on drop-down condition
« on: October 24, 2011, 07:44:25 AM »
Thanks Bruce,

Should I use the "Tab Condition" or the "Tab Hide IF" rather?

I tried both options, but can't get it to work.

Should I do something on the drop-down box to make the tab "refresh"?

300
Web Server - Ask For Help / Hiding a tab based on drop-down condition
« on: October 24, 2011, 06:37:53 AM »
Hi Guys,

On a wizard-form;

Is it possible to hide a tab based on a drop-down value selected on a previous tab?
I notice in some earlier posts that the dynamic option was not yet supported, not sure if it is supported already?
I am trying p_web.c002:field = 1 as a condition, but doesn't work.
Not sure where I am going wrong ...

Pages: 1 ... 18 19 [20] 21 22