Software Development Network Logo
  • Architecture
  • Smart Device
  • Windows Live
  • Visual Basic
  • Windows Vista
  • .NET Development
  • SQL Server
  • Visual C#
  • Visual Studio
  • Visual C++
  • VS Express Editions
  • Windows Forms
  • Visual FoxPro
  • Microsoft ISV
  • Game Technologies

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

alon_moor

Member List

Wolfgang-h
Leonardo Rodriguez
smith_kbase
Theekshana
Polla Baban
mpco
Jorgen Aker
Moavia Hassan
Frank ORourke
Mark Brady
Puffeltje
sbellware
baoqs
WackoWolf
Chris Eytcheson
INTPnerd
MadhukarChaubey
Matt ms user
vackol
Tonny Petersen
Only Title

alon_moor's Q&A profile

  • SQL Server Is it possible to convert the sample C# program AmoAdventureWorks in "C"??

    Is it possible to convert the sample C# program AmoAdventureWorks to "C" Program If so please someone give me pointers. Even a subset of AmoAdventureWorks would be fine (i.e with just one dimension, one measure etc.) Please hepl me urgently!!! Thanks Hi. It is not ideal, but with reflector (google reflector) can do it by reverse engineering. Compile it, then load the PE into reflector, choose disassembly Managed C++. Remember that case's can be goto's etc. because of the optimizations. I guess I would to compile it as debug. Good luck ...Show All

  • .NET Development Creating an instance of the COM component with CLSID

    Hello, Please can someone assist me with the following issue that I have with COM Interoperability. I am using the new .NET 2.0 Framework. I have created a production capture web application which allows our operation staff to capture production into our ERP system through a web interface which is quick and provides all the necessary data verification. I access the PROTEAN ERP environment using the system API’s which is a collection of DLL’s. I started by convert the C+ DLL’s into .NET DLLs using the Type Library Importer (Tlbimp.exe) and then copied the file into the BIN directory of my w ...Show All

  • SQL Server sp name in trigger

    There are two different Stored Procedures insert data into a table, is it possible to catch what stored procedure name was that trigged the trigger in the trigger Hi, you can pass the procname as a column as information to the table, then the triger can leep track of the source of change. Otherwise there is no way to get this information. HTH, Jens Suessmeyer. ---- http://www.sqlserver2005.de ---- ...Show All

  • .NET Development Writing to file...

    Is there a way to write an entire class object to file and then retreive it Thanks in advance, Devin Hi, Yes it can be done and its called Serialization. Take a look at the following link: http://www.c-sharpcorner.com/Language/serializingObjectsinCS.asp Regards, Vikram ...Show All

  • Visual C++ wcsstr with a const return type in rc1 header

    Hi 40th Floor! > _CRTIMP __checkReturn _CONST_RETURN wchar_t * __cdecl wcsstr(__in_z > const wchar_t * _Str, __in_z const wchar_t * _SubStr); > > What's the deal with the "const" on the return in > > ...\Microsoft Visual Studio 8\VC\include\string.h > > when the docs I see show > > *wchar_t *wcsstr( const wchar_t* */_string_/, *const* *wchar_t* > */_strCharSet_/ *);* It seems that the docs (or the standard) are wrong :-) If the parameter is const then the return value must also be const. If the return valus would not be const, this could lead to GPFs... -- Greetings Jochen My blog about Win32 and .NET ...Show All

  • Windows Forms Is there any way to stop partial items in a listview?

    Is there a way of like, retrieving the 'row height' and making sure that the control's height corresponds, or something like that  Just asking ...Show All

  • Visual Studio Express Editions cl broken

    Hello,  I'm tring to compile an image processing library (DCMTK) with CMake. CMake performs a check for a functional compiler (cl) and allegedly tries to compiles a test program. This part of the process is failing  - giving me a message  "cl is broken". I'm assuming that the CMake files provided by the DCMTK guys is correct and that I've missed something in my VS2005 Express set up. Does anyone have any ideas Thanks Well, to make several things clear. Make sure you have all the paths set up correctly before you compile. Make sure you have all the libraries that are specified ...Show All

  • Visual Studio Express Editions installing two products

      I'm needing to install VB C# and Visual Web Dev. Everything I'm reading says to uninstall one before installing the other, or am I misunderstanding what I reading. Sorry, I'm a compete novice at this. Thanx for any input, Critter You should be able to install multiple IDEs simultaneously. I have both C# Express and VB Express installed. Are you having an error message or some other problem installing both If not, I'd recommend you just go ahead and install them both; you really shouldn't experience any issues. ...Show All

  • Visual Studio Express Editions Windows Form Aplication

    hello if I create a new project-> windows form aplication-> build aplication.... the program will run on my system, but not on other system with same OS(windows XP SP2) MarianL wrote: hello if I create a new project-> windows form aplication-> build aplication.... the program will run on my system, but not on other system with same OS(windows XP SP2) The target machine needs to have the .NET Framework 2.0 installed. ...Show All

  • Visual Studio Team System OutOfMemoryException

    I ran a loat test in i get these error messages: Exception LoadTestException: Results collection stopped due to the following error: Exception of type 'System.OutOfMemoryException' was thrown. Exception OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown. ! !How can I fix that problem Erik To fix the problem you first need to identify which machine has the problem and then try to determine why it's exhausting memory. Let's start with identifiying the machine. Which machine is running out of memory, and agent, controller, or some other machine Click on l ...Show All

  • .NET Development Sample certificate folder missing from WSE sample

    Sample Certificate folder missing in quick start examples for WSE 3.0 released 11/07/2005. How do I get it The sample certificates were removed from the product and replaced with a setup.bat file in the \Samples directory. This setup file uses MakeCert.exe to generate named certificates, installs them into the correct certificate stores and set the appropriate priviledges when run. This was done to ease the installation on the samples and enable you to get started with the samples sooner If you want to install certificates by manually you can follow the instructions either in the readme.htm in the samples di ...Show All

  • Visual Basic Visual Basic and graphics - for the novice/beginner

    Hi there I have no training in programming, but would like to start writing my own little programmes. In my work (civil engineer), I am increasingly frustrated by the lack of simple, time saving programmes to make my life easier, and hence the urge to write my own programmes. Of course, the start will be no more than programmes for one-off formulas, but having said that, I would like to (in many year's time) be able to write more complicated programmes. And of course what I have in mind involves graphics, specifically being able to draw (for instance) pipelines (with coordinates) and then be able to generate a longitudinal section from th ...Show All

  • .NET Development FtpWebRequest question

    Can anybody please help me I am trying to write a code to uplode or delete file on ftp server. A problem is that I don't know how to set up Method property for ftpwebrequest class, so sample code like this would work. Dim serverUri As String = "ftp://ftp.contoso.com/file.txt" Dim request As FtpWebRequest = CType(WebRequest.Create(serverUri), FtpWebRequest) request.Method = WebRequestMethods.Ftp.DeleteFile request.EnableSsl = True Dim response As FtpWebResponse = CType(request.GetResponse(), FtpWebResponse) Thank you the sample code you have posted looks correct. what doesn't work ab ...Show All

  • Visual Studio Express Editions What type of database can my install of VBEE connect to?

    I'm attempting to use VBEE with SQL Server data. According to the Express products' readme: "1.3.13 SQL Server Express is the only version of SQL Server that will work with Express Editions other than Visual Web Developer Express Edition. SQL Server Express is the only version of SQL Server that will work with Visual Basic 2005 Express Edition, Visual C++ 2005 Express Edition, Visual C# 2005 Express Edition, and Visual J# 2005 Express Edition. To resolve this issue If you did not specify SQL Server Express when you installed your Express Edition, you can install it by using Add or Remove Programs in the Windows Control Pa ...Show All

  • .NET Development Typed Dataset - How To Generate from XSD

    VS 2003 was simple.  Create xml data, right click generate schema, right click and generated typed dataset. How do I do this in 2005 Dave   pugs wrote: I'm also having this problem in VS 05. It was or used to be simple to generate a dataset from an *.xsd file. I'm finding this a real problem in 05. I've imported an xsd file and would like to generate a typed dataset from it but it doesn't work with what has been suggested in this thread (designing in the dataset editor does not work or I'm missing something, which you to be simple in VS03). Any ideas   Is this by design or h ...Show All

©2008 Software Development Network