1
vote
2answers
79 views
How can I programmatically delete a line from a word document using c#?
I have some code to find and replace fields in a word document with values from a dataset.
Word.Document oWordDoc = new Word.Document();
foreach (Word.Field mergeField in oWordDoc.Fields)
{
…
0
votes
0answers
17 views
Change WPF Assembly Icon from Code
Is there a way to change a WPF assembly icon from code? I'm not referring to the window icon, but to the icon that appears on the .exe file.
0
votes
0answers
49 views
IPhone Configuration : is it possible to configure APN programmatically?
Hello everybody,
in my iPhone app, I would like to switch from an APN (Access Point Name) to another without using a configuration profile. Does Apple allow a dynamic change of APN ?
Do you have any …
1
vote
7answers
115 views
Programmatically darken a Hex colour
What's the easiest way to programmatically darken a hex colour? Without using any built-in functions. The language is irrelevant, it can just be pseudo-code if you want.
Thanks.
0
votes
2answers
67 views
programmatically login to OS X
Hi,
I am trying to create a program which will receive user credentials from a remote machine (where the user will be working), and forward these credentials to the login window of OS X. I know it …
1
vote
2answers
62 views
UIImageView drifting on viewDidLoad
I am programmatically adding a UIImageView and a UILabel to multiple screens in a program I'm working on. As such, I've written a UIViewController that contains the code to load up the UIImageView …
0
votes
2answers
102 views
Programmatically Adding UIButtons: Works in Simulator but not on Phone
I am attempting to programmatically add buttons to my screen while looping through an array. The code I've posted below works just fine in the simulator (and executes without error on the phone), …
0
votes
1answer
21 views
Uniform way to print office documents programatically
Using Microsoft interOp objects, there is a way to programmatically print word or Excel document.
Is there any simpler and uniform way to programatically print all types of documents (.txt, .doc, …
0
votes
2answers
94 views
Silverlight - how to programmatically select items in a data bound ListBox?
Hi all,
I have a ListBox (AvailableDevicesListBox), which is populated using data-binding in Silverlight 3. The binding is to a collection of objects of type DeviceDTO. It is set up to allow …
1
vote
3answers
105 views
How to programmatically build a visual studio solution ?
I would like to compile a solution by passing the solution file path (.sln file) and the build mode (debug, release).
I do not want to call a command line process like devenv.exe or msbuild.exe, …
0
votes
1answer
48 views
how to convert programatically powerpoint to xml and back
I need to convert powerpoint file to a text based file such as xml o html programatically and do some proccesses in it and again convert the textbased file top powerpoint. I prefer to do it with java.
…
0
votes
2answers
40 views
Is there a programmatic interface to MYOB data files?
All I want to do is figure out what the date range of the data is. At present I have to open the file in MYOB, convert it to the v18.5 format, check it for consistency, and then run a report so that I …
0
votes
1answer
118 views
Create WCF client programmatically…
Hello all, I have a website with a Silverlight-enabled WCF service. The service works fine, and I can browse to the WSDL page in the browser with no problems.
Now, I am trying to create a client in …
0
votes
1answer
91 views
iPhone + add controls dynamically
Hello,
I want to add UILabel controls to my application dynamically from code (programmatically), please help me
0
votes
0answers
79 views
Silverlight Programmatic Next TabStop
When a TabItem gains focus, I want to intelligently assign Focus to controls inside of it. Basically I just need to hit the Tab key upon the TabItem's GotFocus event. But I can't find any way to do …
