1
vote
0answers
53 views
What makes you happy when you program? [closed]
Just thought I'd ask.
0
votes
1answer
23 views
Using UIButton for In App Purchasing
Hi Everyone:
I am wondering if there is some way to make an iPhone application where when a user clicks a UIButton, it to display an alert box about the item and then gives the user an option to …
0
votes
0answers
19 views
TabBar like controller
Hy,
I'm creating a UITabBar like controller. It has a bottom image with buttons, and a UIViewController to manage views. I'm using URLs to navigate between them.
The problem is, when I navigate into …
1
vote
9answers
88 views
Starter project to learn a new language ? [closed]
Possible Duplicates:
“Projects” for learning a new language
What are your favorite “learning” projects, and why?
DUPLICATES:
…
0
votes
3answers
40 views
How to pause a form in Visual C# until another form is closed
In my program I will press a button, and it will load form2. I do not want the program in form1 to continue running until the user closes form2. Then program execution continues in form1 right after …
0
votes
3answers
52 views
How to highlight lines of code in Visual C#
I'm trying to debug a Visual C# program, and it would be helpful if I could highlight lines or do something similar to make them stand out. Is there a way to do that?
2
votes
1answer
38 views
Can I Send a Text Message from My Computer to a Cell Phone?
Is it possible to send a text message from a computer to a cell phone? I'd like to be able to do this with Ruby, not quite sure what it entails. After seeing GrandCentral and Google Voice, it seems …
0
votes
3answers
132 views
I want to give a string a value of one.
I'm entering team names into a soccer league.
I have an array set up so that the league can take at most 4 teams,
I also have an array that states that the number of teams in the league is exactly 4 …
0
votes
1answer
48 views
Interacting with IPhone while in sleep mode
I want my app to keep running and interacting with the user, even if the user presses the sleep button.
So far I have learned, that my app can stay alive with the following code:
NSTimer *timer = …
1
vote
4answers
50 views
Getting the original secretkey from hex format
This is the hex format of a secret key used for AES encryption
00010203050607080A0B0C0D0F101112
Can i generate the original SecretKey format or byte array from this?
If so how?
0
votes
2answers
37 views
C# optimizing overloaded operators
Returning a new object on overloaded operators seems the only thing to do. Right?
If you have a class (X) that contains a large buffer
Part of the buffer contains content, rest is free.
You have …
1
vote
8answers
219 views
What is the advantage of using initializers for a constructor in C++?
Sphere() : theRadius(1.0)
{
}
Why is it preferable to have a constructor written with initializers (above) than a constructor that initializes the data members within its body (below)?
Sphere()
{
…
0
votes
2answers
53 views
Couldn’t understand this method summary at Apache commons API documentation
I've found this method summary from Apace Commons APIDOC but I don't understand how to use it.
byte[] decode(String pArray)
Decodes a String containing containing characters in the Base64 …
0
votes
3answers
37 views
Java - Base64 string in and out of a text
I need to write string containing base64 encoded text to a text file and then later read that string back from the text file to a string variable.
How can i do it so that there is no data loss due …
0
votes
2answers
32 views
how to encode the ciphertext
the file abc.txt has several lines of ciphertext. i want to encode the line of ciphertext into hex encode or base64 before putting in string srr . is there any way i can do it ?
bufferedReader = new …
