Re: Error LNK1104 when debugging Programming Software Development by toneewa I've seen this happen from Windows Defender nuking Visual Studio's compile process. Make sure the PC is set to … Re: Error LNK1104 when debugging Programming Software Development by Mr.M @rproffitt I tried that with no luck Re: Error LNK1104 when debugging Programming Software Development by rproffitt Since the file is not generated, try a full compile. Be sure you change to Debug for this build. You usually can't debug what you didn't compile. Example: There were compile or build errors which stopped the creation of the .exe file. But no mention of compile errors so I wouldn't write about that here. Re: Error LNK1104 when debugging Programming Software Development by rproffitt Here's a page about how to create and view your VS log files to point you to where or why the compile failed. https://learn.microsoft.com/en-us/visualstudio/ide/how-to-view-save-and-configure-build-log-files?view=vs-2022 Re: Error LNK1104 when debugging Programming Software Development by rproffitt Given only this I won't be able to do more than comment how I use the Visual Studio system to debug my app. 1. I open the project. 2. I set the build to "Debug". 3. I set breakpoints on lines of code I suspect to be problematic. 4. I run the app while in Visual Studio. That's usually enough to track down what I did wrong. Error LNK1104 when debugging Programming Software Development by Mr.M Hi DW, I'm getting this error when I try to debug, it says it can't open `"c:\users\myusername\Documents\Visual Studio 2010\Projects\myprojectname\debug\myprojectname.exe"` How can I solve this? Re: Error LNK1104 when debugging Programming Software Development by Dani When you browse the file system, does that file exist and is it accessible by the logged-in user? (Sorry, no VS experience.) Re: Track Google Algorithm Digital Media Digital Marketing by Dani > So you're telling me Sam Web Studio fails at this? I just came across this now (yes, … Re: Android Native - How To Request Notification Permissions Programming Mobile Development by Erussuhsh Hi I'm new android app development can you teach me Re: Cannot run exe from asp.net Programming Web Development by Dani Marking this question as solved. Thanks all! Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 … caching or differences in how IIS reads settings versus Visual Studio. Why the port number is different When you run your… site in Visual Studio, it uses a development web server (Kestrel or IIS Express… Re: Cannot run exe from asp.net Programming Web Development by lennyli … caching or differences in how IIS reads settings versus Visual Studio. > > Why the port number is different > When… you run your site in Visual Studio, it uses a development web server (Kestrel or IIS Express… Cannot run exe from asp.net Programming Web Development by lennyli ….config settings, and also i dont understand why the visual studio code will launch the site with a certain port number… Re: Show computer name on a label Programming Software Development by Mr.M I'm using Microsoft Visual Studio 2010 (Visual C++ Windows Form Project). Regarding the test yes … Re: Show computer name on a label Programming Software Development by toneewa … VS2022 to work, I did the following: With your Visual Studio Installer make sure the .NET Desktop Development and Desktop Development… Re: Cannot run exe from asp.net Programming Web Development by pritaeas > while at the same time run the same exe on the local client pc. Not possible. Re: Cannot run exe from asp.net Programming Web Development by pritaeas No, Javascript cannot run/start executables on the client machine. Re: How to open an Excel Document in VB.NET Programming Software Development by JamesMichaelm I see it's been a while since you posted, but I'm curious if anyone here has tried using the Open XML SDK instead of Interop or OleDb for reading Excel files. I found it faster and doesn't require Excel to be installed, though it can be more complex for writing. Wondering how others handle big Excel files or ones with tricky formatting? Re: How to open an Excel Document in VB.NET Programming Software Development by PitSterw I've worked on something similar and found that using Microsoft.Office.Interop.Excel lets you open the file and loop through cells easily. Re: Cannot run exe from asp.net Programming Web Development by rproffitt I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there. Re: Cannot run exe from asp.net Programming Web Development by lennyli Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\… Re: Cannot run exe from asp.net Programming Web Development by pritaeas Are you sure IIS is configured to allow running external scripts? Re: Cannot run exe from asp.net Programming Web Development by lennyli > Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen Re: Cannot run exe from asp.net Programming Web Development by lennyli > I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can … Re: How to open an Excel Document in VB.NET Programming Software Development by Pelorus_1 A Microsoft Excel document can be opened in VB.NET using the Microsoft.Office.Interop.Excel library. Using Workbooks.Open(), open the workbook, and then display the Excel window. Reference the Excel COM object in your project. Re: Cannot run exe from asp.net Programming Web Development by john_111 Let me expand on what rproffitt said, by explaining why. If a webpage could run a program installed on another computer, the entire world wide web would be hacked into tiny pieces and cease to exist. No one would ever use the web, it would be so totally insecure. So web pages are prohibited from running programs on your computer. They can … Re: Cannot run exe from asp.net Programming Web Development by Salem https://xyproblem.info/ * User wants to do X. Sometime later... > My boss just asked me to create a prototype as proof of concept. There is no specific language/tool I must use * User asks for help with Y. Initially asked... > Have a webpage with a button, when pressed, it will launch a webpage that runs a server side exe (eg, … Re: Cannot run exe from asp.net Programming Web Development by Reverend Jim >No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task. Re: Cannot run exe from asp.net Programming Web Development by gediminas.bukauskas.7 Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Re: Cannot run exe from asp.net Programming Web Development by lennyli > Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new …