15,611,656 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Python questions
View Javascript questions
View C++ questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Qadeer Ahmed Khan (Top 10 by date)
Qadeer Ahmed Khan
18-Mar-20 10:27am
View
Thanks. Yes it worked after configuring CORS.
Qadeer Ahmed Khan
22-Feb-19 10:28am
View
Didn't work. I added [Key] to both classes and yet still same. If I send Organization as null in json it works fine. Not sure why it is trying to insert data in Organizations table while it should just insert relation key into it.
Qadeer Ahmed Khan
13-May-17 5:04am
View
So I found this in documentation.
Note:
The value of vector coordinates delimited with a ^ character in the following format: x1,y1^x2,y2^xN,yN^~
If there is a pen-up event, then you use the coordinate 0, 65535 to signal a break in the line
^ is the coordinate delimiter, ~ is the ending delimiter, and a comma (,) is the vector delimiter
Qadeer Ahmed Khan
21-Apr-16 8:55am
View
Each Customer is assigned a unique id like CSP644 which can be sent for each service call. These databases are deployed upon different servers and there is a central database which keeps record of connection information. e.g
CSPID = CSP644
Host = SomeHost
Database = DBName
Password = ThePassword
So I should load a SQL Server Compact database table by calling a web service which would return data from central database and keep them locally. Clients would send their CSPID and other details like Email and Password for authentication.
Also should I keep a connection open for each database or close them after executing query as I am currently doing. Also is it possible to handle requests asynchronously and what would be the best way to do it?
Qadeer Ahmed Khan
19-Apr-16 11:01am
View
There is a different database for each client.
Qadeer Ahmed Khan
10-Mar-14 9:15am
View
Deleted
Just 70 lines of record.
BEGIN
IF(p_EmployeeID = 0)
THEN
SELECT FormID,FormName,CanAccess,Type from RightsCatalog;
ELSE
SELECT
ER.StoreID
,ER.FormID
,FormName
,IFNULL(ER.CanAccess,1) as CanAccess
,RC.Type
FROM EmployeeRight ER
RIGHT OUTER JOIN RightsCatalog RC
ON RC.FormID = ER.FormID
WHERE EmployeeID = p_EmployeeID;
END IF;
-- ****** [Objec... ts ] Script Date: 02/24/2014 10:00:33 *******
END
Qadeer Ahmed Khan
8-Mar-14 10:25am
View
I compared Linq to SQL (on MS SQL Server) and it was quite faster then this not sure what they done. I need better response time as there are not many Record line to fetch but there are rapid requests being made to server.
Qadeer Ahmed Khan
8-Mar-14 10:07am
View
Thanks you are right it would be really painful if I have conversion with in same method when it comes to changing. What about speed? Anything you think can speed up the process? does initializing DataApdapter within every method makes it slow..
Qadeer Ahmed Khan
3-Oct-12 8:29am
View
Yes I think problem is with the script loading because when I get to this page I can see the script for the previous page but clicking the refresh button shows the current page script. Do you have any idea how to fix it I am using MVC 2 and that's how I am calling the page.
return View("DriverDtlAdd",obj);
Qadeer Ahmed Khan
3-Oct-12 8:13am
View
Can you tell me to how to check that? but if it doesn't load at first then how does just refreshing the page makes it load the script?
Show More