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

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

Byapti1

Member List

ptech
Shasur
Michael AbiEzzi
StefanoVS2005
rhfritz
mallikarjun
Gavin RTE
kingduck
ImAnAccident
1337
jrsairwalk
hazz
nonoandy
scotts_43035
snegidhan
Fahad1
NatashaKarlsson
jasmine pham
Elizabeth Maher
Prescott
Only Title

Byapti1's Q&A profile

  • Visual C++ application trying to link to MSVCP80.dll inspite of /MT compiler option

    Hi I am using Visual Studio 2005 professional on Windows XP x64 bit version. I am trying to create  a dll (say X ) which links statically to CRT libraries. For that I am using /MT option. But still when my console application .exe file tries to load it, I get the message - "This application failed to start as MSVCP80.dll could not be found".  If I copy it into the directory  it asks for MSVCR80.dll. And if I copy that too i ...Show All

  • .NET Development Working with large data file using remoting and multi threading...

    hi, this is regarding parsing a file format which is very large in size. any experience of breaking a file into small data packets and parse them using remoting scenario is something like this.... one component reads incoming file into normal filestream and then store the contents in a DTO and pass the DTO to BLL component that parses the data and apply some biz rules to it before sending it to DAL component. in case file is very large the ...Show All

  • Software Development for Windows Vista Invoking one workflow from another

    I want to invoke one workflow from another and get some back some return values from the second workflow. I tried the InvokeWorkflow activity but have some issues with that. 1. If I use a workflow in the same project for the InvokeWorkflow activity then I get the following error "You cannot invoke a workflow compiled in the same project as the invoking workflow." Why is this not allowed 2. I invoked a workflow from a different project but that ...Show All

  • Visual Studio 2008 (Pre-release) System.ServiceModel not listed in Visual Studio Add Reference

    I've noticed on several systems that after upgrading to the WinFX Feb CTP, System.ServiceModel.dll no longer appears in Visual Studio's Add References dialog (.NET tab). A gacutil /l shows that System.ServiceModel.dll is indeed in the GAC, but for some reason VS doesn't want to list it for Add References. The same thing seems to have happened to other WCF assemblies such as System.Runtime.Serialization. Does anyone know why this behavior occu ...Show All

  • Visual C++ unsigned long *' differs in levels of indirection from 'unsigned long ** '

    Hi, Can anyone here help me. I am trying to write a program that writes to the com port in c but I keep getting the following message when I am trying to compile: 'unsigned long *' differs in levels of indirection from 'unsigned long ** ' The error is being generated by the WriteFile() function and I think the parameter temp which I have declared as; unsigned long *temp I am new to C can anyone tell me what this message is and wh ...Show All

  • Visual Basic Help me converting simple VB6 code to VB.net

    Hi! This code is obviously VB6 code. Im desperately trying to get the width and height of an AVI file, and i found this code. This is the errors i getting. Maybe it will make things easier: error BC30802: 'Type' statements are no longer supported; use 'Structure' statements instead. error BC30678: 'End' statement not valid. error BC30828: 'As Any' is not supported in 'Declare' statements. error BC30002: Type 'AVIFILEINFO' is not defined. Can ...Show All

  • Software Development for Windows Vista WWF Rules Engine vs ILOG Rules Engine

    We are just about to purchase the ILOG Rules Engine for .net. I have been looking at the WWF rules engine and want to know if anyone can give us some additional advice between the two. Can a rule policy be invoked outside of a workflow Rules can be invoked outside of workflow also. I would post a sample code shortly. Thanks, Vijay ...Show All

  • Visual Basic Using VBA to ftp a file

    I am having a heck of time getting this to work and would welcome any suggestions.  All I want to do is FTP a file from one server to another using a batch script that I wrote. When I execute this code, it attempts to open up a command prompt on my local machine, not on the server where the batch file resides. Option Compare Database Option Explicit Function testftp()         Dim c_test As String   & ...Show All

  • Visual Studio Team System TS MSSCCI installation requirements

    HI, I downloaded TS MSSCCI and when I tried to install it I receive a message that says I need Team Explorer. Is it a requirement because I didn't found it as a requirement in the downlaods page ( http://www.microsoft.com/downloads/details.aspx FamilyID=87e1ffbd-a484-4c3a-8776-d560ab1e6198&DisplayLang=en ) Thanks a lot LucasC ...Show All

  • Windows Forms Trouble drawing theme elements transparently

    I'm trying to draw a windows theme element (the window close button, specifically) to an image, and whenever I do, the image has ragged non-transparent bits. I got this code from a sample that didn't do this (it was all owner-drawn, mine draws to an image.) Any idea why it won't draw with full transparency Bitmap output = new Bitmap(closeButton.Width, closeButton.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb); Graphics fx = Grap ...Show All

  • SQL Server SCD component in SQL2005

    Hello, I have problems specifying my historical attribute in the SCD component. Regardless of wich option I choose on the Historical attribute options I cannot choose a field in the table, it is simply empty, nor can I write in the information... I am using the 1st release version so I suspect that this function should be fully functioning. What am I doing wrong and how should I go about this Hanna,  The scenario w ...Show All

  • Smart Device Development Invoking wceload

    Hiya, Im having trouble invoking wceload as part of an automated program for installing cabfiles on my device. Ive trawled through the web and found the answer to installing cab files programmaticaly was to p/invoke wceload and feed it the path of the cab file. So... Dim pi As ProcessInfo Dim result As Int16 result = CreateProcess("wceload.exe", "\SD Card\netcf.core.ppc3.arm.cab", IntPtr.Zero, IntPtr.Zero, 0, 0, IntPtr.Zero, IntPtr.Ze ...Show All

  • Visual C++ On adjacent ">"s in a parameterized declaration

    Hello, There is a syntax erron in the following code -- adjacent ">"s need a delimiter (it is marked AAAA) template <class T> class A {}; template <class T> class B {}; int main() { A<B<int>>(); // AAAA } But VC8 can compile it. It seems to be a error but on the other hand Mr. Stroustrup have being dreaming on such a syntax for ages and he promotes it pretty vigorously now, as far as know. So, I a ...Show All

  • SQL Server Not in correct state to become principal

    I am using asynchronous mirroring. When I try to failover on the mirror server using “alter database xxx set partner force_service_allow_data_loss” (having disconnected the primary server from the network) it sometimes fails to failover (it reports that the database is not in the correct state to failover). I can re-connect the primary server, get them sync’d again, then unplug the primary and it will failover ok. Any ideas... or is this j ...Show All

  • Windows Forms Editable DataGrid Examples

    I am moving from ASP.NET to WinForms.  I extensively used the ASP.NET DataGrid for editing so I'm looking to do the equivalent with the WinForms datagrid but I can't find any good articles or full examples. Can anyone point me to good examples on how to use the DataGrid for editing/inserting/deleting data Thanks. May this help http://www.codeproject.com/cs/miscctrl/#Grid+controls ...Show All

©2008 Software Development Network

powered by phorum