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 - Alan Cochran

Pages: 1 2 [3] 4
31
Web Server - Ask For Help / pr35 and access error
« on: November 09, 2010, 07:47:38 AM »
Hey Bruce,

Just installed the NT5 pr 35 and I am getting the same access error when changing a record that I showed you at the Webshop in Denver.  Attached is the screenshot of the error.

I will reinstall pr32 to get back up and running.

Alan

[attachment deleted by admin]

32
Web Server - Ask For Help / BrowseCloseButton
« on: October 19, 2010, 09:37:58 AM »
Hi Bruce,

In a NetBrowseWeb procedure, if you check to have a Close button, it uses the CloseButton object instead of the BrowseCloseButton object.  Should it use the BrowseCloseButton by default in a NetBrowseWeb procedure?   Nothing major knowing that I can change the tool tip for CloseButton to say 'Click here to Close this browse' instead of 'Click here to Close this form'.  

Just Wondering!!!   I am using NT5 pr32 & Clarion 7.2.7653)

Alan

33
Web Server - Ask For Help / Re: Bad Date Placeholder
« on: September 14, 2010, 11:23:03 AM »
Hi Bruce,

If you use @d1 as the date picture, it shows mm1dd1yy in the entry field.  If you use @d6, it shows dd6mm6yyyy.  It appears it is using the last digit of the date picture in place of the '/'.

Alan

34
Web Server - Ask For Help / Re: Bad Date Placeholder
« on: September 14, 2010, 07:32:26 AM »
Bruce,

I spoke to soon, after removing the date picture on the Settings tab, the 'mm2dd2yyyy' reappears on the date field.  So I guess you need a date picture and/or there is an issue with NT5 ver PR31.

Alan

35
Web Server - Ask For Help / Re: Bad Date Placeholder
« on: September 14, 2010, 07:21:01 AM »
Bruce,

If I have the date picture as '@d17b', in the comment column, it displays 'mm/dd/yy'. But if I remove the date picture, then it displays 'mm/dd/yyyy'.  So if I want to have the entry of the date as 'mm/dd/yyyy', it appears you can leave the picture field blank on the Settings tab. 

Alan

36
Web Server - Ask For Help / Re: Bad Date Placeholder
« on: September 14, 2010, 06:53:31 AM »
Bruce,

I was having the same problem.  What I found was on the Client Side tab (see attached image), near the bottom, there is a message "This bit is deprecated. Move to Resets list above". Once I deleted the date field and then added it back, this message went away but the problem was still there.  So after I changed my date picture from '@d02b' to @d17b', it did not display 'mm2dd2yyyy'.  

HTH...
Alan  

[attachment deleted by admin]

37
Web Server - Ask For Help / Re: Print button doesn't work
« on: September 11, 2010, 03:01:04 AM »
Hi Gordon,
I usually have the reports ruin in another window so when the user closes the report, it doesn't close the app. 

Alan

38
Web Server - Ask For Help / Re: Extra Click Needed on Form
« on: September 09, 2010, 11:14:54 AM »
Rene & Gordon,

Thanks... I was having the same problem as well.  Never thought about changing the Immediate Validation from Default to No.

Alan

39
Web Server - Ask For Help / Re: Initial Value in DCT and PR31 problem
« on: September 09, 2010, 11:12:19 AM »
Hi Rene,

Thanks for the reply.  I was just wondering why this worked prior to PR31 with the ' ' around the value.  Maybe Bruce can check this out.

Again, thanks...
Alan

40
Web Server - Ask For Help / Re: Print button doesn't work
« on: September 09, 2010, 11:09:51 AM »
Hi Gordon,

For me to get the print button to show on the borwse, I set the Action of the Button to Other with the Use Equate as Other.  (See Attached Image: General Tab.png).  Then on the Properties Tab, you can set the URL and text for the Print Button.  (See Attached Image: Properties Tab.png).

HTH...
Alan

[attachment deleted by admin]

41
Web Server - Ask For Help / Initial Value in DCT and PR31 problem
« on: September 07, 2010, 09:58:07 AM »
Hi Bruce,

With NT5 PR31, I am getting an error when compiling.  The problem is that I have a table in the dictionary that has a column with an Initial Value.  This columns is a String type (@s1) with an Initial Value of 'P'.  The line of code that is being rejected is WUI:GroupLevel = ''P' which is in the PreInsert Routine section'.  It should be WUI:GroupLevel = 'P'.  Once I replace 'P' with P in the dictionary, it compiles with success.  This worked in PR29 and earlier.  Did not try PR30 since there was a post about compile errors. 

Thanks...
Alan

42
Hi Brian,

You need to change the Target from '_self' to '_blank'.  That will launch the PDF file in another browser window or tab.

HTH...
Alan

43
Your Views and Comments / Re: Left justify text
« on: August 16, 2007, 09:25:12 PM »
John,

The text is being displayed as centered instead of left justified.  Can you fix this please?  It is very difficult to read.  I am using IE7.

Thanks...
Alan

44
Web Server - Ask For Help / Re: passing javascript values on forms
« on: August 16, 2007, 09:17:09 PM »
Mark,

Make sure under the Client-Side tab for the Field is that you make the call to the java script function for each field that needs to run the function. Also, remember that the Hand Code Support (Set Dynamic) Field is checked along with Reset Other Field for the current field (value) is checked.  (See Fields.png Image)

You will notice I have placed the global variable (js:capitalize) in the Java Hand-Code field instead of the actual javascript function.  I placed the javascript function name in the Initial Value field of the global variable  --  capitialize(this);   along with the THREAD option Checked. (See GlobalVariable.png Image).  In your case you would have toProperCase(this); in this field. 

I also believe the javascript function name are Case-Sensitive so be sure to check everything matches. 

Try using this function.  I changed the function name to the name that you have used in your app. 

function toProperCase(obj) {
   var val = obj.value.toLowerCase();
   if(!val) return;
   val=val.replace(/\b([a-z]+)\b/ig,function(w){
      return w.charAt(0).toUpperCase()+w.substring(1);
   });
   obj.value=val;;
}


This has been tested under Vista and XP Pro using both IE6, IE7 and FF 2.0.0.6

HTH...
Alan

[attachment deleted by admin]

45
Rene,

Sorry for not posting earlier to your question.  What I did was create a variable named js:capitalize in the data section of Global Properties with capitalize(this); in the Initial Value field.  I have attached a screenshot.

HTH,
Alan




[attachment deleted by admin]

Pages: 1 2 [3] 4