Tagged Questions
Doing something "programmatically" means to do it with a program, as compared to doing it by hand or in a more ad-hoc fashion.
10
votes
5answers
233 views
Programatically Fax from Internet form
I'm new to programming, and my only area of expertise is web design/simple development on platforms like wordpress/expression engine. (Yea, you guys can laugh).
I have a new client who currently ...
7
votes
2answers
1k views
Jquery sortable, move item programatically
I am using JQuery Sortable. I have the HTML setup like so:
<ul id='plan'>
<li class='item'>1</li>
<li class='item'>2</li>
<li class='item'>3</li>
...
7
votes
5answers
891 views
jQuery-ui: How to programatically select selectables
I have a range of items that are selectable. I would like to add a button somewhere that activates a preset selection amongst those. Is there a way I can do that?
What I would like is to tell it to ...
6
votes
4answers
3k views
How to press the Windows button programmatically using C# SendKeys
Basically I want to simulate in code a user clicking on the windows button. I know there is SendKeys which allows me to send key presses to windows if I get a handle to them, but what I can't figure ...
5
votes
2answers
148 views
Programmatically take a screenshot of specific area
Like you can see in my code, I take a screenshot and save it to the photo album.
//for retina displays
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]) {
...
5
votes
3answers
2k views
Read Permissions to a directory in C#
I've noticed if you change the security settings for a particular directory, you can make that folder no longer "browsable" in windows. In particular, changing the "Read" permission for ...
5
votes
1answer
6k views
Export C# reportviewer control programmatically
Does anyone know if you can programmatically save a report shown in a reportviewer control in C#?
When a report is shown there are "Export to..." buttons and I would like to automate the saving to ...
5
votes
7answers
57k views
Call Javascript onchange event by programatically changing textbox value
the problem I'm facing is this:
I have a textbox for a date range along side a calendar control.
When the user selects a date from the calendar, it fills that date into the textbox
When this ...
4
votes
3answers
347 views
Resize NSArray Programmatically
I have been trying to figure out if it is possible to programmatically resize an NSArray, by code similar to this:
NSArray *resize = [NSArray arrayResized:oldarray size:10];
Which would a new ...
4
votes
3answers
9k views
Access system.net settings from app.config programmatically in C#
I am trying to programmatically access a Windows application app.config file. In particular, I am trying to access the "system.net/mailSettings"
The following code
Configuration config = ...
3
votes
1answer
114 views
Create 'SharePoint Solution' programmatically
I found something related here but did not give me a good start
Since recently I do a lot of webPart development I want to automate the none-code part of the process, I want to develop a small ...
3
votes
3answers
234 views
Android - ListView - performItemClick
I'm facing some difficults when I try to use the performItemClick funcion of the ListView.
All I want to do is to perform a click programatically in the first item of the list.
How can I do that? I ...
3
votes
3answers
1k views
Programmatically loading Entity classes with JPA 2.0?
With Hibernate you can load your Entity classes as:
sessionFactory = new AnnotationConfiguration()
.addPackage("test.animals")
.addAnnotatedClass(Flight.class)
...
3
votes
3answers
291 views
Checking if subfolders exist linux
I'm trying to check if a folder has any subfolders without iterating through its children, in Linux. The closest I've found so far is using ftw and stopping at the first subfolder - or using scandir ...
3
votes
3answers
2k views
WCF - how to create programatically custom binding with binary encoding over HTTP(S)
I'd like to convert my current HTTP/HTTPS WCF binding settings to use binary message encoding and I need to do it in code - not in XML configuration. AFAIK it's necessary to create CustomBinding ...
3
votes
1answer
521 views
MVC Model Validation Programmatic Registration support
Today (15th Jan 2010) Scott blogged about the ASP.NET MVC2 model-validation
http://weblogs.asp.net/scottgu/archive/2010/01/15/asp-net-mvc-2-model-validation.aspx
Anyone knows how can someone add ...
3
votes
2answers
2k views
Programatically set WCF timeout in debug mode
I'm using WCF in communciation between a server and client (both written in C#).
In release-mode, the timouts should be set to ~20 seconds, but in debug mode I want to set them to a higher value so ...
3
votes
1answer
1k views
How do I programatically set the SharePoint's site collections Search Center property?
I have a site collection and I want to set the search center value to be the same as another site collection. The site collection is created in code, so I need to be able to set the property after the ...
2
votes
1answer
61 views
What's the best way to programmatically add and remove views and their controllers
I'd love to see a detailed explanation on how to manage views programmatically. I'll provide an overview of how I'm doing it now and would like either comments on how my approach sucks or just an ...
2
votes
1answer
60 views
Mac OSX: folder extension association programmatically
Is it possible to to register a folder extension on Mac to be opened with a specific application (something like .app folders behave in a special way)? If it's possible, then how?
I'm looking for a ...
2
votes
3answers
218 views
How to calculate dp from pixels in android programmatically
I want to calculate dp from px programmatically. How to do it?
I get resolution from:
DisplayMetrics displaymetrics = new DisplayMetrics();
...
2
votes
3answers
115 views
How to get the name of the device printed with adb devices
When I type
adb devices
in the console, then it prints this:
List of devices attached
SH16BV815282 device
my question is how to get programmatically the "SH16BV815282", if it possible at all
I ...
2
votes
2answers
241 views
How do I change the default icon of iPhone application programmatically?
My question is about changing default icon.png content programmatically.
I have free application with Icon (with Lite/Free word inside)
I have In-App purchase inside this app (buy full version)
I ...
2
votes
3answers
84 views
ipad not showing programatically created uitable
I have an ipad app that is not showing a table created programatically.... why, where is the error or what is lacking in my code??
*ViewController.h
#import <UIKit/UIKit.h>
@interface ...
2
votes
2answers
186 views
How can I discover current endpoints of my c# application programatically?
How can I code a c# sample for reading my Client endpoint configurations:
<client>
<endpoint address="http://mycoolserver/FinancialService.svc"
binding="wsHttpBinding" ...
2
votes
2answers
7k views
How to force stop my android application programatically?
I'd like to force stop my android applicataon when I click closeButton.
This is my code.
protected void onCreate(Bundle savedInstanceState) {
this.setContentView(R.layout.layoutxml);
...
2
votes
2answers
615 views
Programmatically format a date in an excel sheet using Office Open Xml SDK
I'm building an Excel xlsx spreadsheet using the office open XML SDK. I can add dates to the sheet by converting them to their "AO" date representation and setting the Cell Value to number. I can't, ...
2
votes
1answer
503 views
Reordering UITableView rows programatically with animation
I very much know how to reorder uitableview rows using "reorder Control" by the user.
By implementing UITableView delegates and datasource methods as it is provided in apple documentation:
...
2
votes
2answers
3k views
Relativelayout programatically in android
I'm having trouble finding exactly the syntax I need to use to set the paramters on child views of a relative layout. I have a root relative layout that I want to set 2 child textviews next to each ...
2
votes
3answers
3k views
How to programatically trigger a mouse left click in C#?
How could I programatically trigger a left-click event on the mouse?
Thanks.
edit: the event is not triggered directly on a button. I'm aiming for the Windows platform.
2
votes
2answers
1k views
Loading user controls programatically into a placeholder (asp.net)
In my .aspx page I have;
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" AspCompat="True" %>
<%@ Register src="Modules/Content.ascx" ...
2
votes
4answers
257 views
Using a version control system as a data backend
I'm involved in a project that, among other things, involves storing edits and changes to a large hierarchical document (HTML-formatted text). We want to include versioning of textual changes and of ...
2
votes
2answers
793 views
Change Firefox title bar programatically (like IE with registry setting)
I need to change the firefox window title like I would do for internet explorer (like this). Is it possible or do I need to somehow install an extension and hack this setting into it?
2
votes
1answer
83 views
Mac Printing : programatically can not set printQuality, mediaType, paperSource, outputBin
I have a Mac application that supports customising field values programatically for Print dialog. However, I could not find any API in Mac (Cocoa/Carbon) to set the values for printQuality ...
2
votes
1answer
130 views
Accept autocorrection after input
My user enter a text in a UITextField then press a UIBarButtonItem to confirm.
If there's a autocorrection suggestion when the user tap the UIBarButtonItem, it is not accepted. How do I accept it ...
2
votes
1answer
479 views
Importing Pantomime for sending email!
I want to send an email from Cocoa in an asynchronous manner. I have downloaded Pantomime source code and compiled it, then got the framework from the build folder. I have added the Pantomime ...
2
votes
1answer
538 views
Programmatically administering custom attributes in ADAM
Has everyone ever programatically created a custom attribute? (At the moment I've just used the Scheme snap-in)
Ideally I want (admin) users to be able to administer an ADAM instance through a web ...
2
votes
0answers
1k views
How can I programatically configure a virtual directory to require SSL using IIS 6?
How can I programatically configure a virtual directory on IIS 6 to require SSL and client certificates from a starting point of having a suitable certificate already in the local certificate store, ...
2
votes
2answers
4k views
How do I programatically turn off show pages in navigation for sharepoint
I am progamatically creating a SharePoint site using
SPWeb spWeb = spSite.AllWebs.Add(...);
What code do I need run to set the spWeb to turn off the "Show pages in navigation" option?
Answer:
...
1
vote
3answers
36 views
Using jQuery to programmatically click an <a> link
I know this question has been asked before, but after a search on the web I can't seem to find a straight forward answer.
the HTML
<a id=myAnchor href=index.php>
the jQuery (Both of these do ...
1
vote
2answers
29 views
How do I upload a file to wordpress programmatically?
I don't want to use Wordpress' built in media uploader.
I have a form (on the frontend) of my site, and I need to allow anyone to upload an image to my uploads folder in wp-content. I've found many ...
1
vote
1answer
45 views
Can not set gravity with setGravity vertically programatically. Is this an android bug or feature?
I have a custom View with four buttons. I created the view in Java because I want to animate the buttons. I want to center the text on the buttons, but I can do this only horizontally (left-right) but ...
1
vote
4answers
53 views
How to programmatically access iptables?
Is there a way we can query iptables programmatically without making use of shell script? I don't have liberty of using shell script to run iptables command and grep output. Is there a native (API) ...
1
vote
2answers
48 views
How to programmatically find location of php.ini file?
Per subject, how do I find location of php.ini file programmatically ?
So far, I am able to use below command to find out if PHP5 has been loaded-
ps x | grep -i apache2 | xargs lsof -p | grep ...
1
vote
2answers
90 views
programatically press tab in webbrowser control C#
I want to press tab key programatically. i used this code
**private void BrowserPage_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
...
1
vote
1answer
33 views
Using 'cp' and preserving the attributes of a directory, but not copying any of it's children
I am making a file sync program. In order to increase the efficiency of the syncs, I have it sync/copy over only the new files/folders from the source. Anyway, when I copy directories into the sync ...
1
vote
0answers
32 views
listbox netbeans does not execute itemstatechanged when selected with code
in netbeans i have a listbox which is populated with names. when i click on a name, the form displays that persons details ( its all under itemstatechanged)
But now when i start the form ...
1
vote
0answers
72 views
Several images on one UIButton
I need some help and advice on using multiple images simultaneously on the same custom UIButton.
Here is what I have:
An array holds the core definitions for a number of buttons.
Depending on a ...
1
vote
1answer
118 views
Is it possible to create shape in android code
I know I can define this in code but is it possible to define this kind of thing in code?
I want to create a shape and the values of the shape(["rectangle" | "oval" | "line" | "ring"]) need to be ...
1
vote
1answer
113 views
How to get the capacity of the battery in code
I am trying to read the capacity of the battery in code, but so far I haven't succeeded. Does anyone know how to read the battery capacity programmatically?
I need a code snippet or some reference ...