How do I make it so that people can download my widget?

Okay, so I tried the zip thing right? and it worked and it got downloaded, but my computer says: Unable to unarchive "MyWidget'sname.zip" into "Desktop" (Error 1 - Operation not permitted.) Thats what it says. So I thought It was in the wrong format. So, then I just tried uploading it on the server (geocites) just with it's .wdgt tag and then the server said wrong file. Then I said no, your wrong! but it naturally didn't listen to me. Any ideas? Oh and by the way, it does work on mine. The icon on my widget file looks just like the other widgets. Please help!!! (I'll send you a copy..)
PowerMac G5 quad   Mac OS X (10.4.5)   New at developing widgets.

Hello PowerPhill, & welcome to the boards. I think it's great your creating widgets & think that you should chek these sites out!
The first is an App, I'm sure you know abouit Widget maker & may help with your problem?
The second two are places to upload your widgets to ResExcellence & Widget Developer ...on the last site click on "Upload Your Widgets" for both Yahoo & Dashboard.
http://www.widgetfactor.com/
http://www.resexcellence.com/upload/
http://www.widgetdeveloper.com/gallery.php
PS I also found this article I hope this helps
http://developer.apple.com/documentation/AppleApplications/Conceptual/Dashboard_ ProgTopics/Articles/Delivery.html

Similar Messages

  • How do I add text boxes that people can edit font type, size, and color in Adobe Reader

    How do I add text boxes that people can edit font type, size, and color in Adobe Reader? I am using Acrobat Pro XI.

    It is possible. Add your text fields and in their Properties set them to have Rich Text Contents (under Options). This will allow the users to specify all kinds of formatting settings for those fields (by pressing Ctrl+E and using the Properties bar).

  • How do I disable firefox so that i can download a program for a Garmin GPS

    how do i disable firefox so that i can download what i need to register a garmin GPS

    Try the forum for Adobe Acrobat.

  • How on earth can I just make a form that people can sign??

    What I am trying to do is create a contract that people can fill out by simply clicking on text boxes and then typing in their pertaining text then at the bottom there will be a signature box which they should be able to click and then have the option to draw their signature.  No digital id crap, no certificates.  just a simple drawn signature.
    So I started with a word document.  Coverted it to PDF.  I have acrobat 11, I used the form wizard and let adobe find specific fields.  Edited the fields to my likeing to include on signature box and then saved the document.  Took FOREVER to find out I had to go through a special process of saving to allow others to sign.  So I go to File- save as other...-  reader extended pdf...- enable more tools    <-- that allows me to allow them to sign it. 
    Now when I open my document with reader it has the draw your signature greyed out!!! WTH!! I need help to give that option cause this is going to old people and they can't understand the digital signature long process.
    Windows 7-64

    The behavior you're seeing with Reader 11 and an enabled document is normal.
    You say you also tried with a version that's a "regular Save", which I assume is a non-enabled version that has no digital signature fields. In this case you should be able to select any of the options except for "Use a certificate" when using Reader. I just tested Reader 11.0.5 on a Windows machine with a non-enabled form that didn't include any digital signature fields, and it behaved as I expected, allowing me to use a hand-drawn signature. What does this show (in Reader, not Acrobat) when you select: File > Properties > Security
    A screen shot would be nice.
    In case you weren't aware, when a form is e-signed this way, the form fields are flattened when the document is saved, so any forms you receive back from users won't contain form fields, making it difficult to extract the data if you need to.

  • How do I make it so that when I download an app, it doesnt go on my other devices

    Will someone please tell me how to change a setting so that the apps I download on my iPhone don't go on to my other ios devices? Please help!

    See here for Turning Off Automatic Downloads...
    http://support.apple.com/kb/ht4539

  • How do I make a reference that I can assign data to? Or,how do I mime void*

    OK, I'm trying to do something where a class has 20+ variables, and I want to make a small, quick, and easy programming interface for it. There will be an assignment function that takes an integer indicating one of the variables, and an object, and assigns the object to a variable.
    Problem is; it's about 5-10 lines of code to do what I need to do, and depending on the variable; that would make assigning the variables in the case statment a pain in the butt. So what I wanted to do was something like what this c function would do:
    int set(int id, void *var)
    void *p;
    int var_is_arry = 0;
    switch(id)
      case A:
        p = &(this->a);
        break;
      case B:
        p = &(this->b);
        break;
      case C:
        p = &(this->c);
        break;
    /* some code to verify var is of the rigth types, not possible in C, and
    * irrelevant to this example, var. Sets var_is_arra if var is an array of
    * strings
    if(id & 0x10000000)
      if(var_is_array)
        return -1;
      p = malloc(strlen(var));
      strncpy(p, var); 
    else
      /*same idea, but to put it into an array. Turns var into an array of one if
       *it is a string, otherwise copies the two dimensional array. the C code fo
       *this is truely ugly and being omitted.
    }So, I tried this:
    public class test
         public static void main(java.lang.String [] args)
              /*create some arrays of strings*/
              java.lang.String [] foo;
              java.lang.String [] bar;
              java.lang.String [] target;
              /*create a reference*/
              java.lang.ref.WeakReference r;
              /*Initialize our source string*/
              bar = new java.lang.String [] {"a", "b", "c"};
              /*you can first tell this doesn't do what I want because
               *without this line, it will throw an exception
              foo = new java.lang.String [0];
              /* Point our happy little reference to foo*/
              r = new java.lang.ref.WeakReference(foo);
              /* make target modify foo? Guess not...*/
              target = (java.lang.String [])r.get();
              /*clone bar (our source) and put it into target (should be referring to foo)*/
              target = (java.lang.String []) bar.clone();
              /*foo is not printing 3*/
              System.out.printf(((java.lang.Integer) foo.length).toString() + "\n\n");
              /*target is*/
              System.out.printf(((java.lang.Integer) target.length).toString() + "\n\n");
    }but the output is:
    "0
    3
    Any suggestions?

    I know what a real life example is, and yes, in fact it /does/ have a variable named var in it.
    I didn't want to put this in because it's rather long, but ok. Here's the class I'm working on:
    public class cvsup_config
    public class cvsup_config
          * The following are the "option listings" for the various CVS options
          * Variables:
          * String [] options_servers;
          * String [] options_bases;
          * String [] options_prefixes;
          * String [] options_releases;
          * String [] options_tags;
          * String [] options_actions;
          * String [] options_options;
          * String [] options_collections;
          * Each may be appended with "_info" to get information about
          * the options. The information in options_?_info[n] should be
          * about the option in options_?[n]
          * Finally, for each, there is an all-caps version, which
          * is the integer ID for the value
          * Which servers does the app know as options?
         public java.lang.String [] options_servers;
          * The information about each server
         public java.lang.String [] options_servers_info;
          * What cvsup base directories does the app know as options?
         public java.lang.String [] options_bases;
          * information about each base directory
         public java.lang.String [] options_bases_info;
          * What cvsup prefix directories does the app know as options?
         public java.lang.String [] options_prefixes;
          * information about the possible cvsup prefixes
         public java.lang.String [] options_prefixes_info;
          * What cvsup releases does this application know as options
         public java.lang.String [] options_releases;
          * Information on the various types of releases for cvsup
         public java.lang.String [] options_releases_info;
          * What cvsup tags does the application know of as options?
         public java.lang.String [] options_tags;
          * Information on the possible tags
         public java.lang.String [] options_tags_info;
          * What actions does the application know about, that can be done with the cvsup data?
         public java.lang.String [] options_actions;
          * Information on the possible actions
         public java.lang.String [] options_actions_info;
          * What other options does cvsup know of?
         public java.lang.String [] options_options;
          * Information on the options that cvsup knows about;
         public java.lang.String [] options_options_info;
          * What collections does cvsup know of?
         public java.lang.String [] options_collections;
          * Information on the various collections available.
         public java.lang.String [] options_collections_info;
          * The chosen options
          * Which servers are acceptable?
         public java.lang.String [] server_list;
          * What actions may be taken?
         public java.lang.String [] actions;
          * What options are selected?
         public java.lang.String [] options;
          * Which collections will be downloaded/updated?
         public java.lang.String [] collections;
          * What is the currently selected server?
         public java.lang.String server;
          * What is the db base directory?
         public java.lang.String base;
          * What is the ports directory prefix?
         public java.lang.String prefix;
          * What is the release variant desired?
         public java.lang.String release;
          * What is the desired release tag?
         public java.lang.String tag;
          * What is the 'download date' string? Either in the form:
          * 'today' (case insensitive)
          * "yyyy.mm.dd.hh.mm.ss"
          * "yy.mm.dd.hh.mm.ss"
         public java.lang.String date;
          * The constants
          * 0x10000000 set: array of string
          * 0x10000000 unset: string
          * 0x01000000 set: options
          * 0x01000000 unset: set value
          * Constant var ID
         public static final int OPTIONS_SERVERS = 0x11000000;
          * Constant var ID
         public static final int OPTIONS_SERVERS_INFO = 0x11000001;
          * Constant var ID
         public static final int OPTIONS_BASES = 0x11000002;
          * Constant var ID
         public static final int OPTIONS_BASES_INFO = 0x11000003;
          * Constant var ID
         public static final int OPTIONS_PREFIXES = 0x11000004;
          * Constant var ID
         public static final int OPTIONS_PREFIXES_INFO = 0x11000005;
          * Constant var ID
         public static final int OPTIONS_RELEASES = 0x11000006;
          * Constant var ID
         public static final int OPTIONS_RELEASES_INFO = 0x11000007;
          * Constant var ID
         public static final int OPTIONS_TAGS = 0x11000008;
          * Constant var ID
         public static final int OPTIONS_TAGS_INFO = 0x11000009;
          * Constant var ID
         public static final int OPTIONS_ACTIONS = 0x1100000A;
          * Constant var ID
         public static final int OPTIONS_ACTIONS_INFO = 0x1100000B;
          * Constant var ID
         public static final int OPTIONS_OPTIONS = 0x1100000C;
          * Constant var ID
         public static final int OPTIONS_OPTIONS_INFO = 0x1100000D;
          * Constant var ID
         public static final int OPTIONS_COLLECTIONS = 0x1100000E;
          * Constant var ID
         public static final int OPTIONS_COLLECTIONS_INFO = 0x1100000F;
          * Constant var ID
         public static final int SERVER_LIST = 0x10000000;
          * Constant var ID
         public static final int ACTIONS = 0x10000001;
          * Constant var ID
         public static final int OPTIONS = 0x10000002;
          * Constant var ID
         public static final int COLLECTIONS = 0x10000003;
          * Constant var ID
         public static final int SERVER = 0x00000000;
          * Constant var ID
         public static final int BASE = 0x00000001;
          * Constant var ID
         public static final int PREFIX = 0x00000002;
          * Constant var ID
         public static final int RELEASE = 0x00000003;
          * Constant var ID
         public static final int TAG = 0x00000004;
          * Constant var ID
         public static final int DATE = 0x00000005;
          * potential speed increases, only one function call...
          * though getClass may be <i>as</i> fast, it is not
          * going to be <i>faster</i>
         public static final java.lang.Object STRINGTYPE = "".getClass();
          * potential speed increases, only one function call...
          * though getClass may be <i>as</i> fast, it is not
          * going to be <i>faster</i>
         public static final java.lang.Object STRINGARRTYPE = (new java.lang.String [] {"", ""}).getClass();
          * The default constructor, it will simply create a blank object.
         public cvsup_config()
               * Initialize each of the options pairs to blank
              this.options_servers = new java.lang.String [] {};
              this.options_servers_info = new java.lang.String [] {};
              this.options_bases = new java.lang.String [] {};
              this.options_bases_info = new java.lang.String [] {};
              this.options_prefixes = new java.lang.String [] {};
              this.options_prefixes_info = new java.lang.String [] {};
              this.options_releases = new java.lang.String [] {};
              this.options_releases_info = new java.lang.String [] {};
              this.options_tags = new java.lang.String [] {};
              this.options_tags_info = new java.lang.String [] {};
              this.options_actions = new java.lang.String [] {};
              this.options_actions_info = new java.lang.String [] {};
              this.options_options = new java.lang.String [] {};
              this.options_options_info = new java.lang.String [] {};
              this.options_collections = new java.lang.String [] {};
              this.options_collections_info = new java.lang.String [] {};
               * initialize the selected options to blank
              this.server_list = new java.lang.String [] {};
              this.server = new java.lang.String();
              this.base = new java.lang.String();
              this.prefix = new java.lang.String();
              this.release = new java.lang.String();
              this.tag = new java.lang.String();
              this.actions = new java.lang.String [] {};
              this.options = new java.lang.String [] {};
              this.collections = new java.lang.String [] {};
          * This sets one of the variables values based on a configuration string given
          * @param id
          *           The identifier of the variable, the same as the variable name
          * @param var
          *           The value of the variable
          * @return
          *            0:     Success
          *           -1:     Variable not valid
          *           -2: Value not valid
         public int set(int id, java.lang.Object var)
              /*Is this an array or sting variable? */
              boolean array = false;
              /*this references the config object of interest*/
              java.lang.ref.SoftReference target;
              /*step one: set the target to "recieve" the value*/
              switch(id)
                   case OPTIONS_SERVERS:
                        target = new java.lang.ref.SoftReference(this.options_servers);
                        break;
                   case OPTIONS_SERVERS_INFO:
                        target = new java.lang.ref.SoftReference(this.options_servers_info);
                        break;
                   case OPTIONS_BASES:
                        target = new java.lang.ref.SoftReference(this.options_bases);
                        break;
                   case OPTIONS_BASES_INFO:
                        target = new java.lang.ref.SoftReference(this.options_bases_info);
                        break;
                   case OPTIONS_PREFIXES:
                        target = new java.lang.ref.SoftReference(this.options_prefixes);
                        break;
                   case OPTIONS_PREFIXES_INFO:
                        target = new java.lang.ref.SoftReference(this.options_prefixes_info);
                        break;
                   case OPTIONS_RELEASES:
                        target = new java.lang.ref.SoftReference(this.options_releases);
                        break;
                   case OPTIONS_RELEASES_INFO:
                        target = new java.lang.ref.SoftReference(this.options_releases_info);
                        break;
                   case OPTIONS_TAGS:
                        target = new java.lang.ref.SoftReference(this.options_tags);
                        break;
                   case OPTIONS_TAGS_INFO:
                        target = new java.lang.ref.SoftReference(this.options_tags_info);
                        break;
                   case OPTIONS_ACTIONS:
                        target = new java.lang.ref.SoftReference(this.options_actions);
                        break;
                   case OPTIONS_ACTIONS_INFO:
                        target = new java.lang.ref.SoftReference(this.options_actions_info);
                        break;
                   case OPTIONS_OPTIONS:
                        target = new java.lang.ref.SoftReference(this.options_options);
                        break;
                   case OPTIONS_OPTIONS_INFO:
                        target = new java.lang.ref.SoftReference(this.options_options_info);
                        break;
                   case OPTIONS_COLLECTIONS:
                        target = new java.lang.ref.SoftReference(this.options_collections);
                        break;
                   case OPTIONS_COLLECTIONS_INFO:
                        target = new java.lang.ref.SoftReference(this.options_collections_info);
                        break;
                   case SERVER_LIST:
                        target = new java.lang.ref.SoftReference(this.server_list);
                        break;
                   case ACTIONS:
                        target = new java.lang.ref.SoftReference(this.actions);
                        break;
                   case OPTIONS:
                        target = new java.lang.ref.SoftReference(this.options);
                        break;
                   case COLLECTIONS:
                        target = new java.lang.ref.SoftReference(this.collections);
                        break;
                   case SERVER:
                        target = new java.lang.ref.SoftReference(this.server);
                        break;
                   case BASE:
                        target = new java.lang.ref.SoftReference(this.base);
                        break;
                   case PREFIX:
                        target = new java.lang.ref.SoftReference(this.prefix);
                        break;
                   case RELEASE:
                        target = new java.lang.ref.SoftReference(this.release);
                        break;
                   case TAG:
                        target = new java.lang.ref.SoftReference(this.tag);
                        break;
                   case DATE:
                        target = new java.lang.ref.SoftReference(this.date);
                        break;
                   default:
                        return -1;
              /*now, determine if it is an array or a string, the quick way*/
              if((id & 0x10000000) != 0) /*is it an array?*/
                   array = true;
              /*verify that the types are ok*/
              /*string is always valid*/
              if(!var.getClass().equals(cvsup_config.STRINGTYPE))
                   /*if array is not set, and the value is not an array of strings...*/
                   if(!(array & var.getClass().equals(this.STRINGARRTYPE)))
                                  return -2;
              /*now... assign the value*/
              /*we assign our array slike this*/
              if(array)
                   java.lang.String [] targ;
                   targ = (java.lang.String [])target.get();
                   /*value isn't array, but we want one*/
                   if(var.getClass().equals(cvsup_config.STRINGTYPE))
                        targ = new java.lang.String [] {(java.lang.String)var};
                   else /*it's an array*/
                        targ = ((java.lang.String []) var).clone();
              else
                   java.lang.String targ;
                   targ = (java.lang.String)target.get();
                   targ = (java.lang.String) var;
              return 0;
          * for testing purposes
          * @param args
          * for testing purposes
         public static void main(java.lang.String [] args)
              cvsup_config t = new cvsup_config();
              java.lang.String [] sar;
              sar = new java.lang.String [] {"a", "b", "c"};
              t.set(cvsup_config.OPTIONS_SERVERS, (java.lang.Object)sar);
              int i = 0;
              System.out.printf(((java.lang.Integer)t.options_servers.length).toString() + "\n\n");
              for(i = 0; i < t.options_servers.length; i++)
                   System.out.printf("  " + t.options_servers[i] + "\n");
    }

  • How do i make the pdf file so that people can fill in the blanks

    i converted a file i had into adobe but i need to know how to make it so that people can fill in the blanks only on the form without being able to change it

    If you have Acrobat, you add form fields. In Acrobat 11, you'd select: Tools > Forms > Edit
    When you do this it will ask if you want Acrobat to detect form fields for you. This is known as the Form Wizard and it will attempt to divine where it thinks form fields should go based on the content. It work fairly well sometimes, but you will often want to make refinements such as changing the types of fields, the field names, certain field properties, etc.
    You decline this automatic field generation and create them all yourself using the various tools available in form editing mode.
    More information is available in Acrobat's help and numerous tutorials at http://www.AcrobatUsers.com

  • In Mail, how do I make it so that email replies to me are sent to the email address from which I sent my original message?

    I have two IMAP accounts set up in Mail, one work and one personal. The personal account also receives emails from a third account (but I have that set up through gmail's forwarding, not Mail). I am sending emails from my work account and replies are coming to this third account, which I don't want to happen.
    How do I make it so that replies to me are sent to the email address from which I sent my original message?
    Thanks for your help!

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • How do I make it so that the one computer that has the main itunes account on it be used on other computers, when it comes to backing up phones and not deleting data off of phone that isnt on that computer itunes becasse its all on the one main computer

    how do I make it so that the one computer that has the main itunes account on it be used on other computers, when it comes to backing up phones and not deleting data off of phone that isnt on that computer itunes becasse its all on the one main computer. Baiscally the problem is that one comuter and one account has always been sued for eey persons itunes. Now if we want to be able to backup and use itunes on our own computers fro our iphones and such, how will all he data that is on our phones not be deleted once its plugged into a new computer? Also, is theere a way to get all the stuff on thw current itunes onto each computer, via differtn account name?

    option discovered in preferences. Really this and any feature that moves deletes or edits a users data should as far as possible be OFF BY DEFAULT. It shouldn't by default and without the users specific say do this dangerous and unnecessary thing without even letting the user know what it's doing!!! And then cause me a few hours (as i'm new to mac) searching for the option so as to switch it off. If i hadn't noticed the status cage declaring that it was copying files then i might never have twigged that this insane thing was occurring. And if i hadn't of noticed i would have been left maintaining the contents of the folder i copied the files to, the folder which as far as i was informed and so believed was also the location of the music files i was playing. How does Apple justify this 'genius' piece of software non-design? Surely it will hurt no one if this was off by default for new users - overall at least i dare say it would cause a lot less distress in the future for the unsuspecting public at large. Thanks for the support.

  • How do I set up a conference call that people can call into via phone?

    Hi, I need to do the following things:
    find some kind of provider that will let me register a toll free number to use with Connect
    set up this provider in my Connect account
    make a meeting where people can call the toll free number to join the conference
    Could someone walk me through this step by step, like you would to a 2nd grader who was trying to set all of this up for the first time? Thank you.

    1. There are more providers of teleconferencing than is reasonable to list here. You can do some searching on the Internet and find some or you can start with those who fully integrate with Connect. Those that fully integrate with Connect are MeetingOne, Intercall, Arkadin and Premiere Global. You can use any SIP enable provider though (I'd be shocked if you could find one that isn't SIP to be honest).
    2. If dealing with one of the providers that fully integrate, they should be able to walk you through the process, it's pretty simple. If dealing with another provider, follow these instructions: https://www.connectusers.com/tutorials/2012/10/universal_voice_setup/index.php
    3. Browse to the desired folder in the Meeting library of Connect. Click the New Meeting button and go through the wizard for creating a new room. At the end of step 1 of the wizard you will have 3 audio options. Choose the middle option and select the desired phone bridge that is associated with your account. The meeting should then prompt you to connect to the audio bridge every time you start a meeting.

  • I cannot figure out how to set my apple id to use: itunes (two of accounts), apps store and Itunes store. How do I make one password that will be recognixed by all these devices?

    I cannot figure out how to set my apple id to use: itunes (two of accounts), apps store and itunes store. How do I make one password that will be recognized by all these devices? My apple id is constantly not working.

    Hi Lrwill,
    If the apps that are on your son's iPad were purchased under his Dad's Apple ID, then signing your Apple ID onto the iPad will not help you with updating those apps.
    Also, if the iPad was sync'd with his Dad's iTunes library, then hooking it up to your computer/iTunes library, will require you to reset the iPad, and everything that was loaded under the other Library and Apple ID will be wiped out.
    Can you provide a little more info about what was set up under which Apple ID and what iTunes library the iPad was sync'd with?
    Cheers,
    GB

  • How do I make it so that itunes doesn't start automatically when windows starts?

    How do I make it so that itunes doesn't start automatically when windows starts?

    http://support.apple.com/kb/HT5449
    http://support.apple.com/kb/PH11443
    http://support.apple.com/kb/PH11428

  • How do you make it so that the ipod will play all the different artists featured in an album when you click that album to play?

    How do you make it so that the ipod will play all the different artists featured in an album when you click that album to play? At the moment, each artist in the album is being separated and I can't play them together. For example, to play the Halo 2 Soundtrack, Hoobastank, Breaking Benjamin, Nile Rodgers, etc. are some of the artists featured. However, in the Albums category, they are each separate choices. I want to play them all together, but can't. Is there a way to do that?

    It sounds like the album metadata is incorrect, or differs from song to song in iTunes.  Albums with various artists will play properly assuming all the songs are tagged with the same identical album name, as well as the track number.  For the Halo 2 Soundtrack, metadata should look like this:
    Song: <Song Title>
    Artist: <Song Artist>
    Album: Halo 2, Vol. 1 (Original Soundtrack)
    Genre: Soundtrack
    I had a similar problem with my imported Cowboy Bebop albums and the mixture of artists/album names.  Once I adjusted the metadata, all of them play in the correct order just by selecting the Album from the available list or in Coverflow.

  • How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?

    How would I make it so that when "deleting" an image I can make it so that the delete key does it or a button I put on the application?
    I want it so that I can use either a button on the designer window or the delete key. I know how to do the or part but the trouble I'm having is coding the button in.
    if (LastImageClicked != null && (e.Key == Key.Delete || Button))
    This is the code that I have in the format I'm looking for I just don't know how to do it. Thanks for your help!

    There are a number of things which are unclear about your question.
    I'll tell you one way to approach this though.
    Handle Window.PreviewKeyDown.
    <Window
    Window.PreviewKeyDown="Mainwindow_PreviewKeyDown"
    Code behind
    private void Mainwindow_PreviewKeyDown(object sender, KeyEventArgs e)
    if (e.Key == Key.Delete)
    File.Delete("p001.jpg");
    I don't know enough about what you mean by LastImageClicked  but you need some way of knowing which path you are going to delete.
    Then you might well have a problem if it's showing in an image control.
    You will need to copy the picture off disk into a new bitmapimage object.
    If you just do
    <Image Source="p001.jpg"
    Then that image will grab the file and you won't be able to delete it - you'll  get an error.
    In my experimental code p001.jpg is set as content copy always so it ends up next to the exe in the bin when the solution compiles.
    You would probably want a full path to a file there.
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • How do i make a photo that i have stored in iPhotos and make it my desktop picture

    I am brand new to Apple, track pads, etc., so please be kind when you answer this question !  How do I make a picture that is stored on the computer in the photos and make it my desktop full size picture to look at instead of the outerspace picture that comes loaded on the computer.
    Thank you for all your help!!  I have a desktop full size mac computer with the new Lion software.

    It doesn't have Desktop as one of the options in the Share   it shows Order Prints,  Mobile Me Gallery, Flickr,Facebook, and Email as the options, now what  !

Maybe you are looking for