Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
10k views

Right align Facebook like button

I am able to put a Facebook like button on my website, but how do I make it to be right-aligned within the div/iframe it is in? I tried applying various CSS properties, but I could not get anything ...
9
votes
8answers
9k views

Protect flash video from download/right protect

Is it possible to protect flv files from download? I'd like to protect my files from download but I don't have the money for a streaming server which I think provides some sort of protection. The ...
4
votes
3answers
512 views

jQuery - .css(“right”, posVar); does not work

The Main objective here is to make an instand "jump" to the right. Like I said - I dont want to use .animate, because it makes a little "flashing" effect - because it is not instant. I think .css will ...
4
votes
5answers
107 views

Which table exactly is the “left” table and “right” table in a JOIN statement (SQL)?

What makes a given table the left table? Is it that the table is indicated in the "From" part of the query? Or, is it the left table because it is on the left hand side of the = operator? Are the ...
4
votes
2answers
2k views

WPF Ribbon ApplicationMenu Alignment on the Right?

When going through a tutorial, the 'ribbon.ApplicationhMenu' always comes up on the left hand of the screen, rather than the right, as it does in Office 2007, Paint (on Windows 7), and WordPad (on ...
3
votes
2answers
881 views

Putting an icon at the right end of a WPF expander control

Hi I am attempting to put a green tick icon at the right end of a WPF Expander control when a checkbox is set. My code currently is: <Expander x:Name="ImageExpander"> ...
3
votes
1answer
604 views

Relative Performance in SQLServer of Substring vs a Right-Left combo

This is a performance based question, not a "I don't understand" or "best practice" question. I have a varchar field in a SQLServer database that is guaranteed to be longer than 7 chars. I need to ...
3
votes
1answer
254 views

configure the left and right mac 'command' keys differently?

I'm wandering if I can set the right mac 'command' to act like the ctrl key, but keep the default functionality of the left 'command' key. Thanks.
2
votes
1answer
83 views

Right side border gradient only with the newer webkit gradient syntax, also which browsers support this, and how to do it in those as well?

Any other questions relating to this either have answers giving the OLD webkit syntax, not the new syntax, or they don't explain how to apply the border-gradient to ONLY one side. Which browsers ...
2
votes
4answers
214 views

Can I ask an Either whether it is Left (or Right)?

I know I can usually just pattern match, but sometimes I would find these functions useful: isLeft = either (const True) (const False) isRight = either (const False) (const True) Is there ...
2
votes
1answer
231 views

Python Right Click Menu Using PyGTK

So I'm still fairly new to Python, and have been learning for a couple months, but one thing I'm trying to figure out is say you have a basic window... #!/usr/bin/env python import sys, os import ...
2
votes
2answers
283 views

Stacking two DIVs with float: right

Hihi, I am trying to create a slide down menu using DIV, but hit a problem that I can't really figure out how to overcome. Let's take a look at the code below: <!DOCTYPE html PUBLIC "-//W3C//DTD ...
2
votes
1answer
392 views

Howto create css columns that incl. a scrollable middle column and floating left and right columns

I'm creating a webpage where I need a content column in the center of the page (including a fixed width) and two non-scrollable (fixed) columns at the left and the right side of that content column ...
2
votes
4answers
2k views

Start Process with administrator right in C#

I have to start a command line program with System.Diagnostics.Process.Start() and run it as Administrator. This action will also be run by a Scheduled Task every day.
1
vote
1answer
51 views

TextView inside a TableRow does not display text, properly, in Android

I'm writing a simple Android application that needs some text which should be written from right to left. So I used a TableRow as follows: <?xml version="1.0" encoding="utf-8"?> ...
1
vote
3answers
73 views

Select box not floating right

I'm trying to create a basic title bar div that contains an h1 and a select list. I want the select list to be on the far right of the div, but floating it right is not working. Does anyone have any ...
1
vote
3answers
208 views

Align a rating bar to right

I'm trying to add a Ratingbar to a listview-row that cotains an image and text. My problem is that when I add the ratingbar I can't get it to align to right. It either fill the available area or get ...
1
vote
2answers
107 views

CSS: “right” property refuse to apply?

This is driving me crazy! I have two divs, right after the body tag. They are both absolute positioned and sized. They both have the same "left" property, but i later declare the "right" property for ...
1
vote
2answers
127 views

MySQL distinct and left, right

I have a table with day column like this: 2011-04-28, 2011-04-29 ... day count name surname 2011-04-28 8 titi tutu 2011-04-28 12 tutu toto 2011-04-27 2 tutu toto ...
1
vote
1answer
277 views

Handle left right trackball swipe in blackberry

How do I write code to handle event that are fired when the track ball in a black berry app is swiped left and right?
1
vote
3answers
102 views

Right shift operator

I spent several hours today hunting for a bug until I found something I don't understand. This is the code I've been working with: unsigned long k,l,m; k = 1000; l = 33; m = k>>l; It gives ...
1
vote
1answer
359 views

In SeekBar a maximal value cannot be selected

in my layout xml I have a SeekBar like this: <SeekBar android:id="@+id/nbackPrefSeekBar" android:layout_height="wrap_content" ...
1
vote
1answer
439 views

Div always on top

i want a always visible div on the right of my page. I called it "#sidebar". Its floated right on the body of my page. The problem is when the page is not maximized or in some little monitors the ...
1
vote
4answers
1k views

hint and textview with right gravity and a singleline

I've opened a bug but i was wondering if anyone encountered this issue and knows a workaround. If you define a text view with a hint inside it, give it right gravity (android:gravity="right") then if ...
1
vote
2answers
262 views

android orientation change vertical to right

My app changes orientation when I move from vertical to the left. But does not when I move from vertical to right?
1
vote
2answers
174 views

How do I get my text to be direction from right to left without using a p tag?

I have a dynamically appearing div on a page. I would like to be able to hide the div with a button at the top right corner of the div. One way I have found to do this is to use a p tag, like so: ...
0
votes
2answers
29 views

Divs to next to each other

See this link: http://clients.noxxie.nl/spelletjesportal/ I have trie'd everything but how can I put the 3 boxes (totally white) next to each other? Would help me allot!
0
votes
5answers
46 views

How should I optimize this mysql query?

I have this query, but it takes too long, approximately 30 seconds via NaviCat. How can it be optimized if it's possible? SELECT DISTINCT c.clientid, c.name, c.email, c.region FROM clients c RIGHT ...
0
votes
3answers
46 views

Javascript code to press CTRL+TAB?

since there's no way of moving to the next tab using javascript, is there a code which presses CTRL + Tab so it'd move to the next tab?. Thanks in advance.
0
votes
4answers
54 views

Why doesn't TABLE obey my RIGHT css style?

I have the following code and was expecting TABLE will shrink with browser window. But it doesn't. Why? <body> <table style="position:fixed; left:50px; right:50px; bottom:50px; ...
0
votes
0answers
60 views

ckeditor, trying to simulate left and right arrow keys

I'm developing an ios app that uses ckeditor and it's basically a word processing app. I'm trying to simulate the left and right arrow keys that ipad keyboard doesn't have. the left key works ...
0
votes
1answer
136 views

Float CSS ul navigation right without re-order

I am using this jquery navigation: http://css-tricks.com/5582-jquery-magicline-navigation/ I would like to have the navigation float to the right, without reordering ( eg. home, contact becomes ...
0
votes
1answer
63 views

Clear only one of multiple floated items

I have a layout where there are two items floated right and another item floated left. In between I want to have a div that clears only one the second of the right floated item. E.g. I have a layout ...
0
votes
5answers
517 views

C++ code for right triangle using WHILE loop

I need to print this triangle: * ** *** **** ***** ****** ******* ******** using a FOR and WHILE loop. I need help, I have already figured out the for loop version I just have to convert it to ...
0
votes
1answer
101 views

Running a batch script by right clicking any file

The idea is to right click any file and then select "backup" in a drop down that just copies the file and adds a date time to the end of its name, then possibly moves that copy to another drive. I ...
0
votes
1answer
122 views

Google Visualization API — Putting Y Axis on Right Side?

Using: http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html#Loading There isn't any options to put the y axis on the right side of the chart? For reals?! :P Anyone know how to ...
0
votes
0answers
89 views

Flickering JPopUpMenu on right click in Java

Im running an application at a low FPS so i cant constantly edit and draw objects. The program runs on a JPanel which runs at 10 FPS. I would like to be able to right click objects to edit them, but ...
0
votes
1answer
32 views

Right Click PopupMenus in Java

im trying to get right click menus to come up when they control right click in a JPanel. I researched a bit and was able to develop the code, but for some reason the isPopUpTrigger returns false, any ...
0
votes
0answers
84 views

how can we align a div “right” according to their masked parent?

How to align an inside div as right if we have applied to its parent a smaller width and overflow:hidden ? here is my code: <div id="sitemap" align="right"> <div id="sitemapUp" ...
0
votes
3answers
15 views

How to extract the following using SQL Server

Example: Front Office Manager 0105212000 Only need 10521200, so I am dropping the first and last characters. Before: 0105212000 After: 10521200 Here's what I came up with so far. SELECT ...
0
votes
1answer
115 views

Make admin restrictions to dll file inside system32/wow64 folders

Is it possible to catch the access to a dll file inside system32 and force the user to gain administrative rights in order to let the program continue using this dll ? Or just remove the Users group ...
0
votes
1answer
239 views

Custom Listfield doesn't draw correctly

I added a custom listfield component using BSimpleTable which I got from here : http://javaandjava.blogspot.com/2010/02/simple-table-component-for-blackberry.html Unfortunately the component doesn't ...
0
votes
1answer
2k views

Problems with TextView align right in android

I would like to ask how to change the layout to get TextView with ID rowType set to absolute right position. Currently I have set gravity to right, but current setting align in to right of the ...
0
votes
1answer
88 views

Tkinter window in bottom right corner

Is it possible to display a Python Tkinter window in the bottom right hand corner of the screen? If so, how?
0
votes
1answer
577 views

Jquery vertical tabs - tabs on right

I know how to make vertical tabs with jQuery. What I don't know how to do is make the tabs vertical and aligned to the right side. I don't really know much about the core of jQuery, all I know are a ...
0
votes
1answer
467 views

Convert INF(Installation Instructions)to EXE Installer

I have an INF file in which I have to right click to install the files - So I wanted to convert it into a EXE Installer which has a Progress Bar !!! So I just need all the files in ONE EXE file so ...
0
votes
4answers
684 views

How to align <td> with digits inside to the right, jQuery

i have a table(s) with different dynamic-generated content inside. How can i do that all with only numbers inside will have text-align to the right? Well, i know how to add css to some element, the ...
0
votes
1answer
110 views

WCF Service: Application Crash

I have a massive problem: I have a WPF application that makes a WcF service call. That call functions well if the user is an administrative user. It crashes simply without a chance to catch an ...
0
votes
1answer
75 views

top left and top right button

I want to know How to create top left button and top right button element on a single row using css or jquery. Please kindly provide details step by step. Thanks MHB
0
votes
4answers
5k views

get last 5 character vb.net

i want to get the last 5 digits/strings from a strings of words. eg: "I will be going to school in 2011!" i am using visual studio.net 2008 and using vb.net. i will like to get "2011!" note, my ...

1 2