Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
add sql to vb.net
- Page 1
Re: What should I look for in a reliable web design and development agency?
Digital Media
Digital Marketing
6 Days Ago
by graceweb
Hi Sasha, I really agree with your point about clear and consistent communication, without it, even the most skilled agency can fall short. I’d also
add
that flexibility is important too. Sometimes project needs change mid-way, and it helps to work with a team that can adapt without losing sight of the overall goals. H
Re: Custom font on Cloudflare error page
Programming
Web Development
5 Days Ago
by wwwalker
I would check out assets you
add
to custom error page. See https://developers.cloudflare.com/rules/custom-errors/
Re: How to speed up my (WordPress) website?
Digital Media
Digital Marketing
2 Days Ago
by asadalig
… sure I’m not breaking anything. Small steps really do
add
up!
Re: Help needed Related Website
Digital Media
Digital Marketing
2 Days Ago
by ashishkumar56
… sure your content answers real questions people are searching for.
Add
U.S.-based examples, use tools like Google Search Console…
Re: How to open an Excel Document in VB.NET
Programming
Software Development
2 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: 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
1 Week Ago
by lennyli
…') > main() > print('Server End') > > You can
add
more prints in the `main()` function itself to try and… if i run the setup and ticked the option "
add
to path", the echo %PATH% command didnt seem to…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by Salem
…": print('Server Begin') main() print('Server End') You can
add
more prints in the `main()` function itself to try and…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by Salem
… if i run the setup and ticked the option "
add
to path", the echo %PATH% command didnt seem to…
Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
…/web-development/threads/386380/cannot-run-exe-files-in-asp-
net
-application but still lost in trying to achieve something. I… installed the latest .
net
framework, and IIS on the latest updated windows 11. I…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by Neil_brown001
… confusion Having two web.config files is normal in ASP.
NET
apps. One controls the overall app, the other can apply…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
… > Having two web.config files is normal in ASP.
NET
apps. One controls the overall app, the other can apply…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
4 Weeks Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over
SQL
data easier than ever.
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: 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: Cannot run exe from asp.net
Programming
Web Development
2 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
2 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
2 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
1 Week 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
1 Week 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
1 Week 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
Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes
Programming
Web Development
3 Weeks Ago
by Neil_brown001
… components rely on shared context/state from the parent. To
add
complexity, I'm using React Query for client-side data…
Re: which language do i start leaning in 2025
Programming
Software Development
3 Weeks Ago
by Dani
… website, you can use HTML and CSS. Want some interactivity?
Add
JavaScript. Want to create more complex dynamic websites? You will…
Re: I'm Tired! How to Increase Social Media Followers
Digital Media
Digital Marketing
3 Weeks Ago
by Shady33
… channels (e.g. promote IG on LinkedIn, or vice versa) *
Add
social links in your email signature, website, and newsletters * Join…
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