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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Vandys

  1. Vandys

    Pass parameters via URL

    Yes, it is possible to do so... Here are the steps to do this :- 1. Create an object in the universe . The SELECT statement will be : '<A...
  2. Vandys

    Call different servlets from same HTML

    Thanks Wushutwist, I have temporarily done as per the soln. 1 but will positively try out 2nd option, as that would be a neater programming..... Vandys
  3. Vandys

    Call different servlets from same HTML

    Hi, My HTML page has 3 different types of login options. Now for each login option, the user name and the password and the login type info needs to be forwarded to the servlet. How can I call different servlets from same page?? Ex. Student login passes student id and the password - calls...
  4. Vandys

    How to connect to MS Access DB thru servlet?

    Hi all, I have an MS Access Database. I want to connect to it thru' Servlet. I looked at the FAQ and found a link to this problem. But that is not getting me the result. Can anyone pls. put down some code lines to do this?? I have created a dsn with the name &quot;prix&quot;. PLEASE.......
  5. Vandys

    create a local drive name for a particular dir

    hey,THANKS A TON DEAR...!!!!
  6. Vandys

    create a local drive name for a particular dir

    hi all, My client is supposed to load the application in a specific server(linked to his network as s: drive). Now my application resides on my computer in the dir c:\client24. How do I create a local drive name for this dir. as s: so that I can use it in my programming? Pls. help....there is...
  7. Vandys

    I want to know the Group name of the user

    Hi all, I have forms in which there are many commandbuttons or text boxes which should be visible depending upon the group to which the user belongs. For example, if the user belongs to the cashier group, then the buttons #3 and #4 should be visible and if the user belongs to the...
  8. Vandys

    Converting Fields from Lower to UPPER CASE

    Putting &quot;>&quot; sign in the format of the fields just changes the display from lower case to uppercase but the data in the tables is still stored the way it is entered i.e. lower case or uppercase or both mixed. So if you wish to **Store** the data in the field in the upper case then you...
  9. Vandys

    getting log names

    Yes, the network login name can be extracted and then stored in a field by using the advapi32.dll in a function. The function would look something like this:- ++++++++++++++ Private Declare Function apiGetLoginName Lib &quot;advapi32.dll&quot; Alias _ &quot;GetLoginName&quot; (ByVal lpBuffer...
  10. Vandys

    Create Outer Joins

    I am a very recent user of BO and so this question of mine might sound a bit simple to you all the experts in the forum. I created an outer join between a master and a child table through BO designer. But now whenever I select an object related to this child for a query, I get an error message...
  11. Vandys

    How to combine many records into just one record

    Hi JGarnick, I would appreciate if you can forward the sample database to me also as I am also facing the same situation and was about to post it in the forum for some help. I should have asked GOD for something else also today!!! My E-mail ID is vandanasanjay@hotmail.com Thanks in...
  12. Vandys

    Accepting a date from the user

    Hi Nick, the problem I was facing is no longer there... Actually I was doing a mistake... In the prompt function the data type of the date should be mentioned as 'D' not 'DATE'. The command I was giving was @Prompt('Enter date',date,Mydateclass.mydate,multi,free) and it should have been...
  13. Vandys

    Accepting a date from the user

    Let me try to explain again what I am trying to do. I have created a class called 'Activites'. In this class I have an object called 'StartDate'. In this class I wish to create a condition called 'StartingFrom' which should accept a date from the user and apply a filter where all the records...
  14. Vandys

    Accepting a date from the user

    I tried that Nick, but when I parse the condition the message I get is &quot;Parse Failed [Microsoft]ODBC Microsoft Access 97 Driver] Data type mismatch in criteria expression&quot;<br>The condition I gave was <br><br>TableName.FieldName &lt;= @Prompt('Enter the date',,,,)<br><br>Using ToDate...
  15. Vandys

    Accepting a date from the user

    I am trying to insert a condition where the user enters date at a prompt and then all the records where the datefield is less then the accepted value should be displayed. I am not able to find&nbsp;&nbsp;a function to convert the string into date. My database is on Access 97. Please help me. I...

Part and Inventory Search

Back
Top