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

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

xplosiv_1

Member List

Umesh_DB2
Muhammad Saeed Iqbal
Dave2UisDave2Me
Limehill
ashish12345
mcrfanatic
Chuck Turner
Keith Chapman
Thomas Weiss
Paval
JDCAMP
Exploder
Son_seph14
davefriend
Honza N
lalithak
jbassmanp
Umati
Jim Perry
Sanjukta
Only Title

xplosiv_1's Q&A profile

  • Visual Studio Line-breaks in <remarks/> bloc in SandCastle

    Hi, Anybody knows how to insert line-breaks into a <remarks/> bloc I tried the tags I used in NDoc without success. More generally, is there any documentation about the accepted tags Thanks Philippe CSC wil process html or any other tags. We are nuking the HTML tags and not processing the other nDoc custom tags in our transforms currently. We will definately provide support fot this scenario in our RTW. Anand.. ...Show All

  • SQL Server "Who's the idiot that designed the file destination? "

    Hi everybody, I'm new -- sorry, I couldn't figure out how to reply to this thread, I think because it's locked- so I started a continuation. What I am wondering about is if you indicate "text qualified= true" then why does it still get confused by embedded commas in quote-delimited text; I would think that the "text qualified" parameter would take care of that. Can anyone explain So as a work around I am thinking of running a perl script via "Execute Process Task" and clean up the commas that way, since I have little control over how it is produced.. the app it comes from has no ability to contol output, and it outputs it's tables as comma seperated files, with text fields surrounded by quotes. I was hoping to stay inside SIIS fo ...Show All

  • Visual C# convert some old C++ into C# code

    I am trying to redo a program that was originaly done with C/C++. The abilities of C# means that we can do the same thing more elequently and without as many outside commercial programs. The problem is that I do need to use one commercial program and I am trying to figure out how to call it. I have found the code that the old programmer used to execute the other program. I am trying to figure out how to translate that into C# code. I found the following code snippet on MSDN, so I know that the original programmer did it by the book, but I don't know how to do the same thing in C#. Here is the code: #include <windows.h> #include <stdio.h> void f () { STARTUPINFOA si; PROCESS_INFORMATION pi; ZeroMemory( &si, s ...Show All

  • Visual Studio Dynamic Graphic Location does not work

    I use Visual Studio 2005 with Crystal Reports, and have a 'path' field where I store the absolute path of some images. I used the Graphic Location formula to change the image path for every record, as follows: formula = "C:\Inetpub\wwwroot\v2\catalogimages\"+{TestReport.Κωδικ : prodid}+"_1.jpg" The path is correct. When I use the same path in Explorer I get the image. However, when I run my report the image does not refresh and I see the default image (as if the file is not found) For testing reasons, I have also set the image to be a hyperlink pointing to a file using the same formula with the exact path, and when I click the image I get the correct image! How can I refresh the image object to show the correct image ...Show All

  • Visual Studio Tools for Office Right Click Event on Email Item

    Right now i am trying to edit the right click menu of outlook 2003 using VSTO. also i want its events so that i can do some necessary work becore the right click menu. Any help regarding this would be appreciated. Can you be more specific about which mean you mean Do you mean the context menu in the main Outlook window when you right-click on a mail item in the view, or do you mean in the Inpsector window when the e-mail is open and you right-click in the body For the menu in the main Outlook window when clicking on an item, there is no way to do this in Outlook 2003. This functionality was added to Outlook 2007 however. With the body, you can add items to the context menu only if the user is using WordMail for their e-mail edi ...Show All

  • SQL Server SQL SERVER Integration service and windows 2003 installation bug

    Hello, I am trying to install SQL SERVER2005 on windows 2003 server.It is not installing SSIS designer.why is it so Regards Kuldeep ...Show All

  • Visual C++ How to make dynamic 2D arrays?

    Is it possible to have a dynamically sized 2D or 3D array For a normal 1D array, I have 2 methods: 1) create a pointer to a variable, then initializing it with a supplied size: int *iTemp; iTemp = new int[100]; 2) use a CList. CList<int,int&>iTemp; But these methods fail when I try to make a 2D array. i.e. iTemp = new int[10][10] \\not possible Is there a way to achieve this instead of CList Been trying out the solution but it doesnt seem to be appropriate for my app though. I was thinking of how to implement a pointer to the array, like so: int* pIntArray; Then initializing it like this: pIntArray = new int[100,200]. That seemed to work, though I had trouble trying to put in values correctly. ...Show All

  • Visual Studio Express Editions Index Property ... was removed ????

    Hi everybody ... For the first time and not the last ..... I think !! First of all, sorry for my english, The second matter is, as I advanced from VB6 to VB.NET 2005 Express !! actually I didn't find many things that were in VB6. but the most important thing that I totaly lose is The INDEX Property . So, and of course if you can .. Tell me how to use something instead of that lovely property. My Situation is : I need to pass information from MDB to 10 textboxs, the MDB fields are sorted From 0-9, and I want to show the data into the textboxs in the same order using ( For,Next or Do, Loop). Awaiting for your support. Many thanks in advance. I know when I first switched to .NET I ...Show All

  • SQL Server Getting the latest data from different fields in one SQL

    Hi, I'm trying to write some SQL which will give me the following result from the table below.. Currently I can do each of the PRICEx fields in a seperate query then join the results together. I do this by getting the MAX(Date) WHERE PRICEx IS NOT NULL then using that date to get PRICEx, and then repeat until I've done all the PRICE fields. This is acceptable for a small selection, but for a large selection this can get quite slow. I was just wondering if there is there a way to do this in one single SQL without having to join the table to itself 3 times (for all 3 PRICE fields)   fusi0n wrote: Hi HPEvju , Hmm thats not what I'm looking for as it gets the MAX(PRICEn), if PRICEn was lower on a later da ...Show All

  • SQL Server Three daily schedules for a single report

    Hi, I have been trying to figure this out for a while. I have a report that should run at 9AM, 12 Noon and 2PM every weekday. Due to the complexity of the report, I'm using snapshots. Since the lowest gap is 2 hours, I currently have it configured to create the snapshot every two hours. Since this is running all day, my servers are taking a lot of strain. In the report manager help, it suggests creating three daily schedules for the report. I cannot find a way to create more than one schedule for a report. Please let me know how I can do this. Any help will be highly appreciated. Thanks, Anand What you can do, and I have done in the past, is to go into the job that is created in your SQL Server A ...Show All

  • Visual C++ Functions as template arguments

    I have the following code: typedef void* STACK; template <typename T, void (*S)(T* ptr)> class AutoPtr { public: int junk; }; template <typename T, void (*S)(T* ptr)> void FreeStack(STACK* stack) { // loop through all stack items and call S on each item } template <typename T, void (*S)(T* ptr)> class AutoStack : public AutoPtr<STACK, FreeStack<T,S> > { public: int junk; }; typedef void* RESOURCE; void FreeRESOURCE(RESOURCE* res) { // free the RESOURCE } int main() { AutoStack<RESOURCE, FreeRESOURCE> a; a.junk = 0; } Basically, I pass various free functions through the template. When I compile I receive: error C2440: 'specialization' : cannot convert from 'void (__cdecl *)(STACK *)' to 'vo ...Show All

  • Smart Device Development Error 183 vb 2003 Compact framework

    Hi I have been working on a project and once completed I went to deploy it. I built the cabs, tried installing and the program would not work. I then tried to deploy via studio as if I was debugging and got a message box with #183:. Nothing came after the 183, so I tried to run the app on the device and this time I got a message box with nothing more than: Exception. I then started putting in message boxes and discovered than the program will error out only when it tried to load an image, all forms without images work fine, but those with images do not work The project is quite large and has been working fine until now. The last few weeks have been spent testing and debugging with only minor changes. It is written in VB and uses S ...Show All

  • Smart Device Development GPSGetPosition returns old data

    I am using C++ in VS2005 and am currently trying to figure out why my call to GPSGetPosition is returning me the last valid information from yesterday's testing. I am sending 50 as the dwMaximumAge parameter and the returning GPS_POSITION structure has 8191 in the dwValidFields members meaning that all the fields should be valid. However, there is no usable GPS signal reaching the device. Doing a soft reset on the device hasn't helped and the return values for the GPS functions are valid. I can't figure out why the function keeps giving me the old data and telling me that it is valid. Any help would be appreciated. Pls look at the following link for more appropriate forums/news groups for this query ...Show All

  • Visual Studio embedding relationship

    Hi, I do not know if I overlook the obvoius, but is it possible to embed a concept into more than one concepts. An example. I have a ComponentModel that embeds Component and CompositeComponent. Now I want to be able to add a Component to a ComponentModel and to a CompositeComponent in my custom designer, respectively Since a concept can only have one parent element path, I do not know how to implement such a scenario. I have to say that the CompositeComponent is represented by a kind of ContainerShape (the one from the customization documents), thus accepts Components, so I can display Components on top of CompositeComponents. Thanks Alexander How can you change the ParentShape This property is readonly. ...Show All

  • Visual Studio Wizard extension for mutiproject template

    Newbie alert! I'm trying to write a multiproject template. The solution should include 3 projects: a web application, a Web Deployment/MSBuild project (http://msdn.microsoft.com/asp.net/reference/infrastructure/wdp/default.aspx), and a web setup project. From reading this forum and my own experimentation, I've found I cannot do a simple vstemplate/xml solution and must write an IWizard extension. So, my thought is that I start out with a multiproject vstemplate arrangement so that I can still include my non-standard projects in the same archive as my web project--only I comment out my non-standard projects so that they don't load automatically: <VSTemplate Version="2.0.0" Type="ProjectGroup" xmlns="http://schem ...Show All

©2008 Software Development Network