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...
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...
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
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?
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.