Answer Questions
R1ZWAN Interested to develop a logging framework based on custom attributes?
Hi all, I wonder if someone is interested to start with me a project that would allow to log a program execution using custom attributes. The idea would be to just have to apply a custom attribute to the methods you want to trace (using widlcards to match many methods). The AOP weaver would be PostSharp , whose I am the principal author. I have already written a very naive sample but it is not aimed for production use. I am open to many technical solutions for logging: Writing everything from scratch Probably not. Log4Net, Enterprise Library Why not. I am also open to the project hosting (CodePlex, SourceForge, ...) and to the license. This will be discussed between contributors. If you are interested to contribute, ple ...Show All
Gh0st in the shell Using Vista?
Good idea Joe! Okay, I'll go first. I'm using Vista RC1 full time now. The computer seems quieter--doesn't take so many trips to the hard disk for VM paging. I find going back to XP an unpleasantry, so I think Microsoft is succeeding here. Glass is nice. I think the performance is what I expected it to be on an Intel Advanced Graphics card (Dell Dimension 9100). Office 2007 is also pleasant to use, but they stil have some cleanup work to do on their UI. Who else is using Vista Brian Is Vista noticeably slower than Windows XP SP2 Is it faster, for the matter I would never recommend installing over Windows XP until Vista RTMs. You should install on a ...Show All
centexbi XML DOM using JavaScript
Hi everybody how r u Actually i am really in big trouble for very small problem i guess. I am manipulating a xml file using xml dom using javascript, after manipulating the dom tree internally, when i tried to save the file i am getting "permission denied" error. I have tried saving file locally as well remotely. since my code is little big, i am giving u a dummy example. var xmlDoc1 = new ActiveXObject("Msxml2.DOMDocument.4.0"); var str = "<Root></Root>"; xmlDoc1.loadXML(str); var path = "C:\\1.xml"; xmlDoc1.save(path); for this also i am getting error. Thanks a lot. Hi Digamber, MSXML's security scheme is based on Internet ...Show All
mammoo CAN SOMEONE HELP PLEASE? WDS STILL NOT WORKING
Hi Everybody, It's getting very frustrating that WDS Beta 2 is still not working for me. It only works from within Outlook 2007 beta 2 technical refresh 2, but i always get " NOTHING FOUND " from the normal Search Deskbar.This while i basically went through all possible settings 100 times and installed, deinstalled and reinstalled the product multiple times, the last two weeks. Also if i install another search engine, like your friend Google or Copernic, it works instantly. Something must be broken somewhere, but everything else on my computer is working fine and actually it's quite a fresh install. Can somebody please make a point about this and help me out Am i the only one with this problem, i can't imagine. Sure, ...Show All
Ccm1st How to calculate the mailbox hash to construct URL path
Hello, It seems WDS is using some hash number in MAPI url to locate items. For example, the text in red : mapi://LocalHost/default/Mailbox - Wang, George ( $d3f5 )/ Is it possible to expose the hashing routine so that we can construct the URL from mailbox ENTRYID Here is a doc about something similiar, http://blogs.msdn.com/stephen_griffin/archive/2006/05/10/594641.aspx , search for "ComputeStoreHash", not sure if they are related somehow Thanks! David - here is a c# version of the 2.6.5 eid decoder. We don't have one for 3.0 yet, but it is coming. As always, I have to say that this code is not something to which Microsoft applies any warranties or support guarantees ...Show All
Whoisit Measuring page load time and amount of data.
Hi, Can anyone give any ideas on how to measure the time it takes to load a page and the amount of data transferred Any kind of ideas are welcome. What I want to do is: 1. Clear IE cache (i already know how to do this.) 2. Request IE to open a page 3. Get indication when the operation is complete (all available files downloaded). 4. Get to know the amount of data transferred ( and maybe number of files, etc..) I am planning to develop in C++. Can i somehow use WinInet to do this I also should be able to view the page in IE. Thanks, - Janne_K Hi Janne_k Iam trying to get the page load complete from IE Can you help me how to achive that Iam using VC 6. some sap ...Show All
Ilja S. IE7 Vulnerability discovered.
Hi. A vulnerability has been discovered in Internet Explorer, which can be exploited by malicious people to disclose potentially sensitive information. http://secunia.com/Internet_Explorer_Arbitrary_Content_Disclosure_Vulnerability_Test/ What do yo think about this Regards. It's the final version, not RC, i think that was released today. Regards. oh really wow...let's have a look :-) Still however, I stand by my opinion ;-) You can't expect everything to be bang on target and it doesn't help when people constantly criticise and dont help, it's like a record playing over and over and over and over.... I guess it depends on the severeness and depending on it it may be put up on Windows Update as a download as a sec ...Show All
Hacker Boy JavaScript - same image, over and over...
Hey All... I'm implementing a custom treecontrol in JavaScript. Nodes are added dynamically via ajax returns. When this happens, certain images that are displayed on each node arent being displayed. Upon further investigation, I see that as the same image is being used on node after node, we're going back to the server each time to get the same image over and over again... For each node, I'm including an <img src=images/...jpg /> tag in the innerHtml property of an appropriate element. As I say, I keep seeing the server hit over and over for each node - I hope somehow this is related to why I dont see the image at all on new nodes. Me thinks this image should somehow be cached - is this something I have to make happen explicitl ...Show All
Stuby085 How to calculate the mailbox hash to construct URL path
Hello, It seems WDS is using some hash number in MAPI url to locate items. For example, the text in red : mapi://LocalHost/default/Mailbox - Wang, George ( $d3f5 )/ Is it possible to expose the hashing routine so that we can construct the URL from mailbox ENTRYID Here is a doc about something similiar, http://blogs.msdn.com/stephen_griffin/archive/2006/05/10/594641.aspx , search for "ComputeStoreHash", not sure if they are related somehow Thanks! Could you show a sample of how you went through the returned URL and were able to open it if you grab the entry id, and pass it through the example algorithim, you get a hex returned value. That doesn't give you the path though... an ...Show All
Kelly R. Martin Adding Image Management to Catalog Manager
Hi, I'm currently working with Commerce Server SDK to add Image Managemet to the Catalog Manager. For that, I used the 5 part blog by Max Akbar. It was quite helpful and it almost works now. My problem now is, that i want to get the ProductID, the VariantID, the CategoryName as well as the Catalog Name from the Catalog Manager so that I can use that afterwards for the Entries into the SQL database. How do I get this Information from my new created Control, UploadImages, which is inherited from UserControlBase and IEditableItem Where exactly are those infos located and if I can't get dem dirrectly from my User Control whad do I have to do and pass on, that it's availlable for my purpose Thanks ...Show All
yosonu Customizing IE Context Menu using C#. Need Help
I am having trouble trying to understand how to customize the IE context menu using C#. I have to this point sucessfully implemented IDocHostUIHandler.ShowContextMenu and I have the CPP example from http://msdn.microsoft.com/library/default.asp url=/workshop/browser/webbrowser/browser_control_node_entry.asp . The problem is I don't know how to translate the CPP example into the C# equivalent. Has anyone customized the IE context menu using C# Thx in advance - Mike ...Show All
Vijay Chegu How to calculate the mailbox hash to construct URL path
Hello, It seems WDS is using some hash number in MAPI url to locate items. For example, the text in red : mapi://LocalHost/default/Mailbox - Wang, George ( $d3f5 )/ Is it possible to expose the hashing routine so that we can construct the URL from mailbox ENTRYID Here is a doc about something similiar, http://blogs.msdn.com/stephen_griffin/archive/2006/05/10/594641.aspx , search for "ComputeStoreHash", not sure if they are related somehow Thanks! David - here is a c# version of the 2.6.5 eid decoder. We don't have one for 3.0 yet, but it is coming. As always, I have to say that this code is not something to which Microsoft applies any warranties or support guarantees ...Show All
mickdelaney Color and size info
Does anyone know how I can access the Color and Size fields for the product variants in the Starter Site via the API Iterate over skus and display the information. The closest I've come was seeing the values among ~60 others in Variant.DataRow.ItemArray. I'd like to see if a property exists and if it does retrieve the value. For the compiler error, it was a mistake in the code. It should have been returnValue = (string)pf.Variants[VariantId][columnName]; As far as the other casting error goes, it looks like you are trying to get variant from a product and not from a productFamily. You can write your own function to get the product from the catalog and then get the ...Show All
jean at spear IE7 icon Problem
Firstly, let's clear up the icon definitions. Favicons are those that are downloaded from the linked website and show the websites logo or whatever. The icons that we are all concerned with here in this fourm that are in error are the windows icons. These icons along with an array of others are usually contained in system dll files. Indexes into these files are kept track of in the registry and in the shortcut or favorite itself under properties. For example if the dll has 256 icons and windows calls the dll as shell.dll, 255 the 255 is the index into the icon file. In this case the last one (base 0). The problem here is with IE7. The registry entries under HKEY_CLASSES_ROOT (url and internetshortcut) appear correct. I ...Show All
MeanMisterE IE 7 opening to Run Once page with error on it.
I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. So what do you recommend I do Uninstall IE7 from my computer and download another version as I originally got the beta version. Then turn of my security center and install it. Me too!!! Any updates ...Show All
