Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
visual-studio-2010
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Neil_brown001
…app is very restricted by default. Programs with a
visual
interface (like Notepad) usually won’t display anything …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 …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
…restricted by default. > > Programs with a
visual
interface (like Notepad) usually won’t display anything because … to 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 …
Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
… web.config settings, and also i dont understand why the
visual
studio
code will launch the site with a certain port number…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
by pritaeas
Are you sure IIS is configured to allow running external scripts?
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
3 Weeks Ago
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
2 Weeks Ago
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
2 Weeks Ago
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 …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Salem
> When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
> > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Salem
Congrats on getting going. > Even if i run the setup and ticked the option "add to path", the echo %PATH% command didnt seem to show what i expected. Yeah, this won't transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot …
Re: Which Python project should I use?
Programming
Software Development
2 Months Ago
by Reverend Jim
Using wxPython for your GUI elements will make it more portable to other platforms. wxPython also renders the elements in the target platform's native style. Usimg wxGlade (also free) to design the layout will make things much easier than doing it all by hand.
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
I'm using Microsoft
Visual
Studio
2010
(
Visual
C++ Windows Form Project). Regarding the test yes it doe …
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by toneewa
… with VS2022 to work, I did the following: With your
Visual
Studio
Installer make sure the .NET Desktop Development and Desktop Development…
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
2 Months Ago
by simplixi
… need to go back to an earlier version! **Development Environment** * **
Visual
Studio
Code:** A favorite among developers because it’s easy to…
Visual studio suddenly close please help me.......
Programming
Software Development
7 Years Ago
by JModak
Visual
Studio
suddenly close when i open crystal report right click on page and design>page setup i try many time result is same please help me please.... please help me https://ibb.co/iBfiaG I used --- vb.net-
2010
sql server 2008 r2 crystal report 13 OS windows 8.1
Re: Visual studio project
Programming
Software Development
10 Years Ago
by ddanbe
Visual
Studio
is just an integrated development environment. Which computer language you like to use in it? C#, VB.NET, C++, F#, Python?
Visual studio
Hardware and Software
Microsoft Windows
20 Years Ago
by mikeandike22
i have
visual
studio
6 installed on my computer. I am going to install
visual
studio
.net enterprise edition 2003 do i need to keep my old installation before installing the new one. or can i get rid of it and still install 2k3
visual studio
Programming
Software Development
11 Years Ago
by sanu kaji
…\Desktop\SMSapplication\SMSapplication\Program.cs 13 21 SMSapplication... while compiling
visual
studio
how to solve this problem
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC