Create solutions in SharePoint 2013 with possible to run in SharePoint 2010

  Hi,
      I would like to create WebParts on SharePoint 2013 (in Visual Studio 2012) version but I would like to run them on SP 2010 too. So it would be great to have such compability back one solution under VS 2012. Is it possible to
make this one to not duplicate code for different versions?
  Thanx for any info!
  Regards
  Kamil

Hi,
As Paul said, I suggest you develop your SharePoint project using visual studio 2010 for SharePoint 2010.
If you want to use this project in SharePoint 2013, we need convert it to the SharePoint 2013 project, the following articles for your reference:
Upgrade SharePoint 2010 Visual Studio Solution to SharePoint 2013
http://ranaictiu-technicalblog.blogspot.com/2013/10/upgrade-sharepoint-2010-visual-studio.html
Converting Multiple SharePoint 2010 Projects to SharePoint 2013
http://www.codeproject.com/Articles/522220/Converting-Multiple-SharePoint-Projects-to-Sh
Best Regards
Dennis Guo
TechNet Community Support

Similar Messages

  • Is it possible to create a Event Reciver program as Sandbox solution? - SharePoint 2010

    Dear All,
    I try to create a Event receiver program as SandBox solution in SharePoint 2010. I want to do a list item updation using this event receiver.
    Almost all the internet help & examples seems to be written with Farm solution and I got plenty of
    errors in the code(since the code may be written for farm solutions).
    So is it good idea that I am trying to do Sandbox Event Receiver???? Can any one please advice me
    and if sandbox is feasible can anyone help me with a tutorial( How to create a sandbox event receiver for list item updation).
    Somebody please help me soon.

    Dear All,
    hen I run the project, I got this error
    There were deployment errors? do you want to continue. I pressed No button but
    I cannot see any error list below in visual studio 2010!!! I am not able to
    identify where is the error or rectify those error, somebody please help me soon.
    I try to create one event receiver for list updation. I selected Event Receiver template
    while created new project and added following code for debugging, debugger is not hitting!!!
    please note my code below. Am I missing anything?????
    EventReceiver1.cs
    using Microsoft.SharePoint.Security;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Workflow;
    namespace NewProjEventReceiver.EventReceiver1
        /// <summary>
        /// List Item Events
        /// </summary>
        public class EventReceiver1 : SPItemEventReceiver
            static void Main(string[] args)
           /// <summary>
           /// An item is being added.
           /// </summary>
           public override void ItemAdding(SPItemEventProperties properties)
               base.ItemAdding(properties);
           /// <summary>
           /// An item is being updated
           /// </summary>
           public override void ItemUpdating(SPItemEventProperties properties)
               base.ItemUpdating(properties);
               SPListItem CurrentItem = properties.ListItem;
               String strCustomer = CurrentItem["SampleList"].ToString();
               int startPos = 0;
               int endPos = CurrentItem["SampleList"].ToString().IndexOf(";#");
               int Cust_ID = Convert.ToInt32(strCustomer.Substring(startPos, endPos));
               SPWeb oWeb = properties.Web;
               SPList oList = oWeb.Lists["SampleList"];
               SPListItem Customers = oList.GetItemById(First_ID);
               CurrentItem["Title"] = "One Time";
               oWeb.AllowUnsafeUpdates = true;
               oWeb.Update();
               oWeb.AllowUnsafeUpdates = false;

  • Reg:: Create a New SharePoint 2010 server as the existing SharePoint 2010 Server with Named Instance

    Hi Techys,
    Please give me the better option for the below scenario.
    Scenario::
    I would like to Build a new sharepoint server with recently created MS-Sqlserver2008r2 named instance. and also I want the same data(Features and solutions) which i used in previous SharePoint farm.
    Desc:: We have a SharePoint 2010 farm with SP2. MSSQLSERVER is the default instance.
    now i want create a same SharePoint 2010 farm with MSSQLSERVER2(Named Instance)
    If you need any Information, plz let me know.
    Many Thanks,
    Madhu

    reproducing environments is difficult... lots of settings... the AVAILABILITY of OUT OF THE BOX features can be configured just by running the install and using a key to match editions (std/ent)... but which features are enabled, how they're configured,
    what customizations might be in place... not a simple checklist.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Sync Sharepoint 2013 task on outlook running on Exchange 2010

    Sync SharePoint 2013 task on outlook running on Exchange 2010,Getting error:
    "We weren't able to sync your tasks. This could be because your mailbox is on an Exchange server that isn't supported for syncing tasks. Please contact your administrator for more help."..Please
    help!!
    SharePoint 2010 task list sync with outlook running on exchange 2010 works successfully without any error...But how to do with sharePoint 2013

    Hi Mohit,
    The "Sync to Outlook" button is a new feature in SharePoint 2013 and is different from the "Connect to Outlook" button in SharePoint 2010, and this feature also needs the Exchange Server 2013 installed in your environment, you can read the following article
    for details.
    You can get the "Connect to Outlook" button back (like SP2010) by disabling the "Exchange Task Sync feature" from CA without installing Exchange 2013, the following is extracted from the white paper.
    "How to disable SharePoint Server and Exchange Server integration.
    To disable it, you turn off the Farm Level Exchange Task Sync feature by going to Central Administration -> Manage farm features. This action deletes the timer job and disables the UI integration, bringing back the legacy sync behavior to Outlook. "
    http://support.microsoft.com/kb/2876938
    http://www.microsoft.com/en-us/download/details.aspx?id=38799
    Thanks
    Daniel Yang
    TechNet Community Support

  • Cannot create list in SharePoint 2010 using Client Object Model

    I am trying to utilize SharePoint 2010 Client Object Model to create a List based on a custom template. Here's my code:
    public void MakeList(string title, string listTemplateGUID, int localeIdentifier)
    string message;
    string listUrl;
    List newList;
    Guid template;
    ListCreationInformation listInfo;
    Microsoft.SharePoint.Client.ListCollection lists;
    try
    listUrl = title.Replace(spaceChar, string.Empty);
    template = GetListTemplate((uint)localeIdentifier, listTemplateGUID);
    listInfo = new ListCreationInformation();
    listInfo.Url = listUrl;
    listInfo.Title = title;
    listInfo.Description = string.Empty;
    listInfo.TemplateFeatureId = template;
    listInfo.QuickLaunchOption = QuickLaunchOptions.On;
    clientContext.Load(site);
    clientContext.ExecuteQuery();
    lists = site.Lists;
    clientContext.Load(lists);
    clientContext.ExecuteQuery();
    newList = lists.Add(listInfo);
    clientContext.ExecuteQuery();
    catch (ServerException ex)
    Now, this particular part, newList = lists.Add(listInfo); clientContext.ExecuteQuery();, the one that is supposed to create the actual list, throws an exception:
    Message: Cannot complete this action. Please try again.
    ServerErrorCode: 2130239231
    ServerErrorTypeName: Microsoft.SharePoint.SPException
    Could anyone please help me realize what am I doing wrong? Thanks.

    I've made progress - well, at least to some extent. The previous message related to the "Invalid file name" is not appearing any more. I now realize that it is necessary to specify feature ID, list template kind, as well as custom schema in order
    to order SharePoint 2010 to create the document library. 
    However, there's a new problem which isn't documented on the net almost at all (at least I was unable to find anything): The document library gets created, but I cannot access it. Further inspection showed that the doc lib views are not created. Basically,
    the only accessible doc lib page is the document library settings page. Also, I get the server exception with the message: 
    Server Out Of Memory. There is no memory on the server to run your program. Please contact your administrator with this problem.
    Any idea what is causing this issue? Thanks. 
    Hi Boris
    Borenović,
    I think I found the reason for this notorious "Server Out Of Memory" error.
    (Man, it took 4 hrs of frustrating troubleshooting without any direct hints... very disappointing
    MSFT developers :( ).
    Anyway,
    All the "Form" elements at the bottom need to have SetupPath="pages\form.aspx"
    attribute (by default this attrib is missing when you copy the whole List element from inside the stp's manifest.xml  file).
    Also, just make sure that each "View" element has correct "WebPartZoneID", "SetupPath" and "Url" attribute values otherwise that list/library will
    be created successfully but will fail to load when you try to access it (with the VERY helpful "Cannot complete this action, contact administrator" error). Even if you enable stack trace (or check ULS logs) you will find "An unexpected
    error has been encountered in this Web Part.  Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe." and you will never realize it's because of the
    incorrect attributes ("WebPartZoneID", "SetupPath" or "Url" as mentioned above).
    Come on Microsoft, you can do better than that?
    If the API needs this attrib then why is it missing inside the manifest.xml file when
    an STP file generated in the first place?

  • Creating page in sharepoint 2010

    Hi,
    I need to create a form like Creating an aspx page dynamically with HTML Content and saved to a library in SharePoint 2010,
    Explanation;
    My Form Contains 3 Inputs
    1.Link Name-page must be created with this name.
    2.Paga Name-Title of the page must be created with this name
    3.Content-It can be any content(rich text or a content webpart )
    Once I Submit the form  an aspx page needs to be created and saved to a library along with the content.
    Please Guide....
    Thanks in advance
    Somesh Y

    A custom Site action in Site Workflow would probably be a way of doing it,
    Check this article: http://www.dmcinfo.com/latest-thinking/blog/articletype/articleview/articleid/4327/automatically-create-a-site-using-sharepoint-designer-workflow.aspx

  • Error while creating Mysite in sharepoint 2010 , System error code 0

    Hi I was trying to create Mysite and I got the following error.
    Previously all user able to create MySite this error is coming from 3 days
    My Site creation failure for user XXXX\cwr.SMahindrakar' for site url 'https://XXXXXXXX/personal/cwr_smahindrakar'. The exception was: Microsoft.Office.Server.UserProfiles.PersonalSiteCreateException: A failure was encountered while attempting to create the site. ---> System.ArgumentException: Error during decryption. System error code 0.
    at Microsoft.SharePoint.Administration.SPCredentialManager.DecryptWithApplicationCredentialKey(Byte[] rgbEncryptedPassphrase)
    at Microsoft.SharePoint.Administration.SPPeoplePickerSearchActiveDirectoryDomain.get_Password()
    at Microsoft.SharePoint.Utilities.SPActiveDirectoryDomain..ctor(SPPeoplePickerSearchActiveDirectoryDomain peoplePickerDomain)
    at Microsoft.SharePoint.Utilities.SPUserUtility.GetWindowsPrincipalResolvers(SPWebApplication webApp, String userAccountDirectoryPathRestriction, SPPrincipalResolver bySidResolver)
    at Microsoft.SharePoint.Utilities.SPUserUtility.CreatePrincipalResolvers(SPWebApplication webApp, ICollection`1 urlZones, Nullable`1 currentZone, SPPrincipalResolver bySidResolver, String userAccountDirectoryPathRestriction, Boolean alwaysAddWindowsResolver)
    at Microsoft.SharePoint.Utilities.SPUtility.ResolvePrincipalInternal(SPWeb web, SPWebApplication webApp, Nullable`1 urlZone, String input, SPPrincipalType scopes, SPPrincipalSource sources, SPUserCollection usersContainer, Boolean inputIsEmailOnly, Boolean alwaysAddWindowsResolver)
    at Microsoft.SharePoint.Utilities.SPUtility.ResolvePrincipal(SPWebApplication webApp, Nullable`1 urlZone, String input, SPPrincipalType scopes, SPPrincipalSource sources, Boolean inputIsEmailOnly)
    at Microsoft.SharePoint.Administration.SPSiteCollection.Add(SPContentDatabase database, SPSiteSubscription siteSubscription, String siteUrl, String title, String description, UInt32 nLCID, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, String secondaryContactLogin, String secondaryContactName, String secondaryContactEmail, String quotaTemplate, String sscRootWebUrl, Boolean useHostHeaderAsSiteName)
    at Microsoft.SharePoint.SPSite.SelfServiceCreateSite(String siteUrl, String title, String description, UInt32 nLCID, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, String contactLogin, String contactName, String contactEmail, String quotaTemplate, SPSiteSubscription siteSubscription)
    at Microsoft.Office.Server.UserProfiles.UserProfile.<>c__DisplayClass2.<CreateSite>b__0()
    --- End of inner exception stack trace ---
    at Microsoft.Office.Server.UserProfiles.UserProfile.<>c__DisplayClass2.<CreateSite>b__0()
    at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass4.<RunWithElevatedPrivileges>b__2()
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)
    at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)
    at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated secureCode)
    Error is coming on Prod Env, I have tried diffrent trial and Error method but still I am not able to find root cause.
    Please mark answer , if you think answer is helpful or correct.

    Hi All,
    To resolve these issues I have checked following things, and which all seems no issues
    1)Quota Limit
    2)Database read only mode
    3)Appl pool account access to database
    4)Changed app pool account with farm account
    5)Added app pool account to MySite admin group
    6)Database size limit
    7)Site collection site limit to MySite host
    8)User Profile service is running or not
    9)Self site creation to user
    10)Service application association to MYsite Host
    All above I have tested but it seems no error, still I am getting above Error.
    One more things I want to add is that Central admin  people picker does not recognize users. 
    That can be an issue?
    Please mark answer , if you think answer is helpful or correct.

  • External Web Service call from Sandbox Solution in SharePoint 2010

    Can anyone from this forum can tell me how to call an external web service from Sandbox solution?
    It would of great help as got stuck on it for a long time.
    Note:- Cannot use Silverlight and JQuery to call web service from client side.Cannot use full trust proxy.

    Hi Dibyendu,
    Sorry for delay but fact that we can not call webservice in sand box solution(It's does not support).
    The reason behind of this sand box solution support only full trust code.
    One or more assemblies referenced by the XmlSerializer cannot be called 
      from partially trusted code.
    When you create a reference to a Web service, Microsoft Visual Studio®.NET creates and places one or more objects in your assembly to store the argument data passed to the method(s) in the Web service. These objects are serialized using the XmlSerializer class
    when you invoke one or more of the methods in the Web service. By default, if your assembly is strongly named and resides in the BIN directory, callers with partial trust cannot access objects within that assembly. When you make the call to the Web service
    method, the XmlSerializerdetects that there are partially trusted callers on the callstack (i.e. your assembly) and prevents the serialization from taking place even though the object resides in the same assembly.
    Er.vinay

  • Activate Sandbox solution in SharePoint 2010

    Hello guys,
    I would like to activate the sandbox solution or even to use code in the whole farm. I have a InfoPath Formular with code, but SharePoint doesn't allow me to publish this form.
    How can I do this?
    Best regards
    Matthias

    Hi,
    If you have custom coded InfoPath form which requires full trust, then you have to upload and activate the same in the central administration.
    Refer these links,
    http://technet.microsoft.com/en-us/library/cc262921(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/ms772110(v=office.14).aspx

  • Error while deploying Sandbox Solution in SharePoint 2010 using Visual Studio

    Hi,
    I am creating a custom webpart as a sandbox solution.
    While deploying I am getting an error
    Error occurred in deployment step 'Retract Solution': <nativehr>0x80070005</nativehr><nativestack></nativestack>Access denied.
    I have necessary permissions and part of admin group.
    Please suggest what could be the issue.

    Hello,
    can you check if your account have access to the SharePoint_Config database? if it's still doesn't work, check if the used account is a local administrator of the machine
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.

  • Will a macbook pro 13" late 2013 with IRIS graphics run Wicher 2, Max Payne 3, Bioshock Infinite using OSX?

    I'm looking to upgrade my old macbook (currently have a black macbook from way back when).  I wouldn't mind playing some of the games in the topic title but I'm not sure if they will play on OSX.  It says "no integrated graphics," but that's not in reference to the new IRIS cards.
    I'm thinking of this one with more RAM - http://store.apple.com/us/buy-mac/macbook-pro?product=ME865LL/A&step=config
    Game specs are on steam:  http://store.steampowered.com/app/20920/   http://store.steampowered.com/app/204100/?snr=1_7_15__13    http://store.steampowered.com/app/8870/?snr=1_7_15__13
    What's the concensus?
    Thanks!

    On low settings, yes.
    Although I do not recommend getting any MacBook pro's with Retina. They are known to have a lot of bugs and issues, software and hardware wise. For gaming, just go purchase a PC, or just a laptop for the same price, and it would run the games fine.
    Sony Vaio Pro 13 I believe would be a perfect choice.

  • Saving Files from Word 2010 into SharePoint 2010 document library deployed as a sandbox solution gives "Web page no longer exist" Error 410

    Created a new SharePoint 2010 List Definition project, Sandbox deployment option. List Definition type: Documents Library. When attempting to save into the document library from Microsoft Word 2010 I get "The webpage no longer exists" error in
    the File Save dialog
    If I change the type of the solution to Farm solution it works as expected.
    IISLOGS:
    2013-12-19 10:12:01 127.0.0.1 PROPFIND / - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 35
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 26
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1 - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 30
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1/Lists - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 32
    2013-12-19 10:12:01 127.0.0.1 POST /_vti_bin/shtml.dll/_vti_rpc - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 200 0 0 10
    2013-12-19 10:12:01 127.0.0.1 HEAD /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 0 0 6
    2013-12-19 10:12:01 127.0.0.1 HEAD /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 1 2148074254 2
    2013-12-19 10:12:01 127.0.0.1 HEAD /_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 0#.w|domain\username 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 200 0 0 23
    2013-12-19 10:12:01 127.0.0.1 GET /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 0 0 10
    2013-12-19 10:12:01 127.0.0.1 GET /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 1 2148074254
    2
    2013-12-19 10:12:01 127.0.0.1 GET /_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 0#.w|domain\username 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 410 0 0 34
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1/Lists/ListDefinitionProject1-ListInstance1 - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 36

    Hi,
    According to your post, an error occurred when you used the custom Documents Library(List Definition using sandbox solution).
    Please check whether you have removed <ContentTypeRef/> in the <ContentTypes/> tag of Schema.xml file in your project.
    Here is a sample about list definition deployed as a sandbox solution, you can take a look at:
    http://sharepointbuzzer.com/2010/10/21/list-definition-using-sandbox-in-sharepoint-2010/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Authenticated RSS feeds viewer in Sharepoint 2010

    Hi All,
    I need to create an RSS feed viewer in the sharepoint page from an external site (Service Now) in which authentication is needed. I tried adding the OOTB RSS viewer webpart and found out that in our environment they are not allowing authenticated
    RSS feeds. So there is no point of asking for changing the authentication settings also.
    Could some one let me know if there is any workaround to include the authenticated RSS feeds viewer in the sharepoint environment. Please let me know if we can achieve the same through any CEWP?
    Thanks In Advance
    Jithin

    Hi,
    According to your post, my understanding is that you want to use RSS feeds in SharePoint 2010.
    Please check as the links below:
    http://norpoint.wordpress.com/2012/05/14/the-rss-webpart-does-not-support-authenticated-feeds/
    http://pravahaminfo.blogspot.in/2011/04/implement-rss-feeds-in-sharepoint.html
    We can also try to use Content Query Web Part to achieve it.
    Creating better RSS feeds with SharePoint 2010 Content Query Web Part
    http://blog.mastykarz.nl/creating-rss-feeds-sharepoint-2010-content-query-web-part/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Cannot "Add new Item" in my SharePoint 2010 custom lists

    Hi guys,
                All these days it was working fine and all of sudden now when i click on "Add new item" in the the custom lists which i have created in my SharePoint 2010 and fill in the fields and click "save",
    I am getting an exception...:( 
    Please HELP!!!
    Neo Alpha

    One more thread for the same issue
    http://social.msdn.microsoft.com/Forums/en-US/51f37f3b-18a3-4d6b-b90f-2a4240306bf8/when-update-a-folders-property-it-throw-a-comexception-0x81020089
    hope this will help you
    Senthilrajan Kaliyaperumal

  • Books about Sharepoint 2010

    I'm quite new to Sharepoint 2010, but I need to certify myself in Sharepoint 2010 because I'm going to do a big Sharepoint project at our company. What a good prepartion material for the exams 70-667 and 70-668, because I'm not able to find any Microsoft
    Self Placed Learning Kits about those.
    Certifications: MCSA 2003|MCSE 2003|MCTS(4*)| MCTIP:SA

    Hi Sekhar,
    Professional
    SharePoint 2010 Administration by
    Todd Klindt, Shane Young, and Steve Caravajal
    (Paperback - Jun 21, 2010)
    Microsoft
    SharePoint 2010: Building Solutions for SharePoint 2010 (Books for Professionals by Professionals)
    by Sahil Malik (Paperback - Jun 8, 2010)
    How to
    Do Everything Microsoft SharePoint 2010 by
    Stephen Cawood (Paperback - Jul 26, 2010)
    Beginning
    SharePoint 2010 Development (Wrox Beginning Guides) by
    Steven Fox (Paperback - Jun 8, 2010)
    Microsoft
    SharePoint 2010 Administrator's Companion by
    Bill English, Brian Alderman, and Mark Ferraz
    (Paperback - Sep 3, 2010)
    Microsoft
    SharePoint 2010 Unleashed by
    Michael Noel and Colin Spence
    (Paperback - Oct 18, 2010)
    Coming Soon
    Inside
    Microsoft SharePoint 2010 by
    Ted Pattison, Andrew Connell, and Scot Hillier
    (Paperback - Feb 15, 2011)
    Nothing makes passing the tests easier than experience in the trenches.......
    -Ivan
    Ivan Sanders My LinkedIn Profile,
    My Blog,
    @iasanders.

Maybe you are looking for

  • New to OBIEE 11g

    hi all im new to 11g, been working with 10g for the past 4 years. just finished the install and and everything looks good. open up the admin tool, and open the repository and its asking me for a repository password to coreapplication_OH1406836271 wha

  • Is it possible with the goop toolkit to create an abstract class?

    Here is an example of why I want to do this. You could write a main VI which calls subVIs of this abstract class but passes references of derived classes to the subVIs.

  • Itunes 10- Song List View is just a black screen!!

    I recently updated to itunes 10, initially it was working fine. Today, my computer bugged out while shutting down and I had to hold the power button on it. When it rebooted I scanned for viruses, errors, adware, etc... I have re-downloaded itunes and

  • G5 dead and won't start up at all

    G5 10.5.8 1.6 I usually leave it on 24/7 Shut it down the other night and now it won't start up. Pressed the cuda, checked voltage in battery (3.597v). It has had problems in the past of colored lines on the bottom of the monitor when I put it to sle

  • Comment récupérer un signal fourni par un noeud NI sous Labview?

    Bonjour à tous, Je suis actuellement en DUT Réseaux & Télécommunications, et nous sommes trois sur un projet concernant un réseau de capteurs NI. Notre problème est le suivant : nous souhaitons récupérer un signal (une température par exemple) mesuré