Wednesday, 22 December 2021

Software houses in lahore Pakistan

Systems Limited
 
Contour Software
 
Allzone Technologies
 
NETSOL Technologies
 
Northbay Solutions
 
 Xavor 
 
Afiniti
 
Confiz
 
Nextbridge
 
i2cinc
 
DatumSquare IT Services
 
10pearls
 
PureLogics
 
BrainX Technologies

InvoZone

SigmaTec
http://www.sigmatec.com.pk/careers

Wadic
 










Best .Net websites and tutorial links for beginners and professionals.

Videos Links:

kudvenkat:

https://www.youtube.com/c/Csharp-video-tutorialsBlogspot/playlists

 IAmTimCorey:

https://www.youtube.com/user/IAmTimCorey/playlists 

Questpond:
https://www.youtube.com/c/questpondvideos/playlists
 
freeCodeCamp.org:
https://www.youtube.com/c/Freecodecamp/playlists 
 
Programming with Mosh:
https://www.youtube.com/c/programmingwithmosh/playlists 
 
 Les Jackson:
 https://www.youtube.com/c/binarythistle/playlists
 
 
Websites Links
  1. https://csharp-video-tutorials.blogspot.com/p/free-aspnet-video-tutorial.html

  2. https://dotnettutorials.net/

  3. https://dotnet.microsoft.com/en-us/learn 

  4. https://www.javatpoint.com/net-framework

  5. https://www.tutorialsteacher.com/core

  6. https://www.dotnettricks.com/learn/aspnet

  7. https://www.c-sharpcorner.com/csharp-tutorials

  8. https://www.guru99.com/asp-net-tutorial.html

  9. https://www.tutorialspoint.com/asp.net/index.htm 

     

    If you know any best .Net websites or tutorials links which is not mentioned in the above list then please post in comments. We will definitely add in our list.
 
 
 
 
 

Friday, 21 June 2019

Waqas Ali (List of Pojects)

Projects:

Student Portal:

Following are the modules which I developed in Student Portal
 Student Change Major Module
 Grade Entry Module
 Student Attendance Module
 Students Upload documents Module
 Colleges Publications modules.
 Student E-services
 College and Ministry Finance Audit system

Following are the reports which I developed using crystal reports
 Student Transcript
 Student Class List
 Student Absent Percentage
 Instructor Time Table
 Student Time Table
 Student Attendance Report
 Students Info in each semester
 Students Info in each Cohort
 Students Statistics
 Reports for administration department

 Reports for the HR department

Technologies:( Oracle, Asp.net, C#, SQL SERVER, HTML, CSS, JAVASCRIPT, JQUERY, and
Crystal Report, Bootstrap, Entity Framework, MVP architecture andTeam Foundation Server).

Government Colleges Finance and Audit System:
In this system, colleges can record their annual budget and expensive and the Ministry can follow and
process the whole scenario.
Technologies:( Asp.net, C#, SQL Server, Entity Framework, HTML, CSS, JAVASCRIPT,
JQUERY, Crystal Report and Team Foundation Server).

Developed Online student enrolls system:
This project is linked with Higher education admission center (HEAC). Students can register their
self on the time of registration and government colleges staff process and follow their request
through the system.
Languages :(LINKED SERVER ,Oracle, Asp.net, C#, SQL SERVER, HTML, CSS, JAVASCRIPT,
JQUERY, Crystal Report, Bootstrap and Team Foundation Server ).
Integrate Oracle and MS SQL SERVER through LINKED SERVER

Developed a complete system of students’ online services:
In that system, first students will registered and send their request to the registration department and
after that registration department follows and process request through the system.
Link: http://eservice.cas.edu.om
Technologies:( Oracle, Asp.net, C#, SQL SERVER, HTML, CSS, JAVASCRIPT, JQUERY,
Crystal Report, Bootstrap and Team Foundation Server).


Government college’s websites and Recruitment systems.
Responsible for support, maintaining enhancement of the already developed Government College’s websites and Recruitment systems.
Developed Roles permission full modules for Government College’s website.

Following is a links
  • https://recruit.cas.edu.om/index.aspx?ReturnUrl=%2f
  • https://rustaq.cas.edu.om/
  • https://salalah.cas.edu.om/
  • https://nizwa.cas.edu.om/
  • https://sohar.cas.edu.om/
  • https://sur.cas.edu.om/
  • https://sohar.cas.edu.om/


Technologies:( Asp.net, C#, SQL Server, Oracle, HTML, CSS, JAVASCRIPT, JQUERY, Crystal Report and Team Foundation Server).

Quality Management System:
Worked on some modules in the Quality Management System.
Technologies: (Asp.net, C#, MVC, Entity Framework, Bootstrap ,HTML,CSS,JQUERY and Team Foundation Server).

Coffee Shop Management Webservices (Freelance Project)
Developed small coffee shop management system web services
Technologies: (Web API, C#, Entity Framework, swagger.io, SQL SERVER).

Developed reports for US-based company.
 Developing Interface screens of Reporting.
 Analyzing data and writing Stored Procedures, Stored functions, Queries and handle
 A complex scenario in reporting back end. Handle complex scenario in reporting front end.
Technologies: (HIGH CHARTS, PHP, HTML, CSS, Javascript, Jquery SQL SERVER).


Worked on the HR system for the US-based company.
 In the HR system developing new modules and also maintenance the already modules.
Technologies: ( PHP, HTML, CSS, Javascript, Jquery SQL SERVER).


Worked on the CRM system for the UK-based company.
 In the CRM system developing new modules and also maintenance the already modules.
Technologies: (PHP, HTML, CSS, Javascript, Jquery SQL SERVER).

Small freelance project Milk Sales System
Designed and developed the small Project Milk Sales System
Technologies: (WPF, C#, SQL SERVER).

Small websites and freelance E-commerce websites
Designed and developed  small E-commerce Websites.

Technologies: (PHP, HTML, CSS, Javascript, Jquery SQL SERVER and Joomla ).



In free time writing blogs and practice algorithms and data structures.





Friday, 3 August 2018

Couldn't connect to logcat, GetProcessId returned: 0 (Xamrin Andriod Visual Studio)

Couldn't connect to logcat, GetProcessId returned: 0 (Xamrin Andriod Visual Studio)

Solution: Uninstall APP from emulator. 

Following is a step.

  1. Go to settings.
  2. Find the app
  3.  Uninstall the APP
  4. Close the emulator
  5. Run again the emulator








'adb' is not recognized as an internal or external command, operable program or batch file.

'adb' is not recognized as an internal or external command,operable program or batch file.





 Solution:

Step 1

I have windows 10. Here is adb.exe is located. Copy the following path.

 Step 2:

Go to control panel and click Advanced system settings.

Step 3: Click Environment Variable button.


Step 4

Select Path button and Click Edit button


Step 5:

Paste the adb path here and then click ok and ok


Step 6:

Run again command prompt and type abd.

Sunday, 22 December 2013

Get data from second last row in SQL Server

We have a following table suppliersInformation and we want to Get data from second last row in SQL Server.

Following query shows how to get data from second last row in SQL Server
 
SELECT TOP 1 * FROM
  (SELECT TOP 2* FROM suppliersInformation ORDER BY sup_rec_id DESC) tbl
  ORDER BY sup_rec_id ASC