A solution (.sln file) is a structure for organizing projects in Visual Studio. It groups one or more projects that work together to create an application.
Questions tagged [solution]
893 questions
-1
votes
1 answer
Solutions and classes
I know this may be a silly question, but I have looked in a lot of books and tutorials and they explain what is a class, and what's a solution but there's no way to confirm if what I'm understanding is right or wrong besides asking to a human that…

miguelopezv
- 790
- 2
- 8
- 28
-1
votes
1 answer
Running a .NET solution file in Linux without Admin rights
Note : I don't have root permission in my Linux box.
I need to compile a .NET (visual studio executable) solution file in my Linux machine.
I have just heard about a way that Microsoft is providing an extension to perform the same like mono, Yocto,…

Murthy
- 313
- 1
- 4
- 17
-1
votes
1 answer
Can I use the IMEI to identify mobiles for my android app
As IMEI means 'International Mobile Station Equipment Identity'
Is it a good solution to identify a mobile phone for an Android/iOS app ?

ALa Rihane
- 43
- 5
-1
votes
1 answer
How to filter records between two different dates Cakephp
This is the solution in SQL
SELECT *
FROM exploits
WHERE date
BETWEEN '2014-01-01'
AND '2014-12-31'
ORDER BY exploits.date DESC
LIMIT 0 , 30
this my solution in CakePhp (been totally Newbi at this)
$exploits = $this->Exploit->find('all',…

yveshache
- 1
- 1
-1
votes
2 answers
Where can I find HTML in ASP.NET project?
Today I got an assignment to work on a certain webpage. I am a bit new to ASP.NET so I was wondering if anyone could tell me where I can find the file generating HTML code in an already existing ASP.NET solution? The .aspx or .html/.htm files were…

Barrosy
- 1,407
- 2
- 25
- 56
-1
votes
3 answers
Caesar code in C extra letter for result
#include
void caesar(char bemenet[], char eredmeny[], int n){
int i = 0;
for(i = 0; bemenet[i] != '\0'; i++) {
if(bemenet[i] == 'z') {
eredmeny[i] = 'a';
eredmeny[i] += n-1;
}
else…

18uploadz
- 3
- 3
-1
votes
1 answer
Jumping div on scroll
I have a problem with my page:
http://dennisadelmann.de/New/index.html
when my index page is loading, the Name (header) is jumping.
i think its because of the simpleweather plugin. but i couldnt find a solution
Here are the code of my header: (let…

Dennis
- 137
- 1
- 2
- 14
-1
votes
1 answer
Waterglen Project
This is what i have for the Waterglen Solution so far.. I'm kind of lost as to how to call on the array and define everything with a 0 goes to the lbl for no place. And anything with a 1 goes to the lblfirst.
Here is a picture of the problem from…

mavrick951
- 15
- 3
-1
votes
1 answer
non lazy ptr linking error - the solution
I have received many errors while trying to Build & Run my iphone app using the xcode.
All the errors stated "non lazy ptr" for the used variables in the code.
The solution for me (and for all of you) is to look for the correct framework to be used…
user176516
-1
votes
1 answer
Malicious Scripts found in asp.net solution explorer at Runtime
I have found some unknown .php files in Soultion Explorer of asp.net website while running locally.
When ever i navigate between pages it dynamically created two files in the name of 1. eval code and 2. jsc3.js.php
i understood this is malicious…

lollol
- 95
- 1
- 2
- 13
-2
votes
2 answers
Is there a good solutation to display a statistics report on iphone?
I am a new iphone developer and I have a problem when I develop my app. The situation is that I need to display a report with headers both on the vertical and horizontal axes, just like an excel spreadsheet does. Can anyone can help me to figure…

user418751
- 1,937
- 2
- 18
- 21
-2
votes
1 answer
Array or products with prices, how to find all possible combinations for a given amount of money
So I am given an array of prices of products and a fixed amount of money I have and can spend. The question is to return a list of all given combinations of products that I can buy with the fixed amount of money I have.
eg. prices = [10, 15, 3, 4,…

katerina
- 9
- 2
-2
votes
1 answer
What's wrong in this code , it's doing nothing other than taking inputs of n and m
Here in this question the function call is not executing also tell me abut can't I use array instead of vectors here.
if Possible to use array please provide me with code that how to pass arrays to a function in c++
Here in this question the…
-2
votes
1 answer
To solve given expression in R and find T value?
enter image description hereI have an question concerning the possibility to solve functions in R, but to know the answer would really help to understand the R better.
0.10 =…

Saurabh Agrawal
- 1
- 3
-2
votes
1 answer
can you explain this code I found as a solution to an edabit problem?
I found this solution on a problem on edabit, but I cant get my head around it.
def count_overlapping(intervals, point):
return sum(min(x)<=point<=max(x) for x in intervals)
This is the problem text
Create a function that takes in a list of…

John Popa
- 23
- 4