Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K

29 Posted Topics

Member Avatar for cartersin

@cartesin I think your IP cam has some stream interface with it. If it has raw rtp on it then you need to process it and learn how to read rtp packets. Or you can read on this [URL="http://msdn.microsoft.com/en-us/library/cc998472.aspx"]http://msdn.microsoft.com/en-us/library/cc998472.aspx[/URL] Or you can search on using Media Player in c# and …

Member Avatar for darko444
0
433
Member Avatar for aliskov

If you really like using Microsoft provided technology you can download their free IDE's , the visual express editions. I think you're pretty confident enough with your OOP understanding and technically speaking you should not have any problem jumping around from PL to PL if your basic is good. You …

Member Avatar for ddanbe
0
301
Member Avatar for azfarhus

See this link [URL="http://www.c-sharpcorner.com/uploadfile/mgold/codedomcalculator08082005003253am/codedomcalculator.aspx"] execute math expression via CodeDom[/URL] Much simpler approach: [URL="http://www.vbforums.com/showthread.php?t=397264"] Evaluate expression and execute[/URL]

Member Avatar for arunkumars
0
217
Member Avatar for powerbox

Hi guys, I created a Library 3 years ago and it is built around interfaces and generics. Now I needed to extend one of my application to support WCF. On my test scenario I can load it up on my application as part of different application domain. My problem now …

Member Avatar for powerbox
0
320
Member Avatar for adobe71

No you can't use a double in Sleep since its signature requires you to put an int datatype. You can cast your double to int if you really want to use your double variable.

Member Avatar for adobe71
0
81
Member Avatar for powerbox

Hi guys I would like to know if there is a way for us to create a custom Oracle Profile in C# just like in MS SQL?

0
49
Member Avatar for jugnu

This is simple, this is either you properly design your classes using Interfaces or if you're really on a hurry , create your clsDoTran with member variables of clsParty and clsAccount.

Member Avatar for kvprajapati
0
77
Member Avatar for powerbox

Hi guys I need help how to convert my uint and int to 3 byte array. Converting it to 4 byte array is easy since .Net has BitConverter class but now I really need to convert it to 3 Byte Array hope someone can help me out. Thanks

Member Avatar for powerbox
0
116
Member Avatar for arunms

I've done this kind of application directly from the radio itself. The radio we're using supports both serial port communication and ip base. The equipment I'm using had its own protocol and documentation with it and I used it for data processing. If you don't know the protocol then I …

Member Avatar for powerbox
0
87
Member Avatar for coop123
Member Avatar for coop123
0
113
Member Avatar for sidhu51

Just use regex for this problem: [CODE] string input = "SMS_dr_6500"; string output = string.Empty; output = System.Text.RegularExpressions.Regex.Replace(input,"\\D",string.Empty); int intValue = 0; int.TryParse( output , out intValue ); [/CODE]

Member Avatar for sidhu51
0
109
Member Avatar for Hardz
Re: C#

It seems that your database resides on your local computer. Install your database somewhere else and add specific database user that have restrictions based on privileges of that account. In your client app you just need to have a configuration file that can be edited on the fly for the …

Member Avatar for powerbox
0
102
Member Avatar for NightDreamer

Mastery is the key to pass exams and experience. You will not understand fully how the inside and outs of .net framework and the technology it used if you really don't know how to implement it first. I suggest that you put into actions what you've learn and see if …

Member Avatar for powerbox
0
87
Member Avatar for painejake

First of all your application is a window app, you can't just fire a form method with having an issue of cross-thread exception. If you really wanted to have your app using thread then you should create your own class using a thread inside of it or use background worker …

Member Avatar for powerbox
0
117
Member Avatar for prosmart1

Use .Net either using C# or VB.Net or Java. Quit VB6 and better migrate your old VB6 apps to .Net and take advantage of OOP.

Member Avatar for QuickView
0
93
Member Avatar for kapiercy07

It is very simple to check if an input is a valid numeric data type. In your case you're using int you just need to use Int.Parse( textbox value ) or Int.TryParse( textbox value , out var ). Int.TryParse method will return a boolean value if the conversion is successful, …

Member Avatar for kapiercy07
0
139
Member Avatar for phoenix911

Add-on apps are plugins, using interfaces that needs to be loaded on the main application domain. Upon start up and loading of add-ons, there should be a process that checks if the current add-ons are updated or not ( You need to implement your own protocol to determine this, e.g. …

Member Avatar for phoenix911
0
237
Member Avatar for zachattack05

If you're using MS SQL server then you can use its notification services to prompt users that there has been an update. Now its up to your client to keep up on it and how such updates will be interpreted. You can also go with the time stamp logic but …

Member Avatar for zachattack05
0
100
Member Avatar for Cap'nKirk

You should study again data types, you can't force your math operations on int data type and what are real numbers is. By the way check on Math.ceiling and Math.Floor methods it might help you further.

Member Avatar for Cap'nKirk
0
118
Member Avatar for Joelles

There is a lot for you to learn in C#. I guess you need to start with simple application first rather than to jump to some advance programming . Learn the fundamental first and the language capabilities for you to properly design your applications. May be this will help you, …

Member Avatar for Joelles
0
124
Member Avatar for sjn21682

I think you have issue on reading 2 files, your threads are running against each other and causing them to wait for each other causing your app to hang up. Clean up your code and re-code it properly. For your virtual memory problem, you have too many objects that are …

Member Avatar for powerbox
0
206
Member Avatar for erees

I have this problem also when I was migrating 50 500GB files and it took some time also. The problem is that we're reading the file block by block and buffering it in our application which I guess is too time consuming but it works perfectly. I don't know if …

Member Avatar for powerbox
0
267
Member Avatar for danieldot

I don't know how you've coded your server class but you have 2 options for listening for clients either use AcceptSocket method from Sockets.TcpListener class or use BeginAcceptSocket. BeginAcceptSocket will require you a callback if a new tcp client is connected on your server. In AcceptSocket method, you need to …

Member Avatar for powerbox
0
77
Member Avatar for koki55

There's a lot of deprecated functions in higher version of .Net. But still you can work with your older ones into the new version but you need to recompile and fix other errors if any is found. If your code is too large and you'll be migrating it to new …

Member Avatar for powerbox
0
69
Member Avatar for nitin2010

You said that you're already using multi-threading on your project. It seems that you're actually going to a race condition somewhere on your code. Check it out. To solve your problem in writing to a log file with multiple threads, a good way to do it is to queue up …

Member Avatar for powerbox
0
146
Member Avatar for farsen

It looks like your doing some pluggable system architecture. For you to create objects dynamically you'll be needing some reflections coding and the basic to do it is by using interface. Let that interface do the work for you. See this link [URL="http://msdn.microsoft.com/en-us/magazine/cc164170.aspx"]http://msdn.microsoft.com/en-us/magazine/cc164170.aspx[/URL]

Member Avatar for Venjense
0
200
Member Avatar for munna_001

If you want to redirect your Console.Writeline messages to a textbox then you should create a class inheriting Sytem.IO.TextWriter just like: [CODE] public class ConsoleStreamHandler : TextWriter { private TextBox output = null; public ConsoleStreamHandler(ref TextBox output) { this.output = output; } public override void Write(char value) { base.Write(value); MethodInvoker …

Member Avatar for munna_001
0
274
Member Avatar for ds2r

Hi it all depends on your system architecture. Sometimes distributed application uses disconnected kind of application wherein messages are pass on message queue or other queuing applications. You also need to check if your current data is indeed current and has not been updated by other client applications. For your …

Member Avatar for powerbox
0
88
Member Avatar for powerbox

Hi guys I just need some enlightenment on how I should implement one of my projects. I've been migrating my codes from unmanaged to manged code and I chose Java as one of our primary PL to use. From time to time I've used some of Java products like GlassFish. …

Member Avatar for pelegri
0
250

The End.