16,002,287 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Michel Godfroid (Top 33 by date)
Michel Godfroid
23-May-10 7:35am
View
NO.
Michel Godfroid
13-May-10 7:04am
View
Hang on, What exactly are you trying to achieve? VDS works one level above the device driver, and is a VIRTUAL Disk service. Microsoft is trying to standardise a number of low-level, OEM proprietary operations through a standard interface. It sill depends on the underlying interface. If you can do your operation through DISKPART, you should be able to do it programmaticaly, but the normal way of doing this would be through the WMI/CIMV2 interface, or through scripting (which will call the WMI/CIMV2 interface anyway)
Suggest you post a new question, giving us some more details on what you're trying to achieve.
Cheers,
Michel Godfroid
13-May-10 4:56am
View
We'll need more details: Operating system and build, What kind of project is this? Does it happen all the time, only on some configs?
Michel Godfroid
13-May-10 2:17am
View
You're unlikely to find an answer here. First because you do no tell us what is your exact problem ("I cant get the code working according to what i want" is a statement, not a question). And even then, you would be hard-pressed to find a PIC32 specialist here. I suggest you take this question (after turning it into a question) to specialised hardware forum, probably associated with your hardware manufacturer.
Michel Godfroid
12-May-10 10:36am
View
Actually a computer in S4 state is pretty much off. If not setup for WOL, it's indistinguishable from power-off, except for the boot loader pointing to the hibernate file :-)
Michel Godfroid
12-May-10 10:25am
View
My mistake... Sloppy reader :-)
Michel Godfroid
12-May-10 8:39am
View
I fear you'll have to use cookies then: the login page should deposit a cookie on the client when the login successful, and your next page will only load if the cookie is present, otherwise it will redirect to the login page. The next page also removes the cookie from the client.
Michel Godfroid
12-May-10 6:06am
View
The bank sites use https, not http. https session are not shared.
Michel Godfroid
12-May-10 2:26am
View
I think it does. I switched to chrome ages ago :-)
Michel Godfroid
11-May-10 11:33am
View
It depends :-)
Do you want to disable all USB stuff, or just mass storage devices?
Which Operating System will be running on the kit?
Michel Godfroid
11-May-10 7:38am
View
Your program in it's current state will run on the grid. Only it will use one processor and one thread, and will take as long as it does now.
In order to use the grid, you have to re-write your program so that the grid 'knows' how it can spread your program over it's processors. Informing the the grid about these capabilities is done through a parallellisation library (like OpenMPI). There you will define the parallel architecture, and how messages will be passed betwween grid cells). the whole subject is too large to treat here, but your University must have a Grid information center, where you will find literature and assistance in developing your programs. Colleagues/students who have used the grid before may also be helpful. I'm sorry but the whole subject is just too large to treat here.
Michel Godfroid
11-May-10 7:08am
View
What technology are you using?
Michel Godfroid
11-May-10 5:46am
View
Hi Pete, do you know if this works for the new (office 2007) formats?
Michel Godfroid
11-May-10 4:21am
View
Updated your subject, and reformatted text. Plzzz help me is not a really good subject line.
Michel Godfroid
10-May-10 11:38am
View
It is unlikely that the author of the article reads your question here.
If you want to reach the author, you should use the faq forum at the bottom of the article.
I suppose this is the one you want : http://www.codeproject.com/KB/sharepoint/SharepointReservation.aspx
Michel Godfroid
10-May-10 11:30am
View
Attaching images is not an option here. Either point us to some website which describes your data, or post your images on some free picture website and supply us with the link.
Michel Godfroid
7-May-10 4:13am
View
Please don't use the answer button to reply to questions. use the 'add comment facility, that way we get an email with your comments.
Michel Godfroid
6-May-10 5:15am
View
What mail system are you using? And 800 bytes sounds tiny for a zip file....
Michel Godfroid
6-May-10 4:06am
View
Using password files is usually a bad idea. What kind of application is this and on what platform?
Michel Godfroid
6-May-10 4:05am
View
Please do not post questions as answers. Use the comment field for that. This question now looks answered, and no-one is the wiser.
Michel Godfroid
6-May-10 4:01am
View
What database? Does it have time stamps?
Michel Godfroid
5-May-10 12:39pm
View
no, no. The program you have to run is 'gpedit.msc' You'll then see the local computer policy in that program.
Please use the 'add comment' feature when replying to an answer. If you just post a fake answer, we don't see that. Comments are emailed to us. (like this one now is to you)
Michel Godfroid
5-May-10 9:19am
View
I have a feeling that's not what he means :-)
Michel Godfroid
5-May-10 9:17am
View
All right, consider the following:
You have a native dll, which works fine when called from native code.
You add a CLI wrapper, to call it from managed code, and this causes errors.
The error must therefore lie in the marshalling/processing in your CLI code. In there, there is probably a parameter that you pass by reference and should be passed by value, or vice versa, or you don't have the necessary levels of indirection.
That's why I said that it is probably a case of wrong signatures, but you are the one generating those signatures.
Note that the problem is probably not in the NativeObject constructor, but in some data that was initialized previously in your CLI code.
Michel Godfroid
5-May-10 8:59am
View
Please be more specific. Attach to WHAT?
Michel Godfroid
5-May-10 8:55am
View
My mistake, the C# syntax is lock http://msdn.microsoft.com/en-us/library/c5kehkcz(VS.71).aspx
Michel Godfroid
5-May-10 8:30am
View
You're right, I didn't realise he was referring to the Messagebox Class. Apologies :-)
Michel Godfroid
5-May-10 6:29am
View
And what is the error you get? And where?
Michel Godfroid
5-May-10 4:44am
View
Thanks for the ref, mate :-)
Michel Godfroid
4-May-10 6:01am
View
It would be better if you gave us some idea of your exact requirements: Is this for a corporate environment, where everyone is connected to an exchange server? What is the purpose of your mail filter? What is the target audience? How do outlook clients clients connect to the mail server? Do you want to check multiple email accounts?
If this a hobby project, for your personal use, you'll probably be disappointed by the amount of work it's going to take. If you want to learn how to develop for outlook, by all means, read up on it and test developing add-ins and the automation model. Your best way forward might be downloading one of the projects you've encountered, and try to build it step-by-step, trying to understand what is happening at every step. (and get a separate mail-account for your testing, you wouldn't believe how fast you can lose your mailbox doing this).
But stay away from the pst file, it's evil! (You can't open it anyway when outlook is running)
Michel Godfroid
4-May-10 5:05am
View
1) Don't shout. We're not deaf.
2) Try to form a sentence. Since you're from the US, I expect that your grasp of English is at least as good as the rest of us.
Michel Godfroid
4-May-10 3:07am
View
How does it shut down abnormally? Any error message, exceptions? what is the TCPSERVER component? Any links?
Michel Godfroid
4-May-10 1:22am
View
What kind or remote connection is this? Is it a remote cmd prompt, a rdp session, a remote powershell? Do you actually logon to the system?
Show More