Hi, Can every body tell me by simple answer where & what i can create a batch process for ordinary operations such saving, changing file properties and so...
Hi There,
I just started developing a simple Android application while I'm still learning its platform.
I'm using Eclipse IDE with the ADT plugin 0.9.6 and I need to know if it's possible to view the activity stack that is associated with a Task.
Is there any way through the DDMS tool or through any other technique?
Thanks in advance for your help/advice.
Mic
Hi All,
I have had thoughts of trying to write a simple crawler that might crawl and produce a list of its findings for our NPO's websites and content.
Does anybody have any thoughts on how to do this? Where do you point the crawler to get started? How does it send back its findings and still keep crawling? How does it know what it finds, etc,etc.
Thanks!
-Jason
this must be such a simple problem but can someone tell me why this doesnt work:
visibilityString1 = @"the";
visibilityString2 = @"end";
visibilityString = (@"This is %@ %@", visibilityString1, visibilityString2);
Every time I try to combine strings this way, it will only return the second string so what I get is:
end
Say I have a simple object such as
class Something
{
public int SomeInt { get; set; }
}
I have read that using immutable objects are faster and a better means of using business objects? If this is so, should i strive to make all my objects as such:
class ImmutableSomething
{
public int SomeInt { get { return m_someInt; } }
private int m_someInt = 0;
public void ChangeSomeInt(int newValue)
{
m_someInt = newvalue;
}
}
What do you reckon?
Hi There,
Continuing with my adventure to convert COBOL to a Ruby program, I have to convert a decimal digit to a comp-3/packed decimal format. Anyone know of a simple Ruby script or gem that does this?
Berns
Hello,
I'm trying to make a very simple program run on my Nokia 5000.
On the Nokia website, there is a SDK (Series 40). I included this SDK in my IntelliJ project.
The problem is, when I try to run the helloWorld app on my phone, I get an error message.
(http://wiki.forum.nokia.com/index.php/Hello_World_in_Java_ME)
Can anyone help me out?
Thanks in advance!
I would like to know if there's exists some simple code to get to the page i know its ID , I would like to create small input (no matter where in templates)from where the people can easily get to the page if they know it's page ID . I have the girls portfolio in wordpress - portfolio=pages x jobs in clubs offers=posts , I would like the girls portfolios to be easily findable by ID(s) , if possible the same for the posts=jobs in clubs
The best solution little numeric input and send button
Hi there,
Does anyone know of a good open source toolkit that allows level designer and graphic designer or someone with basic programming experience to create multiplayer online Role Playing Game ? The game can be a simple 2D interface in a 2d virtual world.
I know Microsoft have a starter kit something like the following :
http://creators.xna.com/en-US/starterkit/roleplayinggame
that allows developer to create RPG game running on XBox platform but i am looking more on multiplayer role playing game on the web platform where player can play directly with their browser.
regards
Andrew
Hello
I'm creating a simple AIR app with resize-functionality. Of course i need to position a resize-arrow to the bottom-right corner. Here's my code:
stage.addEventListener(Event.RESIZE, handleResize);
function handleResize(e:Event):void{
resize_btn.y = stage.stageHeight-resize_btn.height;
}
This doesn't work, my button gets out of the window very quickly. How could I make this work?
Martti Laine
Hi, I'm looking for an alternave to the parse_ini_file() function in php. I want a simple way to store config settings, but want the flexibility to store unlimited levels of multiple arrays, special characters, etc. Any ideas?
Is there a simple way to convert a System.Drawing.Pen into its unmanaged counterpart? Like, if you had a Pen like this:
Pen p = new Pen(Color.Blue, 1f);
IntPtr ptr = p.ToPtr();
I know this code doesn't work, but is there a way to do it similarly?
This may seem a very silly question.
Consider this:
I have a simple Boolean object with a getter and a setter. Now both of the methods are called from a lot of threads very frequently.
Do I need to have a synchronization for this boolean?
Also are Boolean assignments atomic operations?
Is there a way to get pattern matching to match my value with any negative number? It does not matter what the negative number is I just need to match with any negative.
I have accomplished what I want with this simple code:
let y = if(n < 0) then 0 else n in
match y with
0 -> []
| _ -> [x] @ clone x (n - 1)
But I want to eliminate that if statement and just get it to check it as another case in the match statement
Basically, I have an iframe embedded in a page and the iframe has some javascript routines I need to invoke from the parent page.
Now the opposite is quite simple as you only need to call parent.functionName() but unfortunately I need exactly the opposite of that.
Please note that my problem is not changing the source url of the iframe, but invoking function defined in the iframe.
What is Service Broker in SQL Server and is it meaningful to enableitin a simple Database, Not in a distributed DB.
please do not close this question, I saw others similar question and non of them answered me.
I'm using Cumcumber + capybara + selenium to run automated testing, but I'm having trouble finding a way to assert that a javascript alert is displayed.
This question seems has a solution with selenium, but I can't figure out how to call the selenium object using Capybara.
Is there a simple way to test for alerts using Capybara? Or is there a workaround?
Hi all,
I'm just curious if there is a simple way to do this, something along these lines
javascript:
if(document.getElementById('button').clicked == true)
{
alert("button was clicked");
}
html:
<input id="button" type="submit" name="button" value="enter"/>
Thank You
Ruth
I need to implement a simple application to send short notify messages on gsm phone display via a GSM modem.
I know that I can use the gsm USSD protocol to send messages instead of sms in order to speed up the delivery.
Where I can find a detailed reference on the available USSD messages?
Where I can find examples or sample applications?
All mobile operators supports the USSD protocol?
Lorenzo
I want to make a simple game so that I can play against my friends at school. The school uses macs. Also if you can't make online games with flash what can I use.
Can anybody give a simple Deadlock sample code in c#.net ? And please tell the simplest way to find deadlock in your C#.net code sample.(May be the tool which will detect the dead lock in the given sample code.)
NOTE: I have VS 2008
All I really know is PHP and I used the decbin function etc, It was fairly easy to do. In this C++ program I want to do the same thing, just a simple number or string how would I do this?
I wrote a simple C# program using some graphic functions as drawElipse and drawLine at System.Drawing.Graphics. It works perfectly on one computer, but at my laptop it gives overflow exception at the graphics functions. I need the program to work on the laptop for a presentation after five hours, please help me.
Hi all,
Im making a simple alternative to the default linux system monitor.
Im looking to know how it lifts the process stats, which is displays in the Processes tab.
It probably runs off /proc, but im unsure.
Also, where could i find the source code for the system monitor program?
Regards
Paul
The dialog box for adding a web form to a web project in Visual Studio has a checkbox to 'Select Master Page'. This checkbox doesn't exist in the Web Developer Express Edition. Is there a simple alternative to attach a Master Page while adding a new web form in the Express Version?