hi all...
im a student from malaysia...
i need help from you guys about my final year project(fleet management system using mobile) to develop a system using c#....
thank you...

Dani AI

Generated

For — a compact, practical starter plan for a C# fleet-management mobile final-year project. is correct that forum members won't write the whole system; the goal here is to break the project into clear, assessable pieces. Thanks to for the levity and to for the reminder to read the forum stickies before posting requirements.

Define a tight MVP: vehicle registration, periodic GPS location reporting, route history, simple geofence/overspeed alerts, and a basic dispatcher/admin web UI. Architect the solution as: mobile client -> secure REST API -> server database -> admin UI. Keep payloads small, use JSON over HTTPS, authenticate requests, and design for intermittent connectivity (queue locally and retry).

Implementation choices depend on target hardware. For modern smartphones, use a .NET-based cross-platform client; for legacy Windows Mobile use the .NET Compact Framework. Server-side can be an ASP.NET Web API (or any REST service) with a relational DB and optional device-local cache (SQLite). Send updates only when necessary (adaptive interval) to save battery and data. Example telemetry payload:

{
  "vehicleId": "V001",
  "timestamp": "2026-01-28T10:00:00Z",
  "lat": 3.1390,
  "lon": 101.6869,
  "speedKph": 60
}

Test early and often: simulate devices with a console app to POST location payloads, measure data and battery use, log failure modes (no GPS, network drop, clock skew). Prepare deliverables for assessment: requirements spec, architecture diagram, working prototype (client + server), test report, and a short demo video. Maintain academic integrity: document design decisions, include code comments, and attach test evidence rather than submitting unreferenced work.

Recommended Answers

All 3 Replies

Well We aren't going to write the code for you! What have you got so far?

Well We aren't going to write the code for you! What have you got so far?

:D i loved this one. :)

fiziumt

As has been said no one is going to do it for you, unless you want to give one of us your qualification at the end of it..

If you have a specific question, please ask it, however there are 2 stickies at the top of this forum, please read both carefully.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.