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

  • Users: uthamsar
  • Order by date
  1. uthamsar

    Adding folders when packaging a Visual basic application

    I can add files ( with the add option in package and deployment wizard). That's how I add my datbases when I was deploying my applications on the lan drive or on cdrom. But I wanted to add a folder which has 190 sub folders(each one for one country) and each folder has 2 files. The size is not...
  2. uthamsar

    Dot leadrs in HTML

    I tried a similar trick before I posted this message. I am actually creating an xml file (for 190 countries, for 4 years and around 30 variables) from Vb application using access database. Then I am using an XSL to create country sheets for all those countries. In one shot I could publish on the...
  3. uthamsar

    Dot leadrs in HTML

    Is there any way to get dot leaders in html tables? (in one column) For example: Albania ......... Switzerland ..... United States ... Is there any tag that we could use to repeat a single character several times? Thanks !
  4. uthamsar

    Reading text files with ADO

    Reading text files: I did the following to read a text file and then write into database. Have a common dialog control on the form to have a 'open file dialogbox' or in your case may be you can open the file directly - open "C:\mytextfile.prn" for input as #1 It opens the file for...
  5. uthamsar

    VB Data Report Designer

    It is very difficult to understand what you are doing exactly. If you do not mind, semd me your code, I will look into the code. my e-mail address is Ravinuthala@un.org
  6. uthamsar

    Reading text files with ADO

    Could you explain how you are reading each line (parsing the line into different fields, how you are breaking the line). It should not ignore the comma.
  7. uthamsar

    VB Data Report Designer

    To Gaurishankar Under your connectionobject sql properties, select general tab; use SQl statement, for ex: Select * from tablex where fieldname1=? That question mark is important. Then click parameter tab, you could see '?' under parameters, under 'paramater properties' typr param1, and select...
  8. uthamsar

    Creating Filtered Reports

    Could you send me your code. I will see if I can be any help to you. My e-mail address is ravinuthala@un.org
  9. uthamsar

    DataGrid Doubt

    Yes you can do that Declare the following in your declarations; dim cn As ADODB.Connection On Error GoTo errhandler Set cn = New ADODB.Connection cn.ConnectionString = "Driver=Microsoft Access driver (*.mdb);DBQ=c:\Population Policy Database...
  10. uthamsar

    VB Data Report Designer

    For Alan C: Another quick check is in the following command DataEnvironment1.Codes_Grouping List1.List(List1.ListIndex) do instead this DataEnvironment1.Codes_Grouping n That n can be any valid number in your combo box. If you are still getting that error check the parameter tab and lookfor...
  11. uthamsar

    VB Data Report Designer

    To Alan C: if you do not mind could you send me your files (in a zipped file). my e-mail address is ravinuthala@un.org. I used a grouping object and it was working finw for me. May be if I look into your code, I might be able to help you.
  12. uthamsar

    VB Data Report Designer

    For Alan C (Data report designer) Your code should be changed as follows: DataEnvironment1.Codes_Grouping List1.List(list1.listIndex) DeptReport_Detailed.Show and to pass the parameter to your sql: SELECT * FROM tbl_FaxData WHERE DatePart("m",[AcknowledgedTime])=? Actually when you...
  13. uthamsar

    VB Data Report Designer

    Sending parameters to your report from user selected values from a combobox ( for that matter from any control): Suppose your dataenvironment object name is 'deReports', your command name is 'country' (command name is where your sql is), your combobox name is 'cbosource', and 'dataReport1' is...

Part and Inventory Search

Back
Top