Software Development Network Logo
  • Smart Devicet
  • Visual C#
  • VS Team System
  • Visual Basic
  • IE Development
  • SQL Server
  • Visual Studio
  • Visual C++
  • .NET Development
  • Microsoft ISV
  • Visual FoxPro
  • Windows Forms
  • Game Technologies
  • Windows Vista
  • Audio and Video

Software Development Network >> SaravanaKumar_1977's Q&A profile

SaravanaKumar_1977

Member List

No.1 Of Mew
Cyberjunkie
RELJR
TuanTuan
JVJ
DevanDanger
tribal
andien_geo
BJHop
brad0999
James Walsh
AndyL
steveareno
DavidAWinter
Dave Jenkins
i.i
GSReddy
Graham Wager
allstar1234
ron nash
Only Title

SaravanaKumar_1977's Q&A profile

  • Visual C# native struct --> C#

    Hello. I have a C# application and a native dll written in C++. I have a function called ReadHash() in native dll. I need this function to return an array of bytes. I made a struct called HashRecord in C# and C++. it looks like this typedef struct tag_Hash_Record { BYTE HashCode[]; } HashRecord, *PHashRecord; and public struct HashRecord { public byte [] HashCodes; } the ReadHash() function returns HashRecord structure. but when i call this function from c# app, I get a MarshalDirectiveException sayng "Method's type signature is not PInvoke compatible.". anyone knows how to fix this problem thanks. Hi, I've the same problem. My struct in C++ is: typedef struct{ float pintura; ...Show All

  • SQL Server Parsing transaction log

    I want to write a program that works like SQL log rescue or ApexLog or one of the many other programs that are too expensive to buy. I would like to ask the question, does anyone know how the format of the log works Or how can I parse the binary file into readable text Can I contact Microsoft about this Please do not reply and tell me to buck up and buy one of the 3rd party software packages available. You can start by checking out DBCC LOG -- it's undocumented, but do a Google search and you'll be able to find the inputs and outputs.   Personally, I'd still go for the 3rd party solution -- Log Rescue is only a few hundred dollars.  I don't know how you value your hourly tim ...Show All

  • Windows Forms Windows Form Designer bug in causing an event handler to disappear, C# example

    I am not sure whether the following scenario is a bug in the Windows Form Designer or some failing in my own implementation, but I hope someone can look at this before I submit it as a bug. The scenario is: I create a CLR class library project. I add a component class, let's call it CsCmpA. I add two virtual events to the component class, both of type System.EventHandler, let's call them EventA and EventI. I create backing variables for both events, let's call them bEventA and bEventI respectively, and use the long form of specifying the events. I also override the Equals and GetHashCode virtual functions. In the same assembly I add a UserControl. The user control, let's call it CsUserU, has a property, let's call it PropertyU, w ...Show All

  • Visual Studio VSIP - Path to selected folder

    I am having some problems figuring out how to get a Path to a selected Folder. By path I mean Full Path. Or at least something that would get me there. Currently my code looks like this ( in the Exec method, so i know my item is selected, and my command fired ). I am aware that ON the UIHeirachyItem I have no path, however, I should be able to navigate to the project Item, and get the path from there, and attach my items name to it. ( Perhaps there is a better more reliable way ) In any case, my projectItem is always returning null, and in any case, i have no guarentee i am acutally accessing the project item, so I would appreciate any help. Thanks. try { UIHierarchyItem fld = firstSelectedUIHierarchyItem(); // _applicationObj ...Show All

  • Visual C# when i do a range.select in get a hresult exception HRESULT : 0x800AC472 or 0x800A03EC

    hi , i am using excel in my application in that i get an error in my range.select command ,the range i have selected is worksheet.get_range("A1","A1") and i got the above error any suggestions. Thanks Prasad Sethuramalingam Then you need to check if you are trying to access the same sheet in multiple threads Are you accessing the sheet from a different thread Is the Excel sheet itself is locked or protected ...Show All

  • Windows Forms Creating report without using crystal

    Hi all, I want to create report by using C#,net.I know the concept of creating crystal report,I want to create other than crystal report,can i create report.If it possible then tell the way to creating report.Plz help me...... Thanks, justin(Navyajeevan) Hi, Mark, Thanks for ur reply. I heared that, the weightage of the Report wil be more and the performance wil be less, when we use Crystal Reports in the Web application. so i planned to go for some other option. Please suggest a good option for me to generate reports in my web application. U told abt HTML and txt format what is that. Please help. thanx, justin(Navyajeevan) ...Show All

  • .NET Development MS06-061

    last night, wedenesday, i, for the first time, noticed a microsoft vulnerability on my pccillen scan; referring me to the vulnerability addressed in the microsoft MS06-061 bulletin . i can't figure out how to solve this particular vulnerability. "the microsoft vulnerability" MS06-061; rated as "very risky," by my pccillen security software; continues to be identified by my security software; no matter what actions i take! i am dedicated to the following ongoing practices AND have taken the following steps, attempting to address this vulnerabilty, with no success: i am religious about updating and scanning my computer (I scan it daily, with "full system scans"; using not only my pccillen, but a ...Show All

  • .NET Development Access 2003 vs VB 2005

    I am currently develop a software that reads of many different databases. I am trying to create database in ms access 2003 that hold the nessary information from different databases. I have foxpro, oracle, csv. Some of them will need some data massaging to show up correctly in ms access. I will have to import into ms access from the different sources. I need some guidelines to approach this problem. My thought was to create a vb 2005 data massage module, transfer the data into ms access. my concern is the performance. ms access seems to import the foxpro table much faster that tableadapter but i havent found any VBA code that data massage it. also i need to update the ms access database every day. I havent found any code for vb 2005 that t ...Show All

  • Smart Device Development Wap wakeup

    Hi, Has anyone tried the wap wakeup for WDP   I've followed the example in the msdn library but nothing happens.. not even any errors.  Is there a procedure that i am missing Thanks, Hasnul How are you sending your datagram Sounds to me like your SMS is not formed properly or your delivery channel may be rejecting raw SMS. E.g. in my experience only one of the US carriers I tried delivered the provisioning SMS messages. The same thing may be happening with your WDP datagarams ...Show All

  • Smart Device Development performance profiling tool for Windows Mobile?

    Hello everyone, Are there any performance profiling tool for Windows Mobile Either for Windows Mobile 2003 or for Windows Mobile 2005 is ok (either simulator or real device is ok). Any reference quick start turorials I simply want to generate a result like gprof generated on Linux, like the percentage of each function consumed (and sorted from the most time consuming function to the least time consuming function) and the related consumed time stamp. thanks in advance, George Try Remote Performance Monitor tool http://msdn2.microsoft.com/en-us/library/ms894608.aspx Thanks, Achal VSD,Microsoft ...Show All

  • SQL Server XML Task inside Foreach Container, fails all iterations after first failure

    I am looping through xml files and validating them with the XML Task. On sucess I want to perform task 2, on failure I want to perform task 3. When one file fails to validate all subsequent tasks fail. I have also tried putting the result in a variable instead of using the success constraint. I get the same result, the variable keeps the failed value after the first file fails. Any advise is greatly appreciated. That sounds like a serious bug with the XML Task. Are you using a ValidationType of XSD with a SourceType of FileConnection ...Show All

  • Windows Forms User Control and localization

    I want to create a user control. in some circumstances the control should print out a message. I'd like to localize this message to print it in the user's language. What would be the best strategy to do this Should I create a Ressource file for every language in my control and how do I access these ressources or should I use my forms ressource files and assign it to the control via a public property Thanks Thomas OK, I know this feature. My question was not exact enough. I want to print out a message wie a MessageBox. How can I localize the text of the MessageBox Is there a similar way to the lacalization of forms or do I have to use the ressource manager Thanks ...Show All

  • Visual Basic How to use the WMI classes "Win32_LogicalFileAuditing" and "Win32_SecuritySettingAuditing"?

    I have to extract details about file, directory and registry auditing setting. I am not able to use the above WMI classes directly to get the required data. so can anyone tell me how to use those classes to get the required data You can download the WMI SDK from MSDN, lots of information there. When I used WMI I have had to look at some of the scripts on MSDN and convert them, looked on some of the other sites I have used and none mention or make use of these classes. ...Show All

  • Visual Studio Express Editions I can't build a .cpp file?

    Hi, I need help. I'm new at this. I'm trying to run and build a .cpp file from my desktop in Visual C++ 2005 Express Edd. And the problem is that the program doesn't let me run the program at all. I have the Build icon and it's not active. I'm a student and when I try this at school in an older version everything works fine but when I try to work on the same file at home I don't get any response unless I make it a project. What can I do to let a file as soon as I open it with just clicking the build and run bottoms to work Thanks What's so bad about a project VC++ has to know some things about what type of app you want: native console, native Win32, CLR, static runtime, dll runtime, releas ...Show All

  • SQL Server xp_smtp_sendmail

    Any idea when this extended stored procedure gets installed in SQL 2000 as I get just the error message below when I try to run it: Could not find stored procedure 'master.dbo.xp_smtp_sendmail'. This procedure is not a feature which comes out of the box of SQL Server. YOu have to download it from a third party and register it first: http://www.sqldev.net/xp/xpsmtp.htm HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network