Long Data Format Error

  • Thread starter Thread starter David WG
  • Start date Start date
D

David WG

Hello,

When I display a form in datasheet mode, then return to Form Display, some
Long dates display as a string of # signs.

Can anyone point me to a fix please?

Thanks
 
n Servoy webclient application.getServerURL() always returns http://localhost:8080 (if port is 8080)

For deep linking, we need the server address to point to the solution in the particular server.
So we need to write the following code to get the actual server IP in webclient.

function serverIP(event)
{

try
{
var addr = java.net.InetAddress.getLocalHost();


// Get IP Address
var ipAddr = addr.getHostAddress();


return ipAddr;
}

catch (e)
{
}
}



David WG wrote:

Long Data Format Error
20-Aug-09

Hello

When I display a form in datasheet mode, then return to Form Display, som
Long dates display as a string of # signs

Can anyone point me to a fix please

Thanks

Previous Posts In This Thread:

Long Data Format Error
Hello

When I display a form in datasheet mode, then return to Form Display, som
Long dates display as a string of # signs

Can anyone point me to a fix please

Thanks

Try increasing the width of the control in which the data's being displayed.
Try increasing the width of the control in which the data's being displayed

-
Doug Steele, Microsoft Access MV
http://I.Am/DougSteel
(no e-mails, please!)


Submitted via EggHeadCafe - Software Developer Portal of Choice
Server Side Processing in ADO.NET/WCF Data Services
http://www.eggheadcafe.com/tutorial...f-4f6f92a76585/server-side-processing-in.aspx
 
This appears to be a language, which doesn't run in Microsoft Access. This
newsgroup is dedicated to the Microsoft Access database product.
 
Back
Top