Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by xarzu

  1. xarzu

    How do I establish an open connection to an open web browser in C#?

    How do I establish an open connection to an open web browser in C#? In a Microsoft C# program using a Visual Studio Code I am using the following namespaces: After I get a string variable, "url", assigned with a URL of a website page, I use the following commands which successfully opens a...
  2. xarzu

    How do I connect my existing Visual Studio 2022 project to an existing github repository?

    I set up a github repository to match the project I am working on in Visual Studio 2022. I did something wrong and only the project file exists. I followed a tutorial. But the tutorial was disappointing and the instruction was to drag the content of my project and I suppose I only uploaded the...
  3. xarzu

    How do I set up a new computer to run an executable I have built with Microsoft Visual Studio?

    How do I set up a new computer to run an executable I have built with Microsoft Visual Studio? It has been a pain. First we found out that .Net had to be installed. Now I have learned that it is expecting to have all the namespace DLLs on the system. There has got to be a better way of...
  4. xarzu

    What is the proper way to declare a Microsoft class to use in my code. The quick and dirty way I am doing it here, I know, is not correct

    What is the proper way to declare a Microsoft class to use in my code. The quick and dirty way I am doing it here, I know, is not correct > Microsoft SharePoint.Client.List newList = null; I think it is something like this > Microsoft.SharePoint.Client.List newList = new...
  5. xarzu

    How is remote debugging allowed on Microsoft SQL Management studio?

    That seems like a good suggestion. Thank you. I will let you know what happens.
  6. xarzu

    How is remote debugging allowed on Microsoft SQL Management studio?

    This is working with Sql Server version 2008 R2 Here are the other versions of software that might be helpful: How is remote debugging allowed on Microsoft SQL Management studio? This question might be misunderstood. I am not sitting at the computer where Microsoft SQL Management studio...
  7. xarzu

    How do I produce the relationship diagram in Microsoft Sql Server?

    How do I produce the relationship diagram in Microsoft Sql Server? Here is a visual of what I am talking about here: https://sdamzavas.net/imgbaza/baza4/927535738599.files/image002.png
  8. xarzu

    with what I hope to be a parameter for a date/time variable. The business requirement is that I pa

    SELECT convert (date, DATEADD (DAY, -1 , SYSDATETIME())) as rundate
  9. xarzu

    with what I hope to be a parameter for a date/time variable. The business requirement is that I pa

    I am setting a data-driven subscription in SSRS with what I hope to be a parameter for a date/time variable. The business requirement is that I pass a Parmenter to the report that needs to be set to yesterday's date from when the subscribed email alert is sent. This is a query I am using in a...
  10. xarzu

    In SSRS 2008, how are parameters passed down to the DatSet Query... or can they?

    In SSRS 2008, how are parameters passed down to the DatSet Query... or can they? I have a simple question. I think this is pretty straight-forward. If necessary, I can include screen shots of what I mean. Here is the basic format of the report. I have a SSRS report made on Visual Studio...
  11. xarzu

    Windows 10 Update on a USB

    Windows 10 Update on a USB I got locked in one of those update loops. You know what I mean, probably. My Windows 10 would start an automatic update, then fail, and then reset itself to a previous version. This would happen all of the time. I eventually decided to back everything up on an...
  12. xarzu

    project settings in SSRS deployment

    What are the project settings in SSRS deployment and what do they mean and refer to? I have successfully created my first SSRS project in Visual Studio. The deployment process requires setting up the TargetServerURL and the TargetServer Version. These are the only two items that I know are...
  13. xarzu

    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;"; and "User...
  14. xarzu

    How do I generate a dbml file?

    How do I generate a dbml file? In a Visual Studio file, A project contains a DBML file that, when opened, shows a very cool representation graphical of a database and all the interconnections between the tables. I want that for another project for documentation purposes. The database already...
  15. xarzu

    How can I tell the difference between source and published .NET code?

    How can I tell the difference between source and published .NET code? I am looking at some inherited code that I have not touched in about a year. The original designer had me first publish locally before uploading the published code to the internet server. Now I am looking a number of backed...

Part and Inventory Search

Back
Top