i am making my own toobar in firfox .can any one tell me how to add double chevron so that if window resizes then toolbar content can be seen by clicking this double chevron
Hi I'd like to inquire on how i can load a WPF Xaml into code so that I can change the values of the attributes of some XAML elements and output it by creating another XAML files. This is so that I can output the same file with values dynamically input by the user.
the XamlReader.Load() method cannot be used; it will throw an exception (because they are unable to recognise Window as the root element). I'm using VS2013 and C#.
Does the Visual Studio 2008 debugger implicitly cast all smaller data types to int? I have a function with the following signature:
public int DoSomething(sbyte value) { ... }
When pass in -127 and I look at the value argument the Visual Studio debugger (e.g. Watch window) shows me that it has the value 0xFFFFFF81. This is correct except for the fact that sbyte is only 8 bits wide; I would expect the debugger to show me that it is 0x81.
i want to know what is the hierarchy we have in xcode
first we have to get window and from that i have to understand completely
if i use the class as property of another like this
//child inherits the parents
@interface child:parent
{
//
parent *parentobject;
child *child;
}
then what is the difference b/w the class behaviour while using the as property for another class then what is contrast between the inheritance and property
I have a large auditing stored procedure that prints values and runs some SELECT statements. When running within SQL Management Studio we have the use select to display "Results to Text" so all of the SQL results and print statement display in one place.
Now I need to have some C# code also call this auditing procedure at the end of the process and basically store all data that would be in the "Results to Text" window into a .txt file.
How can this be done?
I already this something
Here is the original code:
<script type='text/javascript'>
function delete_user( id ){
var answer = confirm('Are you sure?');
//if user clicked ok
if ( answer ){
//redirect to url with action as delete and id to the record to be deleted
window.location = 'delete.php?id=' + id;
}
}
</script>
How do I remove the old javascript confirm dialog box and replace it with bootstrap?
Would anyone know if it's possible/easy to strip down Eclipse or Netbeans to its bare core (project tree + code window) and run it as an applet in the browser? How-to hints appreciated.
PS: it's for a simple online IDE
Why does only the third method work?
$('#jqtest').live('load', function() {$(this).html('hi');}); //1
$('#jqtest').load(function() {$(this).html('hi');}); //2
$(window).load(function() {$('#jqtest').html('hi');}); //3
<div id="jqtest">kldjfglkj</div>
I have a form on my website.
When this form is filled out, it is then validated by a javascript validation function.
At the bottom of this function I have this piece of code:
window.location="../index.html";
This wont work on Chrome, but does work in Firefox.
My Q is, how can I make this simple redirect work on all (most) browsers?
Thanks
I have a page that scrolls through images, some taller than the others. When a tall image loads it auto-creates a scrollbar in the browser window, causing a width jerk. Is there a way to load a scroll bar regardless of if it is needed, and when a tall image apears it activates itself accordingly, then deactivates its self accordingly when the image changes to a shorter image?
Thank you!
Hi, I am opening a new popup window on click of an URL in my page.
My question over here is Can i pass whole structure to the new page ?
If thats not possible is there any simple method to do that ?
i did a quick topic look and did not find something similar.
my query is how do i prevent a child window appearing on the windows taskbar when it is shown?
Hello.
I noticed that in the FontDialog window, some fonts are missing, specifically Fixedsys. I would like that font to be used in a rich text box for my application. Is there any way I could use it?
Hi all,
I have a login form sitting in an iframe to $_POST the username/pwd to the parent window. But it seems the $_POST data is not being sent. I need this as the form logic sits in a Codeigniter controller and CI will also handle the loggedin view.
regards
What is the registry change to tell Visual Studio to always position the current document in the window to the left.
The default implementation is such that if you have 10 documents open and you are editing the 5th one it's tab will be the 5th tab in the group. With the registry change when you click on the tab for the 5th document it becomes the 1st tab.
I'm writing an VS 2008 add-in to synchronize Setup project Version with startup project assembly version. It works fine.
But I was wondering if it was possible to call add-in from the Prebuild Event of my setup project.
It works fine by command line window, but I didn't find any syntax to make it work in prebuildEvent. Is Someone has an idea ?
Thanks
hi,
how can I fix this problem on Internet Explorer 7:
If I resize the browser window you'll see that the letters of the last tag on the right (in the header) are displayed in vertical one above each other.
This happen only in IE, and not in other browser (you can better see the bug by visiting the website: http://www.sanstitre.ch/drupal/portfolio
How can I ask IE 7 to consider the word as block, and move it to next line instead of listing the letters in vertical ?
thanks
I have a window with its own H and V scrolling. I'm handling the event like this:
case WM_VSCROLL:
SetScrollPos(hWnd, SB_VERT, (int)HIWORD(wParam), TRUE);
break;
all I want is for the position of the scroll bar to stay once I release my mouse but what it's doing is just going back to the top after. What am I doing wrong?
Thanks
How do I use the back and forward browser buttons to navigate my javascript/jQuery web application? I know I can do window.location.href = 'this_url#placeholder' and then perform the appropriate action. But when I do that, the browser scrolls to the element with that placeholder id (or to the top if there wasn't one). How do I get the browser to not scroll anywhere? I've seen this on other sites like facebook, what's the appropriate mechanism for this?
I am using the asp.net with c# and using the update pannel as well as flash control i am getting the error sometime not all time and no page navigate after then plz help me out
following is the massange on the pop up window:-
"Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0"
Please Help me out sence may on the demo time the application may carsh
I'm using Masonry and Embedly plugin to display embedded content, I've put together an example in
jsfiddle.net/anir/pBtbb/3/
It appears the Masonry plugin loads first and it causes the overlapping problem (they only show correctly when you resize the result window) I've read that I could use callback functions or retrigger Masonry once embedly has finished rendering content, but I don't know how to do it. Can you help me? Is there any other solution to fix this?
I just created a menu with Command="ApplicationCommands.Copy" and I thought I had to handle the Executed event of the binding, and add a binding but I just don't need to.
Now I'm confused!
Where is the implementation of this command? How can it automatically copy a text selected in any of the textboxes I have in my window?
thanks!
Hi,
I want to create a custom template so that once selected, it will gray out the Location input box in the New Project window. Does anyone know how to do this?
Thanks much in advance
In carbon/cocoa, is it possible to send something like performKeyEquivalent to the current key window? I want to send a key event to whatever application the user has active.
Thanks!