kheija 0 Newbie Poster

HI..Plz help me by giving ideas,opinion or suggestion.
My objective of my project is is to send sms to the customers 40 minutes before their car is finish for servicing and ready to collect.I've model the flow of sending sms where 40 minutes b4 done,the car will send for washing and on that time the system will send sms to the customer.
2nd objective is the customer also shall be able to view current service level or view left time of car servicing through website.In order to get information and managing servicing process, i also will develop form for service appointment,checked-in vehicle for service process etc. This is just a simple application only to get information and save nto database(SQL Database)
The prob here is, i've planned to develop it all in web application but, in a part of "service process management" is very difficult to build because needs time counting, remaining time counting, drag drop function,graphic display etc etc seems very complex.
Controls in web application are quite limited. I've to do it in windows application and already succeed in part of service process mgt.
If i do only service process mgt in wins app,then i hv stuck with communication within wins app and web app.(hv no time to study in detail,only 1month to completely developed.Presentation wil be on 8th april)
Then if i do all in wins app, then i hv to develop user interface in web app for the user to …

kheija 0 Newbie Poster

i've wondering here,if i can combine windows application and web aplication.Can i develop main page in web application then i want to access to the windows application.(e.g there's a button to link process mgt page.But process mgt page is developed in windows application).Else, if i do a view page on windows application and to retrieve the data is from web application. Example, users may fill the form through website, then to display the information is in windows application.Can i retrieve the data from the same database(SQL server dbase).
Thanks...

kheija 0 Newbie Poster

i've wondering here,if i can combine windows application and web aplication.Can i develop main page in web application then i want to access to the windows application.(e.g there's a button to link process mgt page.But process mgt page is developed in windows application).Else, if i do a view page on windows application and to retrieve the data is from web application. Example, users may fill the form through website, then to display the information is in windows application.Can i retrieve the data from the same database(SQL server dbase).
Thanks...

kheija 0 Newbie Poster

the label already successfully move to the right.the problem now is i want to move it automatically.For example i want to move it automatically when the time is 8 am and stop at 5 pm.The algorithm should be like this : if time now= 8.00 am then timer.enabled = true.
I've tried this code but it's still couldn't work.

Static x As Integer = +TimeLbl.Left
        Static y As Integer = TimeLbl.Top
        Static width As Integer = TimeLbl.Width
        Static height As Integer = TimeLbl.Height

        If timeofday = "08:00:00" Then
            Timer1.Enabled = True

            With Me
                x += 0.6
                If x <= +.TimeLbl.Width Then
                    x = .Width

                End If
                .TimeLbl.SetBounds(x, y, width, height)
            End With

        ElseIf timeofday = "17:00:00" Then
            Timer1.Enabled = False
        End If
kheija 0 Newbie Poster
Static x As Integer = +TimeLbl.Left
        Static y As Integer = TimeLbl.Top
        Static width As Integer = TimeLbl.Width
        Static height As Integer = TimeLbl.Height

        If DateTime.Now = "08:00:00" Then
            Timer1.Enabled = True

            With Me
                x += 0.6
                If x <= +.TimeLbl.Width Then
                    x = .Width

                End If
                .TimeLbl.SetBounds(x, y, width, height)
            End With

        ElseIf DateTime.Now = "117:00:00" Then
            Timer1.Enabled = False
        End If

here i got problem when the codings above doesn't work to move the label to the right automatically when i assign specific time.