-
Checking Lotus Notes read or unread email using C#
I'm trying to check my email read and unread property through C#. Basically, I need to check whether my emails have been read or not. I'm also using using Domino.dll. How can I do that?
Last updated: -
Visual Basic 2010 Server Status?
I'm using Visual Basic 2010 c++ and I'm trying to make a server status so the user can see if the server is up or not. How would I do this?
Last updated: -
Hello, I'm trying to make a button connect to a game server like when you hit the button it will but on on that game server (C++ please). I'm making my program in C++ so if anyone know how you would do this that would be cool if you can tell me the code.
-
ProgressBar Control as Marquee
I want to use a ProgressBar control in marquee mode. In other words, I want to have a piece of the bar scroll across the screen repeatedly to show that something is happening, along the lines of the progress bar that is displayed during a file search in XP. I know that you can do this via the API...
Last updated: -
Is it possible to run C++ applications in Microsoft’s cloud?
I have several applications that are written in C++ (which intends intensive computation). I mean that it can be done without GUI / controlled by a .NET service. Would I be able to run this Microsoft's cloud? If it is, can someone explain how to do it?
Last updated: -
Problems rewriting C++ application into C#
I am rewriting a C++ application into C#. I am running into problems because there are substantial header files in the existing application and C# does not allow for header files. What is the best way to handle this?
-
Need to detect Ethernet connections in C# using .Net 2
I am developing software in C# using .NET 2 that needs to detect whether there is an Ethernet connection on a Windows machine, as the program will behave differently if accessed by Ethernet instead of WiFi. The only thing I can think of doing is to use...
Last updated: -
What’s the easiest way to seralize and store data using C#?
I'm trying to find the easiest solution to serialize and store objects that will contain configuration, application state and more data. There's not a ton of data and speed isn't an issue. I would like it to be in-process and have it to be more easy-to-edit in a texteditor than XML. I know .NET...
Last updated: -
How can I get the IP address using Boost ASIO library?
I'm creating a server with C++ using Boost ASIO library. Is there a way to get the string representation of a client's IP that can be shown in my server's logs? Does the socket have a function to do this?
Last updated: -
How to get the IP address from my local computer?
I'm using C++ and I'm trying to find the easiest way to get my local computer's IP address / subnet mask. Currently, my network has a subnet mask of 255.255.255.0 and the IP address is 192.168.0.5. I have to get these two values programmatically so I can send a broadcast message to my network. What...
Last updated: -
What’s the best option for network disconnections in software?
I'm working with a network C++ program in Microsoft Windows that I'm trying to test for network disconnections at various times. Here's what I'm doing so far: Manually disconnecting the network wire Using IPCONFIG / release Using a cports program to close the socket What other options are out there...
Last updated: -
How to detect network speed and bandwidth in C#
Does anyone know a way of detecting network speed and bandwidth usage using C#? Are any open source components involved? Thank you for all your help!
Last updated: -
What is C? Why is C important?
I'm an engineering student with 70% in EEE stream..I didn't learn C language, but now I want to learn it. Is it easy to learn?
Last updated: -
get the number of a hexa characters
I have the next structure: typedef struct Test01 { char def [10] ; char efg[4]; // holds an integer value in hexa representation char xyz [10]; } test01_t int main ( int argc , char ** argv ) { test01_t tt01 ; memcpy ( tt01.def , "EFG" ,3 ) ; memcpy ( tt01.xyz , "XYZ" ,3 ) ; tt01.efg[0] = 0X0 ;...
Last updated: -
C program to read and write yuv file
Hi, I'm new to the video processing. I have an assigned task to code for reading a yuv file and write it content to another yuv file using a C program. How can I achieve this?
Last updated: -
How to replace Regex in iSeries
How can I use Regex Replace with iSeries? I can see how to match Regex via C++ libraries, but not how to replace it. Any ideas?
Last updated: -
how to run c++ code off of flash drive
Hi,I want to know if its possible to run my c++ programs that i write when i connect the flash drive to my PC. Just run them as portable apps and that they would function properly. Some of the programs are really simple like a calculator, etc. I also want a very simple UI to works.Thanks!
Last updated: -
Start and Stop Hyper-V using .NET application
Is there a way for a .NET application to create/start/stop Hyper-V virtual machine?I'm looking to create an automated means of starting/stopping virtual machines from a C# application. I know you can do it via P/Invoke but that's not the best option for me. Can anyone help me out here? Thanks!
Last updated: -
Is there a way to detect antivirus program using C#?
I might have a virus problem with one of my machines so I'm trying to figure out if there's a way to detect an antivirus software inside of it using C#. I understand that the Security Center detects software but is there a way using C#? Thanks for all the help!
Last updated: -
I'm trying to write a web application in C+ for .Net to scan user-uploaded files for viruses. Unfortunately, it seems to be beyond my skill level, specifically drafting an API to perform the check programatically. I could use some help or a good tutorial.