Hello everyone,
i have one problem when i sort the NSMutablearray using date and time wise.
Does anyone have idea how can i sorted array date and time wise
Thanks in advance
The VS debugger gives me:
_Color = "{Name=ff000040, ARGB=(255, 0, 0, 64)}"
how can I "see" what color is?
I tried a html page:
<html>
<div style="background: rgba(255, 0, 0, 64);">________<div>
<h1 style="background-color: ff000040">hello</h1>
</html>
doesn't work.
hello friends
I am using following query in linq
In product table following type of data are stored
abc-def
bcd=fgh
abc-xyz
var query=from prod in db.Product
join cat in db.category on prod.categoryId=cat.categoryID
where prod.productName.split('-')[0]=="abc"
but in that query it product annoumous problem
Please give some suggestion to split in where caluse
Hello,
I want to do a .htaccess rewrite, which when users enter this http://DomainName.com/UserName should go to http://DomainName.com/UserDirectory/UserName, but should show http://DomainName.com/UserName to the user
Thanks
Jean
Hello,
I am looking for an SDK or API that I could utilize to simply grab a Bitmap or Byte[] from the fingerprint reader. Most of the SDKs out there do much more than this and require expensive licensing which I don't want. I will be integrating this into a .NET windows application.
One requirement, it needs to work with a Futronics FS80 which is a very popular fingerprint reader.
Any suggestions?
Hello,
I want to create an iPad app that would have a simple view at launch with buttons to different components of the app. Each button then could open up a splitviewcontroller type views. (Interface similar to WebMD: http://itunes.apple.com/us/app/webmd-for-ipad/id373185673?mt=8)
I was reading online that Apple does not allow splitviewcontroller inside other controllers (like NavigationController).
How do I solve this?
Thanks!
Hello,
I was wondering if there are any downsides of storing a custom Principal in httpcontext.current.items instead of the httpcontext.current.user. I know you need to set it for each request but I have to do that with httpcontext.current.user also.
thanks in advance,
Pickels
Hello,
I'm embedding WebKit in a Windows C++ Application. I'm using the Cairo port. It works fine.
I'd like to disable the scrollbars that appear when there's more data that the client area can display. Like the iPhone, the iPhone does not have scrollbars, scrolling is implemented differently.
How can I disable the scrollbars programatically, in C++ (no Javascript hacks)?
Thanks,
Hello!
I have some hidden inputs like this
I would like somehow to replace the [1] with a number that i want (index)
I aint lazy but i am trying to find a good way to do this...
a solution would be a replace of exam.normals[1] with exam.normals[+ index +] but i should substr the whole string first....
With regexp i dont know how to do the replace. good...
Hello,
I have a Excel spreadsheet and I have 3 columns. column A, column B, Column C.
In column B if there is a value 1 then in Column C it should populate as True and if in column B value is 0 then in C it should be False.
How do I do this in MS Excel
Hello everyone
I created MVC ASP.Net Web application and tried insert Thai language data to SQL Server 2008 database to field with data type text and then database store ?????? which is incorrect. For Html Page I user charset utf-8
However I tried to Encode string before insert data to database and change database field collation. These do not solve problem.
I'm looking forward to your reply.
Thanks,
embarus
Hello,
Search Server treats å,ä,ö characters as a,a,o when i order by title i.e. Is there some way to make the search result to order them correctly?
Best regards,
Mattias
Hello friends,
I have several iPhone apps, which i want to convert them to iPad. Is there a link where i can have a look at simple procedures about how to convert iPhons apps into iPad compatible? I already installed 3.2 SDK etc., having development environment ready.
Forgive me if it is a repeated question.
Thanks for your helps.
Hello, complete noob to Haskell here with probably an even noobier question. I'm trying to get ghci output working and am stuck on instance declarations. How could I declare an instance for "(Show (Stack - Stack))" given:
data Cmd = LD Int
| ADD
| MULT
| DUP
deriving Show
type Prog = [Cmd]
type Stack = [Int]
type D = Stack -> Stack
I've been trying to create a declaration like:
instance Show D where show = Stack
but all my attempts have resulted in illegal instance declarations. Any help and/or references much appreciated!
Hello,
I have an ecommerce website that works in a classical way: people sign up, buy a product with their CC.
It uses the default Django auth system for users and registration and session framework.
Now I want to implement a referral system to my system where people can invite other people by giving their referral link (ie mysite.com/referral/123123/ ) and if a person signs up AND buys an item, the inviter gets 5$.
How can this the implemented ?
Hello,
I have been reading about Unit of Work pattern but I am confused about how the UoW actually persists data.
When we commit the changes, UoW should iterate through the list of Added, Updated and Deleted objects and somehow find a class responsible to Add, Update, Delete objects of a certain type.
I couldn't find an example showing this technique.
Any advice on this would be greatly appreciated.
Mosh
hello there
i have 5 buttons in row (btn1,btn2,btn3,btn4,btn5) and 1 OK button
when i click indivisually to each button of 5 buttons its color changes to red and after click on OK button the color of buttons which are red turns green
the problem is that i don't know how to insert induvisual record of each button of which color is green in access database
help me if you have any answer
Hello, I'm studying ASM 8086 theoretically on highschool. (that means that I study ASM 8086 on a notebook, and never got to run it over a computer).
And I don't understand - what will happen if I do this:
MOV AL, F2h
ADD AL, 20h
What will the computer do? (what will be the value of AL,AX, CF,ZF?)
and what will happen if I do this:
MOV AH,F2h
ADD AH,20h
Thank you !!
Hello, Actually I'm trying to capture person's current and permanent address. In this case if d current and permanent address same means no need to enter twise. Here I'm using a checkbox. If d checkbox s checked the current address plased in permanent address too. Help me to do tat.
Hello,
Im making an application in cocoa and wanted to see if some strings in it were easily accessible so I ran OTX on it and sadly all of my code was found. Is there a method I can use to make my code more "secure" or at least encrypt/hide the strings? The reason I want to encrypt the string is it's a password for a server. I don'd need it really secure I just don't want the password to be so easy to find.
Thanks for any help
Hello,
Am struggling a bit with this.
Am declaring:
BYTE *pImage = NULL;
Used in call:
m_pMyInterface-GetImage(i, &imageSize, &pImage);
Visual C++ 2003 compiler error:
error C2664: 'CJrvdInterface::GetImage' : cannot convert parameter 3 from 'BYTE **__w64 ' to 'BYTE **& '
A reference that is not to 'const' cannot be bound to a non-lvalue
The method called is defined as:
void CMyInterface::GetImage(const int &a_iTileId, ULONG *a_pulImageSize, BYTE** &a_ppbImage)
{
(...)
Any help much appreciated,
Bert
Hello everybody!
when I write in commandline in windows:
C:\Program Files (x86)\Microsoft Office\Office12>winword.exe /mOpenPage c:\Navod
ilo.doc
It starts the word document with the macro /mOpenPage.
I want to do the same thing from Java but its not going.
String[] cmd = {"cmd.exe","/c","start","c:\\Program Files (x86)\\Microsoft Office\\Office12\\WINWORD.exe","/mOpenPage","c:\\Navodilo.doc"};
Process proc = Runtime.getRuntime().exec(cmd);
help?
Hello there,
I have a problem while displaying the data from the grid to the excel.I have implemented pageing and the problem is the page that is displayed is only exported to the excel not all the pages.please help.
thank you.
Hello,
I've got a sql statement, but I can't get it working in linq. Can someone show me how I can write the following sql statement as linq?
SELECT * FROM mobileApplication
LEFT JOIN videoMobile ON mobileApplication.id = videoMobile.mobileApplicationId
AND videoMobile.videoId = 257
It's a left join with a where statement on the right table. It works in sql server 2005, but I'd like to write it in linq.
Hello,
I am developing a server client application .
Where Client will send a huge amount of data to server through internet.
However I have done some asynchronous socket programing before. Can I use same code here ?
Thanks.