|
Shouldn't be any issue if you build the project using MSI Installer. You however need to create MSI Package Using a Visual Studio Setup Project and build/deploy from it. Include all the dependencies properly.
http://support.microsoft.com/kb/307353[^]
|
|
|
|
|
He needs the .Net framework which he can download and install for free.
make sure it is the correct version. (although I believe the latest ones will run the previous ones as well)
|
|
|
|
|
V. wrote: although I believe the latest ones will run the previous ones as well
Not so - the "complete backward compatibility" of .NET ended with V4.5, which won't run all earlier versions without changes: http://msdn.microsoft.com/en-us/library/ff602939(v=vs.110).aspx[^]
You looking for sympathy?
You'll find it in the dictionary, between sympathomimetic and sympatric
(Page 1788, if it helps)
|
|
|
|
|
You should only need a configuration file change, though:
Backward compatibility and the .NET Framework 4.5:
The .NET Framework 4.5 and its point releases are backward-compatible with apps that were built with earlier versions of the .NET Framework.
In other words, apps and components built with previous versions will work without modification on the .NET Framework 4.5.
However, by default, apps run on the version of the common language runtime for which they were developed, so you may have to provide a configuration file to enable your app to run on the .NET Framework 4.5.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Yep: but if you don;t realize that it can cause a lot of hair pulling!
You looking for sympathy?
You'll find it in the dictionary, between sympathomimetic and sympatric
(Page 1788, if it helps)
|
|
|
|
|
Hi,
Just putting it out there.
Any one living on the Sunshine Coast, Qld, Australia, or nearby.
Who is willing to hire themselves out on an hourly basis to help me with C# / Ninjascript programming? I'd love to hear from you.
I have done a book based C# course and am able to code windows apps in Visual Studio but am having trouble with some of what I want to achieve in Ninja.
I have coded one indicator successfully. And am trying to create a more complex tool but am butting my head against a brick wall at present. I know I can hire someone on the internet to code it for me, but I prefer to learn how myself, because there is more I wish to do.
Ideally, an experienced coder to come to my house and spend an hour or two at a time with me would do the trick. Just to help me clear a few hurdles.
So hoping to hear from someone.
Ken.
|
|
|
|
|
Ok, Haven`t had any replies so would there be anyone further afield like Brisbane or Gold Coast, that would be willing to help?
|
|
|
|
|
You have chosen the wrong site. Codeproject.com is not meant for such stuff. Please don't post such messages/Questions/Answers anywhere on the site. We have very powerful reporting mechanism which may lead you to account cancellation.
"When you don't know what you're doing it's best to do it quickly"- SoMad
|
|
|
|
|
My site is working on QA and Dev server for IE9 but not for production server.
All the servers are windows 2012.
can anyone point what can be the probable cause?
|
|
|
|
|
I am not sure what, if anything, this has to do with C#, but you are asking people to make a guess based on no useful detail of your problem.
|
|
|
|
|
|
Yes. Your production setup is different to your QA and Dev setup. Beyond that, without any actual details of what isn't working, you're not likely to be able to get much more help.
BTW - this isn't really a C# question.
|
|
|
|
|
HI
I am getting an error "Cannot create an instance of the abstract class or interface Microsoft.Office.Interop.Excel.Application"
Please suggest.
code:
Microsoft.Office.Interop.Excel.Application ExcelObj = new Microsoft.Office.Interop.Excel.Application(); ExcelObj.DisplayAlerts = false;
if (ExcelObj == null)
{
return null;
}
|
|
|
|
|
Do you have reference to the proper version of the Office interop? Do you have Excel?
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
|
I've started a small program for a motorola mc5574 barcode reader. The problem is that I've managed to make it read barcodes but it just read them once and then the readers stops working. Could someone look at my code and tell me where the problem is, thanks alot in advance.
using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
namespace inventering
{
static class Program
{
[MTAThread]
static void Main()
{
Form1 frm1 = new Form1();
Application.Run(frm1);
}
}
}
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Symbol.Barcode2;
namespace inventering
{
public partial class Form1 : Form
{
Barcode2 MyBarcode;
public Form1()
{
MyBarcode = new Barcode2();
MyBarcode.Enable();
MyBarcode.Scan();
MyBarcode.OnScan += new Barcode2.OnScanHandler(myBarcode_OnScan);
InitializeComponent();
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if ((e.KeyCode == System.Windows.Forms.Keys.Up))
{
}
if ((e.KeyCode == System.Windows.Forms.Keys.Down))
{
}
if ((e.KeyCode == System.Windows.Forms.Keys.Left))
{
}
if ((e.KeyCode == System.Windows.Forms.Keys.Right))
{
}
if ((e.KeyCode == System.Windows.Forms.Keys.Enter))
{
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void label1_ParentChanged(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
void myBarcode_OnScan(ScanDataCollection sd)
{
ScanData scanData = sd.GetFirst;
if (scanData.Result == Results.SUCCESS)
{
textBox1.Text += (scanData.Text + ";" + scanData.Type.ToString());
}
}
private void label2_ParentChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
MyBarcode.Dispose();
this.Close();
}
}
}
|
|
|
|
|
Isn't there a support forum on the Motorola site for this device?
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
You showed us a lot of useless code - e.g. those empty event handlers, why do you do that?
Next, I wonder how it works at all...
Even before you call InitializeComponent of the Form, you call the scan method of the BarcodeReader, and its call back function (the OnScan event) is not yet connected...
Add another button for starting the scan, and order things correctly:
public Form1()
{
InitializeComponent();
MyBarcode = new Barcode2();
MyBarcode.OnScan += new Barcode2.OnScanHandler(myBarcode_OnScan);
MyBarcode.Enable();
}
private void btnScan_Click(object sender, EventArgs e)
{
MyBarcode.Scan();
}
|
|
|
|
|
I see only one .Scan() in your program; at the "start".
I'm guessing you need to have a "loop" of sorts, that does a .Scan() each time you need to get a new bar code; it's part of "arming" the device.
I'm sure the "User Guide" has more useful information re: polling / reading from the device.
(I usually use a background worker with a "timeout").
|
|
|
|
|
Hi
How can i download all content of this page :
http://tehran.divar.ir/browse/
I think this is full ajax
Cause when u scroll down the page it reload the new data!
Please Help?
|
|
|
|
|
Depending on which browser you are using, you should be able to use the context or main menu to do a Save As operation.
|
|
|
|
|
thanks for reply!
but the page is Compeletly ajax,so i should scroll down and down to reload the info!
other website act same as this :
http://demos.9lessons.info/load_data_scroll.php[^]
i wanna do that in C#!
thanks in advanced!
modified 10-Aug-14 11:39am.
|
|
|
|
|
Sorry, but I'm not sure what your problem is in terms of C#.
|
|
|
|
|
Why should you get all the content of someone else's site? It's not yours! You should not touch it!
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
I am doing it for testing and get info of other website for some use!
|
|
|
|