The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
44 views

C# FormWindowState.Normal not to steal focus

I have a Windows Form Application that will go to system tray when it is minimized. When I received a message to pop-up my application it will call ShowWindowFromTray() function. I do not want to ...
0
votes
1answer
35 views

How to resume application after unlock

NativeApplication.nativeApplication.addEventListener(Event.ACTIVATE, handleAppActivate); private function handleAppActivate(e:Event):void { _active = true; if (_starling) _starling.start(); ...
0
votes
1answer
70 views

Total Newbie. Google Maps API v3 Turn Markers On Below a certain Zoom Level

I am super green and need some help for a project. With my limited knowledge of html and javascript, I was able to make a google map with a number of locations. Here is my code (forgive me if it is ...
0
votes
1answer
49 views

Durandal activate function call several times

The following code cause two calls in the activate function of the taginfos viewmodel, WHY ? Thanxs $(oTag).fancybox({ 'overlayShow' : true, 'width' : 800, 'height' ...
-1
votes
1answer
63 views

All Controls Click event on form

Is there a simple way to Activate the form when any controls in the form is clicked like datagirdview, panel, menustrip, button, textbox, label, etc.... it happens that my project can show many ...
1
vote
2answers
152 views

can't merge cells in VBA 2007 worksheet notactive

i'm trying to create a button that makes an automatic work arrangement according to a date and year i give him. it creates a new sheet with the name that in the string - year Sub Create_Arran_Click() ...
0
votes
0answers
87 views

Activating different workbook from the WinForm Control in Excel AddIn (C#)

In C# Excel AddIn with WinForms (Excel Interop), I have a combobox for switching workbooks that are present in the Excel session. Changing selected value of combobox triggers event, that activates ...
0
votes
0answers
18 views

Wordpress Multisite activate_plugins Capability

I installed wordpress 3.5 and setup for multisite. I created a new site. I found that the new user created is an Administrator of the new site but current_user_can('activate_plugins') returns false. ...
1
vote
1answer
73 views

Maven : different result by different profile activate method?

I have been using maven for about two years, but I don't think I understand profiles in maven exactly, especially when I encounter the following problem. I have a maven project with three modules, ...
2
votes
3answers
256 views

how to activate virtualenv?

newbee here so please be gentle have been thro search and tried various alternatives without success spent several days on it now - driving me mad running on red hat linus with python 2.5.2 began ...
1
vote
2answers
43 views

Function activates whenever images load

This is related to my previous question where the HTML is located: Grouping siblings into a div I found it hard to explain what I was attempting to accomplish so I drew up a quick wireframe ...
0
votes
1answer
47 views

What is the best way to make another app active in Cocoa?

I have an app that generates key commands in another app. I used to do it in Applescript studio but I have rewritten in Obj-C. Now I can't figure out how to make the other active in the foreground so ...
-1
votes
1answer
115 views

How to enable an application, disabled due to deactivated account? [closed]

My Facebook account happened to be deactivated during my vacation and I was unable to reactivate in within 14 days. The big problem is that the application associated with this account now has been ...
0
votes
0answers
36 views

viewactivate not called when using viewnavigator

In a flex / air mobile application I am using a in which I push views. The views never fire their activate event fired though. The creationcomplete event is fired every time I push a view in the ...
0
votes
1answer
310 views

Activating an Application in Applescript with the Application as a Variable

I'm trying to write a script that logs the current app, switches to another app, does some task, and comes back to the original app. This is what I have set currentApp to my getCurrentApp() activate ...
1
vote
1answer
56 views

How to activate UINavigationController and switch between them

I built my own TabBarController based on UIViewController and UIButtons. I prepared my viewControllers with UINavigationController(s). How can I activate these views, how can I switch between them ...
-2
votes
2answers
490 views

How to enable and disable links in php

I'm trying to make an if statement to enable and disable user account in href link but I want the link display Disable if the Query return active = 1 and enable if the query return 0. Please help. ...
0
votes
3answers
259 views

Activate and deactivate a preference

I need an example-tutorial how to activate and deactivate an element in preference activity. For example in the picture below when the Wi-Fi check box is unselected I can not touch the Network ...
0
votes
1answer
29 views

Activate Domain

I have added my domain 'onemastercontrol.com' . Followed all the links provided. CNAME is proper - ghs.google.com. Edit TXT record. But my status in still 'Activate Domain' I have domain registered ...
1
vote
2answers
90 views

Use of OR in activate framework queries

Querying 'AND' sounds simple on activate framework, the ',' makes the 'AND' job transactional { val personList2 = allWhere[NaturalPerson](_.name :== "Test", _.motherName :== "Mother") } I'm ...
0
votes
2answers
72 views

Count queries with Activate framework?

Is there any simple way make count queries with Activate? What I'm doing today is something like this: transactional { allWhere[NaturalPerson].size } However, I'm not sure if this is the ...
0
votes
1answer
49 views

Why isActive doesn't work with keybinder?

After Why wxframe isn't raised from a function called with global gtk binder? i hit another weird behaviour.. Could anyone give me a solution (hint also would be good :) ) for this..? import wx, ...
0
votes
0answers
268 views

How can I keep two windows activated at the same time?

My question is simple: On Windows, how can I keep focused or activated two windows at the same time ? ? (normally, only one window is activated on the screen, the one where you navigate or click on ) ...
0
votes
0answers
63 views

Unity- I dont see the Activate Trigger component in my components list

Im taking unity classes on digital-tutors. On one video, the mentor had a series of components on his components list, including the Activate Trigger component. I dont have this! I have different ...
0
votes
1answer
44 views

view controller may not respond to 'activatetab'

everything works fine but I can't find anything about two warnings I am receiving. here is one of them. - (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item { NSLog(@"didSelectItem: ...
0
votes
1answer
134 views

Reactivate a terminated Lync conversation with the Lync API

Using the Lync API with UI Suppression Mode enabled, is it possible to reactivate a one-on-one conversation that has been terminated? In my app, currently, if a user tries to send a message when the ...
0
votes
2answers
191 views

Need to activate a plugin for a wordpress site through the php files

I was going to update the ecommerce plugin (Shopp) on my wordpress site and it asked me to deactivate it. once I did that I lost the entire site. I am trying to activate the plugin through the php ...
17
votes
2answers
1k views

how to accept bluetooth received file in android application?

I would like to implement an application to receive a file from a Bluetooth device. Before receiving, a notification will be raised to accept an incoming file request. From there, i would like to ...
0
votes
1answer
78 views

Launch browser intent without plugin support

I'm writting an app that launches some custom URLs. Sometimes I want to have Flash support and somtimes not. In my opinion, the best way to do this is changing the share_pref "plugin_state" of the ...
3
votes
2answers
341 views

WP7 application crashes when being frequently activated / deactivated

I noticed that, if in WP7 application I press Start key then quickly Back key to return to the app, and very quickly repeat these steps many times, the application ends up being crashed (it exits ...
0
votes
3answers
202 views

How to activate a component to utilize within another application Android?

Recently, I go through the below point but I am unable to understand, how would,we activate the component to utilize within another application.I knew the process of giving package name and class name ...
1
vote
3answers
2k views

How can I activate an Excel add-in from the command line in Windows 7?

Currently I'm writting VB functions and save them as an Excel addin .xlam file. I want to have a .bat script so as to quickly deploy those addins. Currently, to activate my .xlam addins, I have to ...
2
votes
2answers
274 views

How do I activate/select/give focus to a listbox control in vb6?

So let's say I have a listbox called lstFruits, that contains some words in there. Now let's say I have a string strString which contains "lstFruits" (the name of the listbox). So strString = ...
0
votes
1answer
357 views

Activate an Excel ComAddin from C# code

In fact, I have a C# application that is runned. When it's launched, it runs an excel instance and save it to a variable : excelApp = new Excel.Application(); Then I cycle through each of the excel's ...
0
votes
1answer
1k views

Issue with virtualenv - cannot activate

I created a virtualenv around my project, but when I try to activate it I cannot. It might just be syntax or folder location, but I am stumped right now. You can see below, I create the virtualenv ...
0
votes
1answer
620 views

How to activate a tab in javascript with an anchor

I want to activate, in a same page, a tab (all tabs are a ID as tab1, tab2, tab3...) when I click on a # url...For exemple, activate the tab3 when I click on a link like href="#tab3". I think it's ...
0
votes
2answers
130 views

How do I activite a button to switch to another layout upon clicking?

This seems to be a simple function but I have read and reviewed countless tutorials and tried multiple times to get this to work and I am still unsuccessful. I have the opening xml page titled "main" ...
1
vote
1answer
171 views

A way to create a hoverIntent type delay effect with CSS3?

So when I quickly move my mouse over an object, it wont fire it's animation, not until the user hold their mouse over that object for a specified number of ms. I don't believe this can be done with ...
2
votes
1answer
479 views

jQuery cluetip activation

How make activate cluetip on event ready or onload? The clueTip plugin allows you to easily show a fancy tooltip when the user's mouse hovers over (or, optionally, clicks on) any element you ...
3
votes
1answer
699 views

How do I fire a mouse click on a C# MenuStrip when a form become activated/focused? [duplicate]

Possible Duplicate: Click lost on focusing form If a form with a MenuStrip is not the window that has focus and you click on the MenuStrip, it uses that first click to make the window ...
4
votes
3answers
1k views

Bringing mainwindow to front after splash-screen shuts down

Hello I have run into a problem with a custom wpf splash-screen implementation. The problem is that after the loading is finished and the MainWindow should be shown, it sometimes is not brought to ...
2
votes
1answer
1k views

Active a Overlay jquery from a JS function instead a selector

right now I have working this jquery overlay good when a link is clicked, but I want to change it to activate the overlay when I call some kind of JS funtion like activateOverlay(). Example of the ...
0
votes
1answer
179 views

Activate a second wordpress-installation on a domain

I have installed wordpress on a domain and I'm gonna add a second language so I've also installed another wordpress in a subdirectory. Now it's located in: mysite.com/en/wordpress but i need it to ...
1
vote
1answer
1k views

Re-activating Windows xp after virtualization [closed]

I converted my desktop with Vmware vcenter converter and then with Paragon Go virtual; both processes went smooth. I am running the VM's with Vmware Player but when i start the computer it askes me to ...
3
votes
2answers
692 views

How to get back the focus to my application automatically

I am setting up a simple 'boot menu' for my app, where the (experienced) user can check or uncheck various run options. The boot menu is a simple borderless form shown modally and with Quit button ...
0
votes
1answer
666 views

Programmatically activate a node in Infragistics XamDataTree

Hello to all Infragistics' developers, I'm using Infragistics NetAdvantage for Win Client 2010 Vol. 3. I made a WPF User Control that shows some nested items using a XamDataTree control. Tree nodes ...
8
votes
3answers
1k views

How to use window focus messages for a Delphi on-screen keyboard form

I need a built-in on screen numeric keypad in my Application. For various reasons I cannot use the TMS Software or other commercial component offerings. I'm very happy with a button-based solution ...
4
votes
3answers
2k views

How to create a delphi form containing multiple 'child' forms that can be moved/sized and show activated

I've created a form that hosts one or more 'child' forms. In my edit mode, each child form shows its border and caption bar allowing it to be moved and sized (a bit like the old MDI app). Out of my ...
0
votes
3answers
957 views

Auto activate an item on select in a ListView

Is it possible that in a ListView whenever an Item has been selected (e.g mouse 1 left click or Key down or key up, left right) that item gets activated (Like when you hit enter or double click!). ...
0
votes
1answer
175 views

db4o activatablelist vs wpf observablecollection

I'm currently creating a program with a db4o back-end. The front-end is WPF. Now I'm having a small problem because the db4o activatablelist is blocking the observablecollection from WPF. I can't ...

1 2