|
Hi guys,
I was able to access the serial port remotely but when i change the serial port to usb it does not working. Is there any way i can access the pinpad using usb ports or is there a library which work like serial port in C#.
Thanks Again
Liya
|
|
|
|
|
|
Hello all,
I have a dll from a card reader...
I encapsulate this dll into a ASP.NET Class Library...
and compile it into my own CardReaderWriter.DLL.
this Class library has methods..
the card reader will be connected in client computer..
Since it's on client side, i can not use ASP .NET to call and use the Class Library
Do I need to Copy this dll to client machine and register it .
How do i create an object of this on client side to access the methods ...
i tried using javascript new ActiveXObject() method but its giving me a runtime error "The system cannot find the file specified"
i even tried the object tag but gives me the error that object doesnot support this property
Note:- i have already compiled and registered the Dll on client machine to be safe but still not able to do it.
plz guide me to the right direction.
if possible plz provide sample codes and links to articles.
thanx in advance
mukeshmkg
|
|
|
|
|
Hello
I have a question concerning printing out source code (in my case VBScript Source) with highlighted syntax, line numbering etc.
I'm actually working on a printer routine.
It should be possible to print out a "VBScript Code Snippet".
How is it possible to print out that code a syntax highlighted way?
Is there already a .NET standard method to do this?
Or do I have to parse every command to color it?
Thanks in advance for any advices
|
|
|
|
|
Hi
i populate dataset with data from uif table and one of the colum is marriage status which is integer so i want to you case statement where for example if marriage_status is 1 then it has to display single on detailsview.
here is my code
int MarriageStatus = (int)dataset.Tables["uif"].Rows[0]["marriage_stat"];
string status = Convert.ToString(MarriageStatus);
switch(MarriageStatus){
case 0:
status="Single";
break;
case 1:
status="Single";
break;
case 2:
status = "married";
break;
case 3:
status="Widowed";
break;
case 4:
status="Divorced";
break;
}
Mamphekgo
|
|
|
|
|
And you problem is?
You could have
Case 0:<br />
Case 1:<br />
status = "Single"<br />
break;<br />
case 2:
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Hello All
I`m very new to the programming so this might be easy question to all of you, i`m hoping someone can help me out.
So i`m trying to write very easy program in windows form but i have encountered the problem.
lets say that i have an event on the button1 (CLICK) which should pick up a random number and hold it in the memory unless i click it again to change it. My problem is that i cannot figure out how to use this variable which has been set up in the first place with another event button2(Click) which will use this variable and do other task with using int previously declared. Short example:
public void Random_Click(object sender, EventArgs e)
{
Random myRandom = new Random();
int myNumber = myRandom.Next(1,10);
}
public void Button2_Click(object sender, EventArgs e)
{
MessageBox(myNumber.ToString());
}
This will not work and i cannot find the way to get it right
plese help !!!
|
|
|
|
|
one way is to declare a global variable try this:
public int myNumber;
public void Random_Click(object sender, EventArgs e)
{
Random myRandom = new Random();
myNumber = myRandom.Next(1,10);
}
public void Button2_Click(object sender, EventArgs e)
{
MessageBox(myNumber.ToString());
}
hope this helps
|
|
|
|
|
Hello still nothing cannot solve this problem, so what i tried is i tried declare variable as a (public int nameOfInteger) just before the method, in the begining oif the class and everywhere else. Still confused
thats my code
namespace ExerciseInt
{
public partial class Form1 : Form
{
int newNumber;
public Form1()
{
InitializeComponent();
}
public void button1_Click(object sender, EventArgs e)
{
Random myRandom = new Random
myNumber = myRandom.Next(1,10);
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show(myNumber.ToString());
}
}
}
so when i click button1 variable should be set up and when click button2 i would like to see this variable in the message box.
looking forward to hear from you.
|
|
|
|
|
Are you using some IDE? It would be helpful if you could give some error reports and I think I could think of one. Now, that would be newNumber and myNumber. Are those supposed to be the same? I think so.
I came, saw, and then coded.
|
|
|
|
|
Your problem is working out the SCOPE of your variable.
If you declare it in the method it dies when the method completes.
if you declare it provate in the form (I ususally put them just before the form_load method) then the variable will be available until you close the form.
public clsLimitValue oValue { get; set; }<br />
private BindingSource oBS = new BindingSource();<br />
<br />
private void frmNewLimit_Load(object sender, EventArgs e)
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Hi,
maybe this[^] will inspire you.
Luc Pattyn [Forum Guidelines] [My Articles]
The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.
|
|
|
|
|
how can i develop a program in aspx format and use it in php site?!!
i want to write a custom search box with C#, and use it in a php site!!
any help would be useful
Thanks
modified on Thursday, July 16, 2009 3:04 AM
|
|
|
|
|
You might get a better response in the ASP forum.
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
|
Hi I'm new to C# and graphics programming so I hope you can bear with me.
We developed an application for winxp(embedded) and we added usercontrol 3D buttons in it.
I used blending and linear gradient functions instead of displaying a bitmap file.
The performance was ok when run from our workstation but it was
poorly responding when tested on the actual unit, probably because of low video
acceleration, the previous system used LabView graphics and it was doing fine with
the same 3d look. There are screens that display about 20 buttons at once.
I tried enabling double buffering but it did not change anything. Please help.
My questions are:
1. Is there any other way to create 3d buttons?
2. Would creating Direct3d usercontrol for the buttons be faster?
Thanks for your time.
|
|
|
|
|
Just a follow-up question to my inquiry.
Has anyone tried creating custom 3d button user control
using Managed Direct3d?
Thanks.
|
|
|
|
|
Hey I am C# web application developer i want to make use of the hotkeys F2 F3, and these things. I know the values for each button but i do not know how to use them in the whole page. I know how to work with it using textbox event i get the event.keyCode and work through it. What I want is that the user could have his focus on any part of the web page once he enters F2 or these button an event would be executed. How this could be done???? Thanks
|
|
|
|
|
when we open IE, we will see the standard buttons like Back, Forward, Refresh, History, Mail etc., in the toolbar window, how can I add an extra button using c#?
|
|
|
|
|
I want to run this type of query in c# how i do please tell me.
select empid,sysdte from timemgmt,if the select returns 0 rows then insert row else don't insert.
|
|
|
|
|
Did you tried anything to implement it ?
|
|
|
|
|
No I not tried to implement any thing.
|
|
|
|
|
Try the sample code
SqlConnection con = new SqlConnection("your connection string");
SqlDataReader dr;
string str = "your query";
SqlCommand cmd = new SqlCommand(str, con);
dr = cmd.ExecuteReader();
if (dr.HasRows== false)
{
}
Regards,
Karthik K...
|
|
|
|
|
I Am using oracle database
using same codeing???
|
|
|
|
|
For Oracle, replace SqlConnection,SqlCommand,SqlDatareader to odbcConnection,odbccommand and odbcdatareader
odbcConnection con = new odbcConnection("your connection string");
odbcDataReader dr;
string str = "your query";
odbcCommand cmd = new odbcCommand(str, con);
dr = cmd.ExecuteReader();
if (dr.HasRows== false)
{
}
Regards,
Karthik K...
|
|
|
|