Re: anybody can show a working example of campaign creation for . NET

2010-08-05 Thread axum
this is the one i used for just the campaign creation // Get the CampaignService. CampaignService campaignService = (CampaignService) user.GetService(AdWordsService.v200909.CampaignService); // Create campaign. Campaign campaign = new Campaign(); campaign.name

Re: anybody can show a working example of campaign creation for . NET

2010-08-05 Thread axum
AdWordsUser user = new AdWordsUser(); // Get the CampaignService. CampaignService campaignService = (CampaignService)user.GetService(AdWordsService.v200909.CampaignService); // Get the AdGroupService //=== l

Re: anybody can show a working example of campaign creation for . NET

2010-08-04 Thread AdWords API Advisor
Hi, The client library supports each new version of AdWords API, so if you decide to use the client library, then you can always move to a newer version of the API by downloading the latest version, fix the namespace imports in your program, and fixing the version-specific changes (if any) in your

Re: anybody can show a working example of campaign creation for . NET

2010-08-04 Thread knuzich
clear! At first I wanted to use only services without the client library. but v13 CampaignService had 5 or 6 methods, v200909 only 2 !!! I think that the use of client library is really the only solution of the problem .. at least until the new services version.^)) many thanks for the help On A

Re: anybody can show a working example of campaign creation for . NET

2010-08-04 Thread AdWords API Advisor
Hi knuzich, You can download the latest client library from http://code.google.com/p/google-api-adwords-dotnet/. Open google-api- adwords-dotnet.sln in Visual Studio, edit the values in Examples \App.config, and run the Examples project. Examples project takes command line parameters as versionNam

anybody can show a working example of campaign creation for . NET

2010-08-04 Thread knuzich
anybody can show a working example of sandbox campaign creation for . NET ??? I've tried everything!!! Method, which is shown on page " http://code.google.com/p/adwords-api-dotnet-samples/source/browse/trunk/src/AddCampaign.cs " doesn't work because v13 version is very old version And added