Search results for query: *

  • Users: complete
  • Content: Threads
  • Order by date
  1. complete

    How do I create a "Card" column type in a Microsoft List?

    I really can use your help on this. I have decided as part of my efforts to solve a different problem to make a copy of a Microsoft List to a work platform that is not shared as a dashboard and shared area for my company. I am creating a duplicate List from another List that is the production...
  2. complete

    Trying to access a Microsoft List programmatically using C#

    I am trying to access a Microsoft List programmatically using C#. It is not going very well just yet. I am using .Net Foundation instead of .Net Core because I read that the Microsoft.Sharepoint.Client namespace is not available with .Net Core. I should say at the beginning that I am trying...
  3. complete

    Why do some C# applications have an app.config file and others do not?

    Why do some C# applications have an app.config file and others do not? Both of these solutions were initialized as Visual C# Windows Form Applications.
  4. complete

    Question Process VS Program -- which is best for this task?

    I am looking to start a new project and I am wondering if it can be some sort of C# program or if it has to be something else. I want the program to be kicked off when Outlook receives a new email. Can it be a program or does it have to be some sort of process. Please advise.
  5. complete

    Question Web.Config issues.

    I have a Web Site I am trying to debug and explore. It is used already. It is already in a workable state on the computers of my peers in my development group. I just want to step through the code in debug mode. To do this, according to a peer I work with, I need to start the web site locally...
  6. complete

    Question What are the settings I need to have in order to run debug in Visual Studio for a program set up in the IIS?

    What are the settings I need to have in order to run debug in Visual Studio for a program set up in the IIS? I have a solution in Microsoft Visual Studio which successfully builds a web solution. This is project is in use and has had other developers work on it. So I can safely conclude that...
  7. complete

    How do I use a outlook email group name as determining who someone is?

    How do I use a outlook email group name in C# as determining who someone is? I have been tasked at using a username / email address in a C# program. Here are the steps that are involved. A user uses the program that is part of a web based system somehow the code (html, I suppose) determines who...
  8. complete

    What is the format of a SQLConnection connection string?

    What is the format of a SQLConnection connection string that is passed in the constructor method? I have run a search engine search online and all I could find so far is examples like: "Data Source=(local);Initial Catalog=AdventureWorks; Integrated Security=SSPI;"; or "User...
  9. complete

    What is the proper way to add a DLL project to a solution?

    What is the proper way to add a DLL project to a solution? I have a solution with a project (ASP.NET with C#) that uses a DLL. The app crashes inside the DLL. Fortunately, the DLL was written in-house and I have the source code for the DLL. My question is this. What are the steps...
  10. complete

    How does one define IOleServiceProvider in a WPF application?

    How does one define IOleServiceProvider in a C# WPF application? I was told that it was automatically recogized if I downloaded and installed the visual studio SDK. Is there some extra step I am missing? http://i67.photobucket.com/albums/h292/Athono/programming/12-9-2012.png IOleServiceProvider...
  11. complete

    How do you programmatically expand a url link to its true location?

    How do you programmatically expand a url link to its true location? Do you know about tinyurl.com and baidu.com? Baidu.com is a search engine that tries to discourage people from using their web site to make metasearch engines by hiding their links in a way that is a lot like how tinyurl.com...
  12. complete

    How do you programatically open a file in to append?

    How do you programatically open a file in c# to append? I tried searching online for an example and so far I have not found anything. There is System.IO.StreamWriter and there is System.IO.StreamReader but there is no StreamAppend. Is there some way to use StreamWriter without overwritting the...
  13. complete

    I have issues with the WebBrowser class

    I have issues with the C# WebBrowser class I have a C# WPF application which uses a WebBrowser class. I have overwritten the LoadComplete method. The question I have is this. This method is supposed to be triggered when the class has completed a load, but , when I put a breakpoint on this...
  14. complete

    How do I expose the LoadCompleted method in the WebBrowser class in WPF?

    How do I expose the LoadCompleted method in the WebBrowser class in WPF C#? I am trying to write a C# program in wpf that retrieves the content of a web page. The first thing I tried was to try the WebRequest and WebResponse classes. This did not provide the actual displayed content...
  15. complete

    WebRequest and WebResponse has issues

    WebRequest and WebResponse has issues I wrote a C# program that uses WebRequest and WebResponse to perform a simple web crawler. I discovered something about web sites. Web browsers such as IE and FireFox offer the capacity to view the HTML source code. But it seems that html code that is...
Back
Top Bottom