[Solved] i already installed the right .net framework version but my .exe file didn’t run [closed]

You should be a bit more precise when you say ‘your exe file’. Did you create your own in visual studio? If yes, then remove all atributes you used from the MICROSOFT POWER PACK. Those don’t work outside the compiler without having them installed on your computer manually. also you can release your program, by … Read more

[Solved] Error: System.IndexOutOfRangeException: Index was outside the bounds of the array [duplicate]

Your stringArray contains less than two elements.That is your problem, you need to make sure it contains at least two elements before switch statement.BTW, if you just want to append a dot to the end, you don’t need String.Split, just use Insert method: string str = row[“Version”].ToString(); str = str.Insert(str.Length, “.”); switch(str) { … } … Read more

[Solved] Error Message is not clear to me

If what you posted is your whole class, you’re missing a curly brace. Exactly as the error message says. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Default2 : System.Web.UI.Page { protected void gettickvalue(object sender, EventArgs e) { Random RandomNumber = new Random(); int n = RandomNumber.Next(1, 9); … Read more

[Solved] Visual Basic email system bcc mails [closed]

Imports System.Net Imports System.Net.Mail Private mpMessage As MailMessage = Nothing Private mpSMTPSvr As SmtpClient = Nothing ‘———————————————————————— ‘-> Send The Message ‘———————————————————————— MailerHost = “Addrss-of-your-emailer-host-server” mpMessage = New System.Net.Mail.MailMessage() mpMessage.Body = “Message body text goes here” If Trim(SenderNameValue) <> “” Then mpMessage.From = New System.Net.Mail.MailAddress(“[email protected]”, SenderNameValue) mpMessage.Sender = New System.Net.Mail.MailAddress(“[email protected]”, SenderNameValue) Else mpMessage.From = New … Read more

[Solved] Develop a system sent number from (visual basic use Text box and send button) to dispaly the number on 7 segment connected to your arduino [closed]

Develop a system sent number from (visual basic use Text box and send button) to dispaly the number on 7 segment connected to your arduino [closed] solved Develop a system sent number from (visual basic use Text box and send button) to dispaly the number on 7 segment connected to your arduino [closed]

[Solved] How to set path of a text file created by an visual studio 2010 application?

The folder where the executable resides is: string executableLocation = System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().Location); And so you want to save your file to: System.IO.Path.Combine(executableLocation, “myfile.txt”); 3 solved How to set path of a text file created by an visual studio 2010 application?