The alternate tag has no wiki summary.
10
votes
7answers
333 views
Strange PHP syntax
I've been working on PHP for some time but today when I saw this it came as new to me:
if(preg_match('/foo.*bar/','foo is a bar')):
echo 'success ';
echo 'foo comes before bar';
...
9
votes
4answers
253 views
Python: Alternating functions every x minutes
Say if I have four functions as below:
def foo():
subprocess.Popen('start /B someprogramA.exe', shell=True)
def bar():
subprocess.Popen('start /B someprogramB.exe', shell=True)
def ...
5
votes
5answers
280 views
What's the alternate character combination for the double quote characater in C/C++?
I've not had the Kernighan and Ritchie C reference in years, but I remember that there was a page in there that talked about how to enter characters that were unavailable to you. (WAY back in the ...
3
votes
3answers
1k views
Silverlight ItemsControl with Alternating ItemTemplate
Silverlight does not support Alternating Item Templates in an ItemsControl. I have a few ideas in mind as to how to accomplish this, but to avoid polluting the potential answers, I'll leave them out.
...
2
votes
2answers
167 views
Composite alternate key in tables
Assume that a table have 4 columns A, B, C and D. Only A column defines uniqueness that's why it's a primary key. B, C and D allow entries to repeat that's why we can't take them as an composite ...
2
votes
2answers
6k views
Android ListView with alternate color and on focus color
I need to set alternate color in list view rows but when i do that it removes/ disables the on focus default yellow background
I tried with backgroundColor
rowView.setBackgroundColor(SOME COLOR);
...
2
votes
2answers
615 views
Alternate method of inserting a .PDF file into HTML page
Currently I'm using an embed tag with the src directed to the location of the .pdf however the embed tag does not allow for z-index manipulation or other div tags to be placed over it. After ...
1
vote
1answer
31 views
Blackberry 'ControlledAccess' exception for persistent storage when launching from alternate entry point
Background:
I have an application with an alternate entry point. It listenes for SMS and Email sent events. The application get launched normally from the 'Download' folder (by user) and also when an ...
1
vote
2answers
85 views
Alternating row color for JasperReports
I want to get color to alternate for the rows in a JasperReports subreport. I have all rows with the same background color but I want it to alternate. Can this be done?
1
vote
1answer
44 views
php multiple alternate column loop
im very new to php and html and im trying to create an ouput like this coming from a database table recordset. where "table record n" is the column from the db table record set
basically the table ...
1
vote
1answer
504 views
android listview alternate row color BUT with default cursor selection
i have been all over the web, stackoverflow included and just can't seem to get a clear complete way to
I want to create a ListView that
1) has alternating colors (I am able to do that with code ...
1
vote
4answers
267 views
Alternating images with a timer using java
Since I'm not a CS major, I'm having some difficulties translating my programming wishes into an actual program.
What it basically boils down to is the following: how can I alternate an image on a ...
1
vote
0answers
36 views
Specify url for google index
When google or another search engine is crawling a page of a website; is there a way for the document to specify the URL that it prefers the search engine to store for the page in it's index. The ...
1
vote
4answers
294 views
Generate PDF of page using alternate/print stylesheet
I want to generate a PDF of a webpage but apply an alternate, print-type stylesheet to it instead of the styles it uses now. Say, for example, I have a button on http://eorailway.co.uk to generate a ...
1
vote
1answer
82 views
RegExp function not working with alternation
string=string.replace(RegExp(filter[a]+" | "+filter[a],"g"),filter[a])
For some reason, this isn't affecting both the filter followed by the space and the filter with a space in front. Assuming the ...
1
vote
7answers
330 views
alternative CSS sheets for IE?
I have a question about CSS coding practices. IE often requires hacks or workarounds to get things looking right, and there are two different ways of doing things:
Put everything in one big CSS ...
0
votes
1answer
19 views
Random sub-sorting records
Given this exemplary relation and data
|_id_____|_type____|_name________|_date_______________|
| 1 | 1 | ajshdf | 2012-02-18 12:35:00
| 2 | 1 | jkhae | 2012-02-18 ...
0
votes
2answers
37 views
How to use alternate characters of keys in perl hashes as keys too?
My code:
use strict;
use warnings;
my $seq = "ATGGT[TGA]G[TA]GC";
print "The sequences is $seq\n";
my %regex = (
AG => "R",
TC => "Y",
GT => "K",
AC => "M",
...
0
votes
1answer
85 views
Alternate multiple columns in an html table with php
How can I output an alternate multiple column like this
<table border="1">
<tr>
<td> userid 1 </td>
</tr>
<tr>
<td> userid ...
0
votes
1answer
634 views
Android: alternate background color in a TableLayout inside a ListView
I'm trying to display a set of data in a Grid style, using a TableLayout inside a ListView. What I want is to display each row with a different color (two colors alternatively). It works well when ...
0
votes
2answers
115 views
A way to print rows in a alternate directions in Java without using 2D arrays..ArrayLists, LinkedLists
for practice purposes, I'm trying to find a way to print rows of numbers in alternate for each row etc..
100 99 98 97 96 95 94 93 92 91
81 82 83 84 85 86 87 88 89 90
80 79 78 77 76 75 74 ...
0
votes
0answers
69 views
alternate way to send port directed message
Is there any way to send port directed message in android other than using data message.The problem with using data message is this my broadcast receiver don't invoke and i didn't find any solution ...
0
votes
2answers
63 views
how do I alternate the float on consecutive database entires?
My Website
As you can see on the above link there are several 'kids', the information for each one is grabbed from a database.
I want to make each alternating image float to the left, so that the ...
0
votes
1answer
289 views
iPhone - Alternate Landscape View issue
I'm having the landscape mode issue and I can not find the way out. Basically, I'm having a tab bar application and in the first tab i have navigation controller. In this navigation controller, first ...
0
votes
3answers
389 views
Updating alternate colors of dynamic/ajax table rows with jquery
Hey, been looking lot but couldn't found=/, apply alternate row colors via jquery on $(document).ready event.
$(document).ready(function(){
//Member Directory Table
$('.MemberDetail table tr:odd ...
0
votes
1answer
1k views
WPF Listview different alternate row colors for 3 diff lists..?
How do i set alternate row colors for WPF Listview.
If i have only 1 list I can set in XAML, but in my case, the alternate row colors need to be changed based on the list.
For example,i have 3 diff ...
0
votes
1answer
905 views
How to setup alternate entry point in Blackberry application?
How to setup alternate entrypoint in Blackberry Application.There will be 2 application
UI Application
Background Application: will run on autostart.
There is a blackberry knowledge center ...
0
votes
3answers
264 views
How to read alternates in EBNF grammars
I have an EBNF grammar that has a few rules with this pattern:
sequence ::=
item
| item extra* sequence
Is the above equivalent to the following?
sequence ::=
item (extra* sequence)*
...
0
votes
1answer
655 views
Listview with alternating resources in Android
I have a ListView and an adapter that sets alternating background colors to the list items overwriting getView Method in my adapter.
I want to go further and I would to set to each row a Resource ...
0
votes
1answer
182 views
Glassfish v2 alternatedocroot - will DAS sync it?
Using
Sun Glassfish Enterprise server v2.1.1
I am using "alternatedocroot" via sun-web.xml for my web application to abstract out static content from actual deploy-able code (EAR/WAR)
What I have is ...
0
votes
0answers
48 views
WM5 device using alternate number when connecting using modem connection
WM5 Symbol MC70 device
I am trying to find out settings for modem connection so to make it try to dial one number first and if it is not successfull try to dial other number, something like ...
-1
votes
4answers
625 views
alternating colors in table in jsp using css [closed]
Possible Duplicates:
How to alternate HTML table row colors using JSP?
Table row - Giving alternate colors
can any one provide basic code for dynamically adding rows in a table with ...