|
Hi,
I want to get rearm count of windows 7 OS.
I want to do it in C#. Please help me out in getting rearm count of Windows 7 opearting system
Thanks in advance,
AR Reddy
|
|
|
|
|
Explain 'Rearm Count'?
Motivation is the key to software development.
|
|
|
|
|
|
i want to place files from my system on other system by using .net source code
i don't want share folder on other system
i want to do this diagrammatically how is that possible please help me
|
|
|
|
|
it's simple..,
see the below code..,
FileStream Fs = new FileStream(@"\\192.168.1.12\watcher\" + FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
Rajesh B --> A Poor Workman Blames His Tools <--
|
|
|
|
|
actualy i want to update files on other system as when as i edit on my system ( mean place my files on other system)
but i cannt share folder of other system
and i am working in workgroup environment
and is it possible using http protocol if yes then guid me plz
modified on Saturday, October 17, 2009 1:17 AM
|
|
|
|
|
First, if you don't want a share exposwed by the other machine, you'll have to use the administrative drive shares (if those haven't been removed!). That would mean you have to use the UNC path to teh machine in the form of \\machineName\C$\someFolder\someOtherFolder\filename.ext . The problem is that your code has to be running under account that is recognized by both your machine and the target machine NAD IS AN ADMIN LEVEL ACCOUNT ON THE TARGET MACHINE.
|
|
|
|
|
\\machineName\C$\someFolder\someOtherFolder\filename.ext.
if i will use this then other systems guest service creats problem
is there any API or method to accessfiles on other sytem by providing administrator username and password
for example
Access(mashinename+filesPath, adminUserName, adminPassword)
??
|
|
|
|
|
Yep. Take a look at this[^].
|
|
|
|
|
i can not use domain name system
i want to do it in workgroup enviornment
????
|
|
|
|
|
That's the only method you have. The "domain" would be the name of the target workstation since the admin account your use must be on that workstation. That's IF the workstation is not part of a domain.
|
|
|
|
|
I had created a setup for my project in c# using visual studio. Then I installed it. After that when i try to open any software in my pc, it shows the shortcut is missing. Then when i click add/remove programs in the control panel it opens my project. Please tell me what kind of problem is this? And how to resolve this problem?
|
|
|
|
|
I made my project in Visual Studio 2005 using C# language , SQL SERVER 2005 in Backend and Ado.net connectivity. Now I want o make .exe file (Windows setup file)
But I dont know how to do it, So guys help me ....
Thanks in advance....
|
|
|
|
|
You mean you want to make an MSI package? (by compiling your project you will get an .exe file if that is your projects output type)
Add a Setup Project to your solution in VS (File >> New >> Project >> Other Project Types >> Setup And Deployment >> Setup Project).
|
|
|
|
|
|
how do i get the duration of a video?
123456
|
|
|
|
|
In what context ? The windows media player control will tell you. What have you tried ?
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
thank you verry much
123456
|
|
|
|
|
Hello,
First of all , i would like to thank the whole commmunity for sharing so much knowledge and i can say that i learned programming from here.
I'm a developper with a middle level working essentially in gestion programming with databases and sites.
I'm really interested in developping now a new type of program for my Windows Mobile Device, a "secured" voip application.
So first of all i gathered all the ressources about the subject , but i still block on the complexity of the workflow and don't know where to start from.
To expose it clearly here are all i found on voip & securing the media stream :
> PJSIP - Open Source SIP Stack
>Sipek Wrapper of Pjsip for Windows Mobile(Not updated anymore)
>The libZRTP library used by Zphone to encrypt media stream
My problem here is that all these libraries are first not compiled in .dll and i could not use them easily, and second there were written either in C or C++, and i'm not expert in converting all of them to dynamic dll. Of course i'm willing to develop in C# since i do not really care of performance issue, if i could make a simple call with a maximum of 2 participants (i'm aiming eventually at 4) in conference i will already considered it as a success.
If anyone could point me to the right direction or want to be part of my aventure, he'll be welcome !
You can contact me by mail or by PM on this site.
Thank you for reading me.
|
|
|
|
|
You can use p/invoke to call a C++ dll. www.pinvoke.com is a good place to start.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
|
Your class must be inherit from MarshallByRef
|
|
|
|
|
How do you query a odbc connection for it's list of tables?
|
|
|
|
|
You don't query the connection, you query the database it is connected to, and that depends on the database. In SQL Server; SELECT * FROM sys.Tables
only two letters away from being an asset
|
|
|
|
|
Have a c app that may be converted to c#, but I am having a problem with this:
From OTHER apps written in C++, a buffer is written to the socket (which will be read by the future C# app) from variables based on several different TYPEDEFs, for example:
typedef SAMPLE1
{
int32 msg_id;
char status[15];
float value;
};
...
...
SAMPLE1* samp;
samp->msg_id = 100;
strcpy(samp->status, "NOTYPEDEF?");
samp->value = 120.123f;
send(samp, sizeof(SAMPLE1));
...
...
In the soon-to-be-replace C app, I just read the socket buffer and based on the msg_id, cast it to the appropriate TYPEDEF, functionaliy which for some silly reason Billy G. decided C# did not need.
Does anyone know of a way for C# to parse thru the socket data, where the sending apps cannot be modified to change how the data is sent?
Unless I'm missing something, serialization does not seem to be an option because the data read will not hold any object data.
|
|
|
|