User Profile

Collapse

Profile Sidebar

Collapse
xarzu
xarzu
Last Activity: Dec 27 '24, 07:29 AM
Joined: Apr 3 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • 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:

    Code:
    using OpenQA.Selenium ;
    using OpenQA.Selenium .Chrome;
    using OpenQA.Selenium .Support.UI;
    After I get a string variable, "url", assigned with a URL of a website page, I use the following commands which successfully opens a browser...
    See more | Go to post

  • I am having an issue with GMAIL SMTP in a C# program

    I want to use C# do to a necessary mass emailing of hundreds of receiving email addresses. I have a gmail account and I believe my message will be better received if it comes from my personal gmail account instead of from one of my website's email accounts. But if I do not resolve this issue, I might resort to trying something else.

    A youtube tutorial for setting up a C# program for sending GMail messages has instructed me to first set...
    See more | Go to post

  • what is the equivalent project file for a Java project?

    What is the equivalent project file for a Java project? For example, a C# project file is denoted by the delimiter of .csproj. So what would it be for a Java project? Is it dependent on what IDE I am using for Java?

    I did some search online about this and it seems to me that the answer to this question is dependent on the IDE. From memory, it seems to me, that all I have to do is drop the JAVA files into an IDE and then, somehow,...
    See more | Go to post

  • xarzu
    started a topic What are Good Things to Know in a C# Interview?

    What are Good Things to Know in a C# Interview?

    What are Good Things to Know in a C# Interview?

    Off the top of my head, I have come up with this list:
    • SOLID mythodology.
    • Dependency Injection
    • Levels of Try, Catch, throw, and finally statements and how they work
    • The tenants of Object Oriented Programming such as polymorphism, enacpsulation, etc.
    • Unit Testing (are interfaces used somehow)
    • The difference between an abstract class and interface
    • garbage collection
    ...
    See more | Go to post

  • How do I add file copying functionality to my .csproj file?

    This is using C# coded using Microsoft Visual Studio 2019 Professional

    I have an XML file used as a configuration in my program that I am coding. The executable reads and writes to the XML file. So I would naturally like to have an automatic process where the XML file is moved from where it resides among of the source to where the compiled executable will be built. I imagine the moving of the xml file could be done during the pre-build...
    See more | Go to post

  • xarzu
    started a topic How do I set a system-wide _ifdef?

    How do I set a system-wide _ifdef?

    How do I set a system-wide _ifdef?

    This is using Microsoft Visual Stuedio version 2019 with C#.

    If I want to add specialized code to a project shared by multiple software developers that is designed for my selfish tests and evaluation, how do I manage a # definition inside the C# code?

    I imagine some soft of solution varable that is deined in either the project file or the solution file that I do not merge...
    See more | Go to post

  • xarzu
    started a topic GIT push not working after merge.

    GIT push not working after merge.

    I have cloned a repository to my local computer off of a network. Then I was using Microsoft Visual Studio version 2019. After I made modifications to the file I have been working on, I successfully completed the following git commads:

    git add
    git status
    git commit
    git push

    After some time, I decided to make a new folder locally, clone the current repository in this new folder and then compare the...
    See more | Go to post

  • In a C# solution, how do I add an .EXE project to a solution of DLL project's?

    In a C# solution, how do I add an .EXE project to a solution of DLL project's?

    This is using Microsoft Visual Studio Professional

    I have been handed a solution file which contains three projects. But all three projects generate DLL files. It is kind of unique because I have uncovered that they contain XAML files. So there is the opportunity to use the dll's to display WPF style UI as long as I properly create a new...
    See more | Go to post

  • How to use Nuget assembly as files with visual studio community

    I am starting a new coding job with a new client.
    The problem I am having is that a lot of issues with namespaces that can not be found or maybe missing directives or an assembly reference. This, I think, is a common thing. So I am wondering where I can download a free DLL from Microsoft that will do the trick and get me to compile my code. The class the code is using that the compiler does not like is "GeoPoint".
    A quick...
    See more | Go to post

  • xarzu
    replied to Using GIT to get remote code
    I double checked my network connection and tried again.

    This time, I was prompted to give a password but all of my attempts failed. So, can it be that I just don't have the permissions? Could it be that I don't have network access at all?
    See more | Go to post

    Leave a comment:


  • xarzu
    started a topic Using GIT to get remote code

    Using GIT to get remote code

    I do not know from the online tutorial if I am properly establishing a connection with a git repository that is on a network.

    All I have learned from a tutorial is how to set up a local repository, but getting data off of a network repository is knowledge I have yet to stumble upon or learn about and I wanted to save time by asking some online help forums.

    I have just started using git after not using it for a while....
    See more | Go to post

  • It is a SQL Server Agent which will run jobs. It is found at the bottom of the MS SQL Server Management Studio.
    See more | Go to post

    Leave a comment:


  • Where is the SQL Server Database Trigger Wizard or Dialog Box?

    Where is the SQL Server Database Trigger Wizard or Dialog Box?

    This question is about SQL Server

    In the past, I have created a stored procedure that was run on a timely basis by (if I remember correctly) a database trigger. As I recall, there was a wizard (dialog box with "NEXT" buttons) that I used to set things up to have the stored procedure run automatically. That was some time ago. Now when I search for...
    See more | Go to post

  • Putting breakpoints in an ASP project in Visual Studio 2019

    This is on a Windows 10 computer. I have successfully completed setting up IIS and system settings for running a web page written in Classic ASP. Attaching it as a process after opening up the folder location of the default.asp and code did not work.

    But I had success with this option:


    And since I have already set things up in my ISS it appears as an option to debug:



    iis:...
    See more | Go to post

  • How do I attach a process to an web page running ASP?

    This is on a Windows 10 computer. I have successfully completed setting up IIS and system settings for running a web page written in Classic ASP. I can launch it from my IIS manager and it comes up in my default browser.

    iis:
    • Enable Client-side debugging: true
    • Enable Server-side debugging: true
    • Send errors to browser: true


    I load the folder containing the code in Visual Studio 2019 and I attach the process...
    See more | Go to post

  • How do I load my "Hello World" ASP in a browser?

    How do I load my "Hello World" ASP in a browser?

    Classic ASP, I believe, is fundamentally a feature of IIS. I have gone through the steps of setting up my first test page to be loaded in my browser but it does not come up.

    I currently have a "Default Web Site" and a "Test for Learning" listed in my list of "Sites" in the Connections panel of my IIS.

    [1]: https://i.stack.imgur.c om/6y9nh.png...
    See more | Go to post

  • xarzu
    started a topic Setting Things Up For Classic ASP Coding

    Setting Things Up For Classic ASP Coding

    How do I set up IIS to debug classic ASP?

    Help Needed Setting up Classic ASP Debugging

    According to what I have seen on social media, in order for me to set up my computer for writing and debugging Classic ASP, I need to set up IIS a certain way -- which I did -- and then I have to enable ASP by doing the following:

    IIS7 - IIS > ASP > Compilation > Debugging Properties > Enable Server-side...
    See more | Go to post

  • xarzu
    started a topic How do I set up IIS to debug classic ASP?

    How do I set up IIS to debug classic ASP?

    How do I set up IIS to debug classic ASP?

    Help Needed Setting up Classic ASP Debugging

    According to what I have seen on social media, in order for me to set up my computer for writing and debugging Classic ASP, I need to set up IIS a certain way -- which I did -- and then I have to enable ASP by doing the following:

    IIS7 - IIS > ASP > Compilation > Debugging Properties > Enable Server-side...
    See more | Go to post

  • How do I pull ascii files or folders off a server I am remoted into?

    How do I pull ascii files or folders off a server I am remoted into?

    For the first time in my life as a software developer I am tasked to remote in by VPN (sort of) to a server where ASP code resides. I want to copy and paste the text locally so I can do things like searches for function names and such. I can do it on the server perhaps but there is an issue with lag time. Also, the screen I remote into with is small.
    ...
    See more | Go to post

  • Are there special uses of VPN that is part of every web browser now?

    Are there special uses of VPN that is part of every web browser now?

    Working remote seems like a good thing. I am new to it albeit it seems lots of developers are already doing it. I have been giving all the network, username, and password information and I am told that I can "HTML5 VPN Portal (any browser)" ... whatever that means. Please tell me whatever that means !! How is this done? So far all I know about VPN is that...
    See more | Go to post
No activity results to display
Show More
Working...