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 SkipVought 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: *

  1. trimtrom

    English dates in Internet Explorer

    Hello I am a beginner ASP programmer and I am writing an application for Internet Explorer in the UK. I have found that some of the computers on our intranet at work display dates in Internet Explorer in English format, and some in American. However, when I look in Control Panel at the...
  2. trimtrom

    ASP recordsets in a VBscript routine

    Hello I am a beginner ASP programmer, and I am programming a login form as follows: <form name="frontform" method=POST action="http://localhost/bank3/menupage.asp"><fieldset><br> <table align="center" > <tr><td valign=top> <label>CostCentre</label></td><td valign=middle><input...
  3. trimtrom

    Cancelling a form POST action

    Hello I am a web beginner, and I am trying to write a site which involves an opening login page. There is a form as follows: <form name="frontform" method=POST action="http://localhost/bank3/menupage.asp"><fieldset><br> <label>Username </label><input name="Userniame"><br><br><br>...
  4. trimtrom

    Cancelling a form POST action

    Many thanks for the help. However I am writing this for an intranet which only uses IE, and I have been told to use VBscript. Is there any way you could provide a solution in VBscript? Many thanks, Trimtrom
  5. trimtrom

    Cancelling a form POST action

    Hello I am a web beginner, and I have a login page as the first page of a ASP web application I am designing. On this page I have a standard HTML form of two input boxes for username and password and a submit button to POST the input to another form. My problem is that I want to validate this...
  6. trimtrom

    Report writers for VB.NET

    Hello I am learning VB.NET and was toying with the idea of embellishing my database program with Crystal Reports to provide some data reporting facilities. I was put off by the cost of Crystal, however, and was wondering if there were any free or very low cost report writers that would work...
  7. trimtrom

    Finding a Java report writer

    Hello I am a VB programmer moving to Java. With VB I always used Crystal Reports as a report writer. I am planning to do some private database Java work, and I was wondering what Java programmers do when they want to produce database reports. I presume that none of the free IDEs such as...
  8. trimtrom

    Combobox and grid controls with JBuilder

    Hello I am a VB programmer trying to learn Java with JBuilder Foundation. I am looking for a Java combobox component with a multicolumn dropdown to use in my database app, and also a grid that will support embedding other controls such as a multicolumn combobox within one of the grid columns...
  9. trimtrom

    Updating from a datagridview

    Hello I am new to VB.net and have a form where I am trying to update an Access database from a datagridview that I databound on the fly. However when I change something on the grid and press the update button it would seem that the dataset has accepted the changes, but when I next look at the...
  10. trimtrom

    Microsoft vs Borland controls

    Hello I am a VB programmer who is fed up with the really basic GUI controls that we get in VB6 and VB.NET. I am looking for a combobox with a multicolumn dropdown and also a datagrid where you can EASILY embed controls like comboboxes or listboxes. It doesn't seem much to ask, but they just...
  11. trimtrom

    Input masks with datagrids

    Hi, I am a Foxpro programmer learning VB6. We have a datagrid in Foxpro that is very powerful in terms of formatting and masking data. I am looking for a grid in VB that is data-aware, but also includes the ability to provide separate input masks in each column the user types data in. As far...
  12. trimtrom

    A formatting mask in a datagrid column

    Hello, I am a beginner programmer using VB6. I want to apply a date format mask to a column in a datagrid control. Is this possible? I tried the dataformat property and a stddataformat object with no luck. Help!! Many thanks, Trimtrom
  13. trimtrom

    VB 6 combobox features

    hi, Thanks for the reply. I think I would like to go with the forms 2 library. However, I find that when I add the library, and then try to drag the new combobox onto a datagrid I'm using (so that it appears on top of a datagrid cell), it disappears underneath the grid. It won't appear on...
  14. trimtrom

    VB 6 combobox features

    hello, I am a VB 6 beginner. Access and Foxpro have a combobox that has multiple columns in the list portion, and you can select any one of the columns to be the databound field. I am looking for these features in VB, but as far as I can see with the standard VB combo or datacombo you can...
  15. trimtrom

    Type-sensitive parameterized views

    Hi, In response to your question the where clause is as follows: WHERE Exptran.trancc = ?paracostcentre; AND Exptran.acno = ALLTRIM(?paraaccount) paraaccount is the parameter in question and is of type character (I don't know the length), and acno is a 5 character length field. Hope this...
  16. trimtrom

    Type-sensitive parameterized views

    Hi, Alltrim() makes no difference, I am afraid. Trimtrom
  17. trimtrom

    Type-sensitive parameterized views

    Hello, I am a Foxpro 6 beginner, and I have written a Foxpro report based on a parameterized view. This view compares the parameter to an alphanumeric field ACNO in its base table to select its records. My problem is that the parameter the report passes to the view can be either in the form...
  18. trimtrom

    Using dates and parameters in views

    Thanks for the above. In the end I found that I had to format the date strictly in the format {^yyyy-mm-dd}, or otherwise I had to SET STRICTDATE TO 0 to stop strict comparison. Thanks for your help, Trimtrom
  19. trimtrom

    Using dates and parameters in views

    Hi, i am a Foxpro 6.0 beginner and I am trying to use a database view. I am trying to create a filter using a date field and am having enormous problems. I am trying to select records equal to a date in a view parameter (?paradate is the name) and I find I cannot use the = sign in creating the...
  20. trimtrom

    A parameterized view as a grid recordsource

    Thanks - it was the requery command that I needed. All is now working. Trimtrom

Part and Inventory Search

Back
Top