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

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

David100

Member List

PalMan
Tigger99
Sune D. Moeller
Dean100000000000000
stacybleger
Shanem
mahesh kuhikar
teacake.the.cat
Lorenzo Minore
PHX_TD
Santi1
ThierryC
Borko
ChristopherSeewald
JeffSeifert
saiwa
Branimir Giurov
ken016
P.Shivaram
Greasytires
Only Title

David100's Q&A profile

  • Smart Device Development __stdcall in VS2005 and linker error

    I'm trying to build a DirectShow filter for WM 5.0. There's no "Calling Convetion row" in the VS2005's property pages window so I wrote the command line option /Gz for __stdcall in the additional options box. But, the cl compiler ignored the option /Gz and linker show me the following errors: error LNK2019: unresolved external symbol "public: __cdecl CBaseFilter::CBaseFilter(wchar_t const *,struct IUnknown *,class CCritSec *,struct _GUID const &) error LNK2001: unresolved external symbol "public: __cdecl CRenderedInputPin::CRenderedInputPin(wchar_t *,class CBaseFilter *,class CCritSec *,long *,wchar_t con ...Show All

  • Visual Studio Express Editions System requirements for SQL Server 2005 Express

    My Computer's RAM is 128MB, and I don't want to upgrade right now. Should I still go ahead and install SQL Server No, I do not think you should install it. http://msdn2.microsoft.com/en-us/library/ms143680.aspx Minimum RAM 192MB Recommended 512MB If it install I am not sure if you will have a very plesant experience running it. Wait until you have upgraded the memory. ...Show All

  • Visual C# Moving contents of a file

    I have a program that watches a folder and when a file is dropped into that file it executes some code on the file then moves it to another file. The problem I am having is I dont know how to select the new file that was just moved into the folder thats being watched. My question is. How can I select a file (or all the files, since their will only be one at a time) in the folder without knowing the files name, and be able to retrieve the name of the new file Thanks string[] files = System.IO.Directory.GetFiles(@"c:\FolderName"); for (int i=0; i<files.Length; i++)     Console.WriteLine(f ...Show All

  • Visual Studio Express Editions problems Registering for Visual Web developer

    My computer will not let me access the "Register Now" link activated by my already downloaded VWD. I need to know the actual web address so that I can register the product and continue use. Does anyone know what this address is Or is there something else I can do to access my registration key so that I do not need to find the "Register Now" page What do you mean with that your computer does not let you access register now link Item 8 in the registration FAQ might be helpful for you. http://msdn.microsoft.com/vstudio/express/register/faq/ You could download the offline install medi ...Show All

  • SQL Server Error 9104

    Why does the server return Error 9104 "auto statistics internal" I can't find an error description in BOL, MSDN or through a groups/forum search either. We running Sql Server 2005 (no sp yet) on Windows 2003 server. Thanks Do you have the associated state number for this error It is number like in the range of 1-255 in general. It would be helpful in identifying the cause. ...Show All

  • Visual Studio Express Editions How do I add a binary registry key to the registry?

    I am currently trying to add a key to the registry with: Dim location As String = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" My .Computer.Registry.SetValue(location, "Scancode Map" , "00,00,00,00,00,00,00,00,03,00,00,00,00,00,5b,e0,00,00,5c,e0,00,00,00,00" , Microsoft.Win32.RegistryValueKind.Binary) but i get an error when I add the Microsoft.Win32.RegistryValueKind.Binary at the end. But if i remove it, the key becomes a Reg_SZ instead of a Reg_Binary. I would also like to know how to delete the key. Thx Use a byte array f ...Show All

  • Visual Studio Express Editions Add a web Srvice As a data source to my project

    I want to Add a web Srvice As a data source to my project I add it successfull but after thet it did not add to my data source and still i donot have a datasource how can i solve the problem i do not Write Code For it I just Add a datasource and Choose Webservice and Add my Web Service . but no datasource add to my Project Do u Know Why A web service is not a data source, it builds a class that you can create instances of, and call. BTW, please don't spam the forums, I deleted your duplicate posts. ...Show All

  • Windows Forms Code Groups: What am I doing wrong?

    Folks, Ive created a enterprise level code group for the intranet zone with certain SQL Client and security permissions . I take this out of development onto a production server where I have the same code group set up.  I still get securtiy exceptions when I try to run the assembly from the server. When I check in caspol the only code group that&n ...Show All

  • .NET Development CommandBuilder error

    I am trying to update a particular row in the backend table(my backend table allready consists of a primary key) using the following piece of code public void Conenct_to( int Department_Number) { try { string query_text="select * from dept where deptno= '" + Department_Number + "'"; OleDbCommand o_com= new OleDbCommand(query_text,o_conn); if (o_conn.State==ConnectionState.Closed) o_conn.ConnectionString=connection_string; o_conn.Open(); OleDbDataAdapter o_ada= new OleDbDataAdapter(o_com); OleDbCommandBuilder o_com_builder= new OleDbCommandBuilder(o_ada); DataSet d_set= new DataSet("EmpSet"); DataTable d_table= new ...Show All

  • Software Development for Windows Vista Custom Activity Causes Workflow Validation Exception

    I have created a set of custom activies; some inheriting from CompositeActivity and Some from Activity. I am using these activies to create an XML only workflow. When I create xml markup by using one of my composite activities and there is another composite activity as a child of the root composite then I will receive a WorkflowValidationException if the the child composite is not: a. The only composite child activity of the parent composite and b. The first activity in the list of children elements I cannot work with these kinds of limitations. I assume that there is something wrong with my activity implementation. Some advice woul ...Show All

  • Visual C# locking write access to generic list

    Hi, I have a generic list that is accessed within a method for write access, as well as in a timer triggered method. The problem is when the timer triggers at the same time as the other method is triggered I get a CollectionModified exception while iterating through the collection. Thus I'd like to know if there is any way to lock the write access to the collection while one method executes and accesses it Thanks, Tom ah, I only had it in the one method and forgot it in the timer method ... that's why I was wondering why it didn't work :) thanks ...Show All

  • .NET Development .NET 1.1 in Visual Studio 2005

    I'm sure this might be a dumb question, but I thought I'd go right to the groups to hopefully get a quick explanation. I'm writing a client app in VS 2005 that references a web service I had written in VS 2003. The client app utilizes 2.0, the web service uses 1.1. I know that the two can communicate, but can I pull the web service project into the VS 2005 solution and still it will rely on 1.1 (because the hosting server is only 1.1 capable). Alright ... ready to discuss ... go! Hi! VS 2005 do not support 1.1 framework. But 2.0 is very compatible with 1.1 at source level, so you can simply recompile. Web service clients will not see ...Show All

  • Visual Basic Refactor 1.0.31 bug

    I couldn't easily find a place on devexpress site to report bugs in refactor so I'll try here. So, try to refactor this using Move Declaration Near Reference for VariableUsedOnlyInSomeCases : Dim VariableUsedOnlyInSomeCases As Integer Select Case sender.ToString Case "1" MsgBox("Not used here") Case "2" VariableUsedOnlyInSomeCases = 2 Case "3" VariableUsedOnlyInSomeCases = 3 End Select the resulting code will be broken like this: Select Case sender.ToString Case "1" MsgBox("Not used here") Dim VariableUs ...Show All

  • SQL Server error of Initializing SQL Server Reconciler has failed using SQL Server CE 2.0

    hi, i'm using SQL Server CE 2.0 in my application. When i try to synchronize my database by calling replicator.Synchronize(); errors :   Initializing SQL Server Reconciler has failed. process could not connect to Distributor SQL Server does not exists and access denied. what i did right now is i try to register regsvr32 "C:\Program Files\Microsoft SQL Server CE 2.0\Server\sscerp20.dll" regsvr32 "C:\Labs\NorthwindTempFiles\sscesa20.dll" both of the DLL files were succeed register. However, when i try to re-do the synchronization. The same error still happened!!! I do not know what's going wrong..=( Who can help m ...Show All

  • .NET Development Deserializing a *Node from an XmlSerializer written .xml

    Im in the process of trying to figure the best design for logging some Exceptions that may occur in my application *(due to legacy data).  I have basically created a class that keeps track of relevant bits of information about each exception and then uses XmlSerializer to log this to a file. I have no problem say, serializing an array of the same class, but, I've read that it's possible to deserialize a single node of the xml file, and I've been working a bit with the relative classes but haven't found how this is possible.... something along the lines of (pseudo code): node.deserialize   I'm trying to create a logger that  ...Show All

©2008 Software Development Network