0
votes
1answer
45 views
iPhone SDK: repeat subviews
I have one UIView, which I'm using as my main view, and I want to repeat the subview across the screen. How exactly can I do this?
1
vote
3answers
62 views
Is it possible to use opendir repeatedly in C?
I am trying to debug right now in C and am curious if it is alright to call opendir() repeatedly without having to first call closedir() because I am trying to run a loop to open s …
0
votes
1answer
40 views
JQuery - Coding Problem
Hey guys, I'm working on a "status"-Updater. It works, there is just one problem, after sending a Status I have to manual reload the page to let the script work again. Do you can h …
1
vote
7answers
155 views
Repeat Forever a If Function
Hello,
I'm developing a simple project, but how I can do a repeat forever a If function(It's like a command-line)? Thanks.
My code is like this:
Console.Write("> ");
var Comm …
0
votes
4answers
202 views
how to avoid writing main() too many times in C ?
Let say I have 5 small piece of codes in C.
Every time I want to test each piece of code, I have to repeat this process:
#include <stdio.h>
int main()
{
// code piece go …
1
vote
3answers
351 views
iPhone dev — performSelector:withObject:afterDelay or NSTimer?
To repeat a method call (or message send, I guess the appropriate term is) every x seconds, is it better to use an NSTimer (NSTimer's scheduledTimerWithTimeInterval:target:selector …
1
vote
1answer
134 views
Microsoft Expression Blend (silverlight): repeating header?
Hi
I'm using the new microsoft expression. I'm trying to create a repeating header much like this one at http://csstreacle.artygirl.co.uk/.
Is there a way I can do this in Express …
1
vote
2answers
152 views
OpenGL glColorPointer repeat colors?
Imagine that you've got one of these guys:
Aka GL_TRIANGLE_STRIP. If you wanna color it using different colors, you could use:
glColorPointer(4, GL_UNSIGNED_BYTE, 0, colorArray …
0
votes
4answers
269 views
CSS Background Repeat
Is there any way to make a background image stretch rather than repeat?
1
vote
2answers
169 views
How to repeat a mouse click in .NET
My app runs as a plugin inside another windowed app. Thus, my window often doesn't have the focus. Now, if someone moves the mouse over a button/menu and clicks once, all it does i …
2
votes
4answers
206 views
Repeating a section of an image in CSS
I want take a section of a picture, for example the middle of a picure, and repeat only that section in the background of a div. Is this even remotely possible? I suppose I could d …
0
votes
1answer
265 views
How to break page and repeat header after 20 records while printing data grid data in asp.net
i want to print a web page using datagrid to show data. i prints data but does not repeat header in next page . i want to get header repeated in each page .
how can i do it in data …
1
vote
4answers
184 views
How can I get a counter variable in Vim without python or ruby?
I do NOT have python/ruby enabled. My Question: I frequently have to write things like the following:
%macro(200701);x gzip /home/test/200701.txt;run;
%macro(200702);x gzip /home/ …
7
votes
4answers
2k views
How can I repeat a string in Perl?
In Python, if I do this:
print "4" * 4
I get
> "4444"
In Perl, I'd get
> 16
Is there an easy way to do the former in Perl?
2
votes
2answers
1k views
Can’t do shell script with a repeat with i from 1 to n loop
This works (prints, for example, “3 arguments”):
to run argv
do shell script "echo " & (count argv) & " arguments"
end run
This doesn't (prints only “Argument 3: three” …
