Hello,
I would like to ask You all, what do You think about the future of .Net technology comparing to other top fashion technologies (for example from google).
Is it possible that within few years all solutions will be developed in other technologies than .Net. Is it worth learning .Net solutions looking into the future ?
Hello guys,
here i have a problem that is , in a from data is inserted in database on click on a button when it it will be done successfully, if the page is refreshed then the click event is fired again and the data is inserted again .
so please tell me a appropriate solution to resolve it .
Hello,
I got this formula from a data structure book in the bubble sort algorithm.
I know that we are (n-1) * (n times), but why the division by 2?
Can anyone please explain this to me or give the detailed proof for it.
Thank you
Hello,
I want to load an image, resize it to a given size and after draw it in a specific position in a panel.
All this using wxpython.
How can I do it?
Thanks in advance!
Hello,
I want to get a reference to the Gmail Inbox button in Javascript? I tried my code in Firebug console but could not manage to find the right DOM node.
Hello All,
I have a following ArrayList,
[Title,Data1,Data2,Data3]
[A,2,3,4]
[B,3,5,7]
And I would like to convert this one like this,
[Title,A,B]
[Data1,2,3]
[Data2,3,5]
[Data3,4,7]
I'm bit confused with the approach. Any hint would be much appreciated.
Thanks.
Hello everyone
I hope to move UITableView tiems fromn left to right and reload a new table array.
I know it can done by navigationcontroller.
But if there is a way without navigationcontroller.
Thanks
intterdev
Hello,
I need help with select statement in MSSQL.
My table looks like this:
Id (int)
QuestionId (int)
GenreId (int)
I want to select random N rows from this table so that maximum number of same GenreId in the result set is less than X for all GenreId-s except one. For that one GenreId, I need row count with that GenreId to be equal to Y.
Thanks in advance
Hello,
why does
List<Object> objectList; = some objects
List<Object> getList()
{
return objectList; //or return new List<Object>(objectList);
}
return a list with all items referenced to the original list's items?
Thanks.
Hello
I'd like my dates in the mm/dd/year format in text fields. However, they currently displays as 2010-03-26.
Is there a global setting I can set to change this?
I tried the following, which seems to update the .to_s method, but form fields stay the same.
ActiveSupport::CoreExtensions::Date::Conversions::DATE_FORMATS.merge!(:default => '%m/%d/%Y')
Thanks
Hello All,
I am doing small Project in JSF richfaces.
I have specified getter and setter methods for member variables...
Mbean created for the same. The Constructor getting called but all other methods which i have specified is not calling.
i have specified bean in faces-config also
please help me out
Thanks,
Jungle_Hacker
Hello,
I would like to set a cookie with PHP that has to expire at the end of the month.
How can I get the number of seconds until the end of the month?
Thank you.
I've heard that objective-C is a proper superset of C, but is objective-C 2.0?
The reason I ask is that either it isn't, or I misunderstand the phrase 'proper superset', because this code is valid C syntax:
import
int main () {
char *nil = "hello";
printf("%s\n",nil);
}
But does not compile in Objective-C 2.0. Obviously, this is an easily fixable problem, but I'm writing a paper, and feel that this is something that should be pointed out.
Hello,
I'm having a hard time trying to replace this weird right single quote character. I'm using str_replace like this:
str_replace("’", '\u1234', $string);
It looks like I cannot figure out what character the quote really is. Even when I copy paste it directly from PHPMyAdmin it still doesn't work. Do I have to escape it somehow?
Hello, i was viewing this video and i really want to develop this is PHP with no AJAX, do you how to start? where can i find some examples codes? Thanks.
Hello,
At the bottom part of my main UIView, I've an UIScrollView with an UIImageView inside.
I'd like to move the UIIMageView from the UIScrollView to the top part of my UIView.
I'm able to move my UIImageView inside the UIScrollView, but outside, I can't.
The UIImageView remains in the UIScrollView, it's parent.
Any idea?
Thanks in advance for any help.
Best regards,
Alx
Hello all,
I wonder how would I go about doing this.
I want to change a behavior for a list. When a list is added into sharepoint site, you can see 'Add New Item' underneath the list. When the user adds a new item, it should be replaced with 'Edit Item'
How can I achieve this?
Many thanks,
Hello,
Im trying to write query in linq
Select UserId, UserNumber
FROM User
where UserNumber in
(Select UserNumber
FROM User
group by UserNumber
having Count(UserId) = 1)
Aby hints ?
Hello,
I want to create labels in my page dynamicly, for example the user will choose in a textbox the number of labels, and I will display the number of this label with .text = "XYZ".
Thanks.
Hello,
I´m thinking about writing an android app, but have no experience in programming such apps.
My question is whether it is possible to access the standart message editor of android with my app and add for example additional information to it or would it be neccesary to write a complete new editor which would be started as a seperate app.
greetings
Hello everyone.
How can I remove the . and .. from a path in Delphi (not using .NET).
I need a function, so I can pass it something like 'c:\program files..\program files...', and I want the function to return to me 'c:\'.
Can Delphi do that on its own? Or do I need to do it myself?
Hello.
What's best, a repeating background of 100px wide so that the actual file doesn't need to be redrawn 1000X times in width, or a 1px file that probably has smaller file size, but the browser will need to redraw it a lot more.
Thanks.