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 Mike Lewis 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. subhavs

    DCOM installations

    Hello, I recently deployed a VB application that uses ADO controls to some Win95 machines. I had to run the usual DCOM and MDAC before the actual application installation and everything worked great. PDW was used to create the setup package. The problem is happening on WinNT machines that have...
  2. subhavs

    Carrying over the form input text values

    Thanks for your help, tsdragon. - Subha :-) Nothing is impossible, even the word impossible says I'm possible.
  3. subhavs

    Carrying over the form input text values

    Hello, I have an input form with various text boxes. How do I carry over the value of one text box to another text box ? For example - if the user types in the FirstName, I would like the FullName textbox to have the FirstName pre-populated for ease. TIA !! - Subha :-) Nothing is impossible...
  4. subhavs

    Need an example for a JavaScript Function

    Thanks for the quick response, Tim. I finally figured out what the problem was - </SCRIPT> tag was placed at the end of the JSP file. Inbetween I had lots of other HTML tags, so the compiler was treating all of these as Javascript as well. DUUUH !!! I am new at this, so I am learning it the...
  5. subhavs

    Need an example for a JavaScript Function

    Hi, I intend to use some JavaScript functions repeatedly in several JSPs. I tried to put the functions in a separate JavaScript file and then call these functions from the individual JSPs (using the <SCRIPT LANGUAGE=&quot;javascript&quot; SRC=&quot;someFile.js&quot;>). The browser does not...
  6. subhavs

    Invoking a method in Action attribute of Form Tag

    Is this possible ? I am very new to JSP, so please be descriptive in your answer. Thanks, - Subha :-) Nothing is impossible, even the word impossible says I'm possible.
  7. subhavs

    Problem installing a VB ADO Oracle App.

    WP, What kind of deployment package are you using to distribute the software ? Also, are the operating systems on the both the development machine and the deployed machine the same ? - Subha Nothing is impossible, even the word impossible says I'm possible.
  8. subhavs

    Loading data problem

    Hello everyone, I am very new to MySQL and just started to play arounnd with it. I have created a table with 4 fields and I am trying to populate this table with data from a flat file. The flat file has exactly 4 fields and they are separated by commas. I am using the load data command as...
  9. subhavs

    Determining the type of control

    Thanks for all your responses guys. Can you write a form-level event that will supercede any control-level events ? For example - when the user clicks on any control, I would want a form level key-click event to kick off rather than the individual control's key-click event. If key-click events...
  10. subhavs

    DataGrid help

    Savok, What database are you using ? Mine was ORACLE 8.1.7 and I used the ORACLE ODBC Driver and the width adjusted to the size of the column. Maybe it has something to do with the ODBC driver ... About the aliases - after every column that you specify in the select statement right before the...
  11. subhavs

    DataGrid help

    Never mind, Savok. Please ignore my previous message. I did not read through your code fully. Sorry ! Anyway, I am surprised why the aligning did not happen automatically. Could you try to use aliases for the column names during the fetch ? This way, you do not have to specify the column names...
  12. subhavs

    DataGrid help

    Hi Savok, I need some clarifications because I am lost. You want to populate records programmatically and then assign this data to a Grid ? You are not fetching the data from a table, am I right ? Because if you are fetching the data, DBGrid will automatically align it for you. - Subha :-)...
  13. subhavs

    Determining the type of control

    Thanks Rob, for the quick response. I need to look for textboxes, that's the reason why I asked the question. I am trying to write some kinda form level event that will highlight the text in a text box when the user navigates to it. The form can contain any number of text boxes, and it is a...
  14. subhavs

    DataGrid help

    Hi Savok, If you are using the Microsoft DataGrid Control 6.0 (SP4) (MSDATGRD.OCX) and Microsoft ADO Data Control (MSADODC.OCX) then this is the code - adodc1.connectionstring = something adodc1.cursorlocation = aduseclient adodc1.commandtype = adusecommand adodc1.recordsource = your SQL...
  15. subhavs

    Determining the type of control

    Hi, Can anyone tell me how I can determine what type of controls are used on a form (programmatically) ? Can we use the Controls collection property of the Form object for this ? Thanks in advance for the help, - Subha :-) Nothing is impossible, even the word impossible says I'm possible.
  16. subhavs

    Print Excel Sheet in Visual Basic

    Kumar, You need to add the Microsoft Excel 8.0 Object library in your references. Your code then would look like this - Dim xlsApplication As New Excel.Application Dim xlsWorkBook As New Excel.Workbook Dim xlsWorkSheet As New Excel.Worksheet Set xlsWorkBook = xlsApplication.Workbooks.Add Set...
  17. subhavs

    Hi folks, I am new to VB (from A

    Brian, My proposal uses DBGrid and ADO controls instead of ComboBoxes. Use the ADO control to fetch your records (both the number and name), tie this control to the Grid control. The grid control will be forced to display only the name. When the user picks the name that he wants, the DBGrid...
  18. subhavs

    Printing Dynamic ADO Data Grid

    Miguelarod, You can use the Excel object and dump the grid values into it. Then you can print the Excel work sheet. Hope this helps, - Subha :-) Nothing is impossible, even the word impossible says I'm possible.
  19. subhavs

    How to bind DataGrid Control to data brought with a SP..

    Thanks Jagger, for the followup. It worked !! - Subha :-) Nothing is impossible, even the word impossible says I'm possible.
  20. subhavs

    How to bind DataGrid Control to data brought with a SP..

    Jagger, Gee... The SQL that I used was a normal query, I had not used stored procedures before. But, I tried for while yesterday using stored procedures with explicit ADODC. Looks like there is no documentation for passing parameters. As with the command object, I did find something amusing...

Part and Inventory Search

Back
Top