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: swetham
  • Content: Threads
  • Order by date
  1. swetham

    A script engine for the specified language can not be created

    I have used Microsoft script control in one of the program where VBSCRIPT is the script language used. The program is working fine in all the systems but only in one system the error is coming like "A script engine for the specified language cannot be created". I have registered the...
  2. swetham

    count number of pages in a pdf file

    I need to count the number of pages in a PDF file. I have used the below code, Public Function getNumberOfPdfPages(ByVal fileName As String) As Integer Using sr As New StreamReader(File.OpenRead(fileName)) Dim regex As New...
  3. swetham

    access user control controls

    I have a DLL, in which the user control main form is having one label and one button. when button is clicked windows from should open and when windows form is closed, user control form label should be written "Form is closed". can anyone please help me out? Thank you
  4. swetham

    Get currency exchange rates

    Can anybody help me in retrievign the exchange rates in a textbox using vb.net windows application? Thank you.
  5. swetham

    Reprot with two columns

    I have a database consisting of all the address details of employees. Now i need to generate a report where the employee address comes in one box (Size will be defined). there should be two columns in A4 page. can anyone tell me how to proceed?
  6. swetham

    Insert data into datagridview

    I am inserting data into datagridview using dataset ie, dim ds as new dataset dim da as new mysqldataadapter("select first_name,last_name,address from employee_Details",con) da.fill(ds) dgv.datasource=ds.tables(0) Now i want to display first two columns as "ACCEPT" & "DECLINE" button columns...
  7. swetham

    Find number of occurences in a array

    I have a multi-dimensional array as follows, dim examp(4,3) as string examp(0,0)="1" examp(0,1)="2" examp(0,2)="3" examp(1,0)="6" examp(1,1)="4" examp(1,2)="8" examp(2,0)="1" examp(2,1)="2" examp(2,2)="3" examp(3,0)="5" examp(3,1)="2" examp(3,2)="3" now i need to find the row number where...
  8. swetham

    calculate months difference between two dates

    How to calculate the months difference between two dates. For example, if from_date='2011-07-06', to_date='2012-01-01", months should come as 5 and days=days between (2011-12-06 and 2012-01-01) if from_date='2011-07-06", to_date='2012-01-06", months should come as 6. Can anyone please help me...
  9. swetham

    Copy file into a location

    I am trying to copy a file from one location to another, i am getting the error like, The process cannot access the file, being used by another process. It is working for small files but when i am trying to copy large file (2 MB), this error is coming. can anyone please help me out from this...
  10. swetham

    Select a row in datagrid

    I have placed a month calendar & data grid in windows form. Datagrid is filled up with holiday dates. When a user selects a date, particular holiday date in the grid should be highlighted & seen to the user.Code is, in month_calendar_datechanged event For _i = 0 To DGV_Holidays.Rows.Count - 1...
  11. swetham

    Dispaly data from two tables

    I have a query like select e.emp_name,t.tl_name from employee_details e left join tl_details t on e.emp_id=t.emp_id A employee may have two Team leaders or may not have team leader. Report should dispaly employee name & their tl_names. Form the query i am getting the data like Emp1 TL1 Emp1...
  12. swetham

    restrict windows shutdown

    I have a program in which if no of hours worked in a day is less than 8 hrs, the system should not shutdown. I have used the following code, In formclosing event, i have written, e.cancel=true It is not allowing the system to shutdown or log off nut it is showing the "End program" message anf...
  13. swetham

    Hyperlink in richtextbox

    In richtextbox link clicked event i have given, process.start(e.linktext) I have a combobox which is filled of company details. IF i select one company detail and select the hyperlink it is getting opened but when i select other company detaisl and click the hyperlink it is not getting...
  14. swetham

    Passing multiple values to a parameter field

    My reprot has week parameter where user can select more than one week (multiple weeks can be entered), i wrote the below code, Dim crParameterDiscreteValue As ParameterDiscreteValue Dim crParameterFieldDefinitions As ParameterFieldDefinitions Dim crParameterFieldLocation As...
  15. swetham

    Data filtering

    I have created a reprot using command (SQL query) which retrieves all the employee details.Now i need to filter the data based on the conditions, 1) Employees joined in the Week numbers will be selected (example: 13,15,19) and the data should be filtered. 2) Employees joined in the selected...
  16. swetham

    Text back color in textbox

    How to change the selected text backcolor in a textbox by pressing some key like (ctrl+K)?
  17. swetham

    Exclude time period

    I have created an application in which user selects the start_time & end_time of the tasks performed in that day from datetimepicker control (CUstom format HH:mm) and the number of minutes will be calculated automatically. Now my problem is how to remove the lunch break minutes from the minutes...
  18. swetham

    Export to PDF

    Before i have posted it in a wrong forum, now i am posting it here, I have designed a report which in which i have wriiten the Sql Join query in "Command". I get the data from the Query wriiten in "Command" , I have three parameterfields in the report ProjecT_name,start_date,end_date. I have...
  19. swetham

    Export crystal report to PDF

    I have designed a report which in which i have wriiten the Sql Join query in "Command". I get the data from the Query wriiten in "Command" , I have three parameterfields in the report ProjecT_name,start_date,end_date. I have filtered the query data in select expert->record. In report if i...
  20. swetham

    Crystal report grouping

    My report contains following tables, TaskSheet_Details [Table_name] -------------------------- Task_id Emp_Id Notes Task_Date Duration Task_Details ------------- Project_id Task_id Document_name title Allocated_hours Project_Details ------------------ Project_id Project_name Employee_details...

Part and Inventory Search

Back
Top