Search results for query: *

  1. Valakik

    Question Connect to Laravel Websocket

    Hello I am using this in the Laravel side: Laravel Websockets - Introduction I tried connect to the websocket from C# desktop application but no luck. That websocket is clone of the Pusher service so I tried to use the Pusher dotnet client open source: GitHub - pusher/pusher-websocket-dotnet...
  2. Valakik

    Question Hour and minute slider

    If it wouldn't be hard for me then I wouldn't ask, I think. :unsure: I am just a beginner level with the C#. Most of the time I spent on the web development. I guess, I need go to search more on the google. Well either way thank you for responding to my topic. :)
  3. Valakik

    Question Hour and minute slider

    Hello I find on the internet many slider on the internet from 0-10 and so on but I don't find any for hour and minute. I am trying to make something like this (jquery): https://codepen.io/caseymhunt/pen/kertA I don't know how I can make in C# winform. I just need to able select beginning and...
  4. Valakik

    Question Load form on all of the screens

    Oh ok. Thank you. For now how it is, works fine but if it will not work as should when I will put the app to the kids laptop then I will do as you recommended. Thanks. :)
  5. Valakik

    Question Load form on all of the screens

    Alright. I am satisfied what I got after playing around with the GetDesktopBoundse function whole week: private static Rectangle GetDesktopBoundse(Form main) { Rectangle result = new Rectangle(); for (int i = 0; i < Screen.AllScreens.Length; i++)...
  6. Valakik

    Question Load form on all of the screens

    If I put in label to see the size then it is correct. I have 1920x1080 screen settings on both screens but the form doesn't want to maximize to both screens, just staying on the primary screen. I changed to this my code for now: private void Background_Load(object sender, EventArgs e) {...
  7. Valakik

    Question Load form on all of the screens

    Hello Long time ago I mentioned that I am making parental control app nowadays and I stuck with one thing. I am trying to cover the screen with transparent black form so the kids can't use their laptop when the time is up. Before I had this code in load form event: Bitmap bmp = new...
  8. Valakik

    Question From Specific DateTime will give real time

    Thank you for the answer. It works. :) About your last comment the solution is to make for them an account which doesn't have admin permission but user permission. With this method of course they can close the app however I will make a service which will check if the app is running. If they want...
  9. Valakik

    Question From Specific DateTime will give real time

    Well in my case is just a simple parental control app so the kids will not using in my house the computer between time. The kids are smart to change the time on the pc to cheat the available time to use the laptop. So therefore I thought to make that way where the webserver gives the server time...
  10. Valakik

    Question From Specific DateTime will give real time

    Hello I don't find any information on the google how to do the following: - I get from server side the server time through API. I load in DateTime one time when the form load completely. - However I don't know from that point how the app will use that DateTime as normal date and time. What I...
  11. Valakik

    Question Use app between 2 times and get the time from database

    Hmm so you are saying that I should save in the database in UTC way the parent's timezone and showing normally on the webpage or app the defined timezone. In database should have 1 timezone which is used and when parents giving a timezone then it will be converted to timestamps in utc? So 2...
  12. Valakik

    Question Use app between 2 times and get the time from database

    Hello I am planning to make an app which could be used between defined times and if the time is not between the defined time then the app would give a warning and close the app. Originally thinking about making a parental control app for parents and their kids so the parents can tell when it is...
Back
Top Bottom