Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mnongkhlaw
  • Order by date
  1. mnongkhlaw

    Leveraging Interdev knowledge for VS.NET

    I just wanted to ask how I can leverage my knowledge of Interdev while migrating to say, Visual Studio .NET. Or do I have to re-learn things from the ground up? I would be grateful if you could provide me pointers to resources on the Net for related information.
  2. mnongkhlaw

    Button clicks do not fire in Netscape 7.1

    I'd tried renaming sector.asp to sector.old. Then after the default.asp page displayed in Netscape, I clicked on Sectors button, expecting some error message, but none came up and the page remained the same, looking as pretty as before. I wonder if this was the same case with you. I was thinking...
  3. mnongkhlaw

    Controlling report page length

    Thanks again, vbkris. Stupid me! Yeah I found out myself by the settings in IE for problem 2. For problem 1 however, just a thought crossed my mind- I've never used Crystal Reports for web-based reporting, but I'm just curious-Could it be used for controlling such things as Page sizes and page...
  4. mnongkhlaw

    Button clicks do not fire in Netscape 7.1

    Thanks, vbkris. Sorry this is on Intranet, so I cannot give you the link. As you can see, for instance, Sectors button should activate sector.asp (a data-entry form) thru the code onclick='window.navigate("sector.asp")'.The problem is that sector.asp does not fire. But when sector.asp is...
  5. mnongkhlaw

    Button clicks do not fire in Netscape 7.1

    Dear folks, Here's the code in my page :- <%@ Language=VBScript %> <HTML> <HEAD> <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"> <TITLE>NEC Hardware Inventory and Call Maintenance Home</TITLE> </HEAD> <BODY bgcolor=lavender> <P align=center><FONT color=darkgreen...
  6. mnongkhlaw

    Dropdown listbox creates problem with code

    Perhaps I did not make things clear enough, so I'm re-posting in another way : I'd like to use a drop-down listbox DTC rather than the RecordsetNavBar to jump to any record for editing (Update button enabled). However, for adding data (Add button), I need to disable/hide this listbox and...
  7. mnongkhlaw

    Dropdown listbox creates problem with code

    Hi folks, This problem's been bugging me for quite a while : I use an ASP (computer.asp) with DTCs bound to fields of an MS Access table (computer) and 2 recordset DTCs, Recordset1 and rsComp as well as RecordsetNavBar and Add, Update, Delete, Save and Cancel buttons. The source of data for...
  8. mnongkhlaw

    Controlling report page length

    Hi folks, I've been creating various reports from a database using ASP code, but I have 2 problems :- 1. I cannot control the page lengths in order to print neat reports for different sizes of paper like A4,A5,letter, legal etc. so that the report doesn't get cut off at the bottom of the...
  9. mnongkhlaw

    Displaying Page Nos. in Grid DTC

    Hi, I want my page-enabled Grid DTC to show Pages like &quot;Page 1 of 10&quot; rather than &quot;1/10&quot;. What needs to be set for this to happen? Mark (mark@shillong.meg.nic.in)
  10. mnongkhlaw

    What's wrong with this if statement?

    byam, I solved the problem by replacing != with == and setting goodDate=true Mark
  11. mnongkhlaw

    What's wrong with this if statement?

    byam, I'm getting confused here : Doesn't != mean NOT equal to? I changed || to && but I still get the same results! && doesn't sound right to me, anyway. Mark
  12. mnongkhlaw

    What's wrong with this if statement?

    I want to detect if dates entered by users in a textbox contains JAN,FEB,MAR etc : var goodDate = true; var theChar = theInput.substring(2,5); //see theInput below if (theChar != &quot;JAN&quot; || theChar != &quot;FEB&quot; || theChar != &quot;MAR&quot; || theChar != &quot;APR&quot; ||...
  13. mnongkhlaw

    How to get dates to display/store in dd/mm/yyyy format.

    I got your JS code, thank you. Your suggestion apparently worked! I just fed in dates like 1-Mar-03 etc. in my page, and it stored correctly (in british format in my table-like 01/03/2003)! However, the next time the page was viewed, the dates reverted back to American! (like 03/01/2003 in the...
  14. mnongkhlaw

    How to get dates to display/store in dd/mm/yyyy format.

    I visited the site, but couldn't get to download the JS files. Would be greatly obliged if you could send them to me (mark@shillong.meg.nic.in). However, please also explain how can I change the regional settings of IUSR_myserver. Perhaps that will do the trick. Mark
  15. mnongkhlaw

    How to get dates to display/store in dd/mm/yyyy format.

    I tested this same page in Win98 & PWS where the regional settings are set for English (US),Short date format : dd/MM/yyyy. British-style dates entered into the textbox get stored correctly into my date/time field without doing anything else. So, my guess is that the regional settings of the...
  16. mnongkhlaw

    How to get dates to display/store in dd/mm/yyyy format.

    Thank you, MerlinB, but the code snippet I did was just to check whether it was because of Access or webpage. Assuming my regional settings are correct, the question that still remains is how to get my date to be displayed in British (dd/mm/yyyy) instead of American (mm/dd/yyyy) in my web page...
  17. mnongkhlaw

    Client side validation with DTCs and SOM

    Thanks, MerlinB. I got the code for (ii) to work. I've yet to try your suggestions for (i). Will update. Mark
  18. mnongkhlaw

    How to get dates to display/store in dd/mm/yyyy format.

    I'm using Access 2000 with the input mask 00/00/0000;0;_ and short date format. British dates like 01/02/2003 (1st Feb, 2003)entered thru a web page's textbox bound to date/time field gets converted to 02/01/2003 in the table, but dates like 20/01/2003 (20th Jan, 2003) get stored correctly. My...
  19. mnongkhlaw

    Input mask for short date please

    Hi, I'm using Access 2000 with the above input mask and short date format. British dates like 01/02/2003 (1st Feb, 2003)entered thru a web page's textbox bound to date/time field gets converted to 02/01/2003 in the table, but dates like 20/01/2003 (20th Jan, 2003) get stored correctly. My...
  20. mnongkhlaw

    Primary field validation

    Actually, I'm new to JS and I was looking for a client-side _onbeforeserverevent handler for the Save button. Can't such a thing be done in JS? Mark

Part and Inventory Search

Back
Top