|
Member 4431097 wrote: How can i write an application that can "copy" all files from an NTFS volume
Read point #2 in this post[^]
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Ok, I have an application running off a linux live CD, now this will access the partition in which windows is installed (NTFS) Now, when i try to access the "Documents and Settings" folder, i cannot do it because the NTFS partition permissions do not allow me to get access to it. How do I bypass this, I need to access the file, (Only copy it not necessarily use it!)
Please tell me if you need any more information!
Thank You
~Salil
|
|
|
|
|
If you're accessing an NTFS partition from Linux, then NTFS permissions can only be enforced by the NTFS driver in Linux. Now, that driver has no idea of the Windows accounts and things...so it can't enforce them!
Most likely, your driver's not set up quite right, or the particular folder you want to access is encrypted or compressed - most Linux NTFS drivers can't access those.
So - look at how you've mounted the NTFS partition!
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Hi,
I want to implement page turn effect for the dialog.
Means, at the time of hiding the dialog, it should be hidden with the effect of page turn.
It should look like we turning a page.
Can we do this in MFC?
Thanks in advance.
-Vinayak
|
|
|
|
|
That would be difficult to do with MFC.
A few effects are supported using AnimateWindow .
For additional effects I suggest you go for flash or flex.
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
Here is one article that shows some animation for the dialogSliding Dialog Windows[^].
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
|
Hi! Programs CMOS Boot from USB
Vietnam I
The level of the average programmer.
Sorry, because I asked many questions.
Assembler too difficult, I do not know it.
I see the bochs-2.4-msvc-src but I do not know.
Please, help me Who wrote the CMOS Boot from USB to 1
Partition of the HDD 1 is divided into 4 Partition.Using
memory: 510K.
Boot-> create 1 window with Style, interface (GUI) by
my style + 1 ImageButton with event: Shutdown
computer.On window that displays mouse position.
All use VC6 viet.Please, sourcecode
Vietnam
Thank you very much!
Vietnam is very beautiful country to invite me.
|
|
|
|
|
tuan1111 wrote: I have read Development Operating System Part I
great!!! How about reading the second part just to check if everything written in there is correct?
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
which book are you referring too? same book we studied in our graduation?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
ThatsAlok which book are you referring too? same book we studied in our graduation?
nope!
I graduated reading MSDN
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
_AnsHUMAN_ wrote:
I graduated reading MSDN
ohh i missed that during graduation
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
look for linux sourcecode.. google it
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
Hi i have to use _RecordSetPtr in my code .but i am not able to do .I have included the follwing file .
#import "D:\\..\\..\\..\\..\\Microsoft\\Redistribute\\MSADO15.dll" \
no_namespace \
rename("EOF", "adoEOF") \
no_implementation
Still I am not able to access _RecordsetPtr ..But i can access '_RecordSet'..
What is the diffrence between the two. Please provide comments
|
|
|
|
|
pandit84 wrote: Still I am not able to access _RecordsetPtr ..But i can access '_RecordSet'..
What is the diffrence between the two.
_Recordset is the interface pointer type for which _RecordsetPtr is the managed equivalent.
_RecordsetPtr will be defined like this in your msado15.tlh file: _COM_SMARTPTR_TYPEDEF(_Recordset, __uuidof(_Recordset));
I added this line to import ADO - it defined both _Recordset and _RecordsetPtr
#import "libid:B691E011-1797-432E-907A-4D8C69339129" no_namespace rename("EOF", "ADO_EOF") no_implementation
I'd rebuild your solution, see what comes out.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Stuart Dootson wrote: _RecordsetPtr is the managed equivalent.
Can't use managed like that anymore dude, it's been .NETisized
|
|
|
|
|
I've always repurposed 'management' to suit my own ends
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
LMAO I've got some managers I'd like to repurpose!
|
|
|
|
|
Finally i got the answer...
I have to include this in my .cpp file .
#import "..\..\..\..\ThirdParty\Microsoft\Redistribute\MSADO15.dll" no_namespace \
rename("Parameters","ADOParams") \
rename("Connection","ADOCon") \
rename("Parameter","ADOParam") \
rename("EOF", "adoEOF") \
no_implementation
This will help to avoid the error C3221 : cannot chanage guid of class 'Parameters'. .
|
|
|
|
|
I'm trying to copy a STL to a memory mapped file, but I can't figure out how to get the actual size of the map to know how many bytes to copy. map::size only returns the number of items in the map, and the sizeof operator returns an impossibly small number.
I'm not sure it'll help, but my map is defined thusly:
struct struct_XFer {
char name[MAX_PATH];
double size;
double transferred;
COleDateTime created;
COleDateTime modified;
};
map <int, struct_XFer> theMap;
typedef pair <int, struct_XFer> XFer_Pair;
I've been struggling with this for several days... any help would be greatly appreciated!
-MZR
|
|
|
|
|
You actually need to write some code to serialize it ( see, for instance [^]) or use boost serialization [^].
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Ordinary std::map implementations don't work in a way that lets you do that - see this thread[^] for the reasons why and suggestions of what you can do to get around that.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
|
yeap you have lot of work to do if you use memcpy on map ,
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
please
it is required to write a ( c or c++) program in order to which takes atime expression as astringand perform all the necessary parsing on the expression and generate the fourier series expansion of the expression. the program should be able to receive the period of the wave under study even if it was a piecewise continuous expression
|
|
|
|