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

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

Jarodtweiss

Member List

S10n
Kumar Venkat
Fritz Klein
prosen
Robert F Bouillon
Emil2000
Derek at Potters Clay
rstevens
Corres
Adam Anderly
Lawrence Parker
Picho451970
anjelinio
PublicError
ringerxyz
J Lim
Chad Campbell
Tom Helm
spree
00002210Dave
Only Title

Jarodtweiss's Q&A profile

  • Software Development for Windows Vista properties parameter

    Hi, i have visual studio 2005 with .Net Framework 3.0 Reditributed Package and Visual Studio 2005 extensions for .NET Framework 3.0 could anyone tell me please why there isn’t parameter field in the property windows in my visual studio i can not set the parameter for workflow or activites, what could i do now manual set in- and output parameters in the workflow Hi, If you cannot see the parameter names among the list of properties try switching views - Alphabetical View, Categorized View..etc. These buttons are right on upper left corner of the properties window (alphabetical view button has a-z letters on it and categorized view is on the left of the alphabetical view button). When you switch to ...Show All

  • Visual Studio Tools for Office Uninstalling or upgrading existing outlook add-in

    Every time we want to install a new version (with changes) of outlook add-in; if it is already installed we have to first uninstall the previous version by going to add/remove programs. Is there anyway to create installer file that will update the existing add-in The following documentation does not provide any information on how to modify the custom action so that it actually uninstalls the previous add-in and installs the new one. http://msdn.microsoft.com/library/default.asp url=/library/en-us/odc_vsto2005_ta/html/OfficeVSTOWindowsInstallerWalkthrough.asp I think you have several options: 1. You can create windows installer patch (.msp file). Your patch will need to install new manifest ...Show All

  • Microsoft ISV Community Center Forums DLookup help?

    Hi there - im building a contact management system and require some help. I have previously had help with VBA in terms of defining what users can and cant do within the system when logging in via a username and password which was incredibly useful. Im now at further along the route and now want to incorporate an activity system that will record all hours that employees will have worked against clients. However we have a lot of clients! The users login name('login_name' which is held in 'tblusers') is also entered into a 'leadofficer' field in 'tblcompany' so that we know which user is responsible for managing that client - this is done through a combo box on the company entry form so it looks up the values from the table 'tblusers'. On th ...Show All

  • Visual Studio remove subdirectories

    So removeDir will remove the directory and subdirectories, how do i get a list of subdirectories so i can only remove them I've tried using creatitem and wildcards to create a list, but it doesn't seem to work (i'm guessing i don't know the correct syntax) Here's how you can pick the sub-dirs of a directory <Project DefaultTargets="Remove" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <TopLevelDir>.</TopLevelDir> </PropertyGroup> <ItemGroup> <AllFiles Include="$(TopLevelDir)\*\**" /> </ItemGroup> <Target Name="Remove" >     <CreateItem           &nbs ...Show All

  • Visual Studio "Configuration system failed to initialize" - Search option

    Hi there, Every time I try to use Help --> Search I get the error below: "Configuration system failed to initialize" I have tried to repair the VS 2005 and MSDN installation but the same error occurs all the time and I am not able to do any search for code samples anymore. I tried to google it and found a couple of people who had the same problem but they never got any feedback. Anyone have any idea what this error is Thank you Joao I take that back - I tried to run only dexplore.exe and do a search and got: "Search Failed No search provider has been selected" I used FileMon to monitor the files used by the process and found out that the process dexplore.exe cannot find the file "Se ...Show All

  • SQL Server Write to pivot table from SSAS cube

    Hi , I am new to SSAS. But I managed to create a cube in sql server 2005 and I am able to process and browse it. When I connect to SSAS through Management Studio , I use Windows Authentication to see the cubes. Now When i create a pivot table using my Windows account, I am able to open the file . But other users get an error saying "error on transport layer". Therefore I got a common NT user account and try to create the excel file.I am getting a different error saying " Logon failure: Unknown username or bad password" Can anyone help me to solve this issue. Thanks in Advance. ...Show All

  • SQL Server "fractional truncation" trying to insert time value into smalldatetime via SQL Native Client ODBC

    The following represents a change in behavior between the SQL Server ODBC driver and the SQL Native Client ODBC driver. I noticed a similar post about this issue, but the scenario below is slightly different. I'm trying to insert a SQL_C_TIME value into a smalldatetime column (SQL_TYPE_TIMESTAMP) via a parameterized insert. With the SQL Server driver, I receive the "fractional truncation" warning with a SQL_SUCCESS_WITH_INFO from the SQLExecute, but the value is still inserted into the table. With the SQL Native Client driver, I again get the "fractional truncation" and SQL_SUCCESS_WITH_INFO, but the value is NOT inserted into table. Here's how to reproduce in ODBC Test. Conn->Full Connect to either drive ...Show All

  • .NET Development can't insert data into database

    I just got a problem about my web page(.aspx). I set my web page with VB.Net, the page try to get data and insert or delete data from a database. The database is Access file (.mdb),which was located in the directory of ~/www/App_Data/. Now, the page can get the data, but there was an server error when it was inserting a new row data or delete a row in the table in database. However everything is fine when I test the page in my computer with localhost. I just think the error was caused by the directory App_Data without the right for write, but I am not sure it.Could I get suggestion please post: code you are using to insert data the specific errors you are getting when inserting data Visual Basic 2005 or 2003 (shouldnt real ...Show All

  • Visual Studio 2008 (Pre-release) Why can I not see the wsdl file?

    Hello friends. Well, when I self-host services and enable mex of course, I can see the wsdl file. However when I host it on IIS7, even the most basic sample, I can host it and I can use svcutil to download metadata and everything, but when I click on the URL for the wsdl file, the page gives me error and I can't get to wsdl file. Did anyone have the same problem as I do Is there any solution for this Thank you. Sorry guys, I got it working. Well  the problem was, when I accessed svc file, it gave me the address where the wsdl file is. Instead of "localhost", it gave me "computer name" on the address. So the error I was getting was, it cannot look up the ipaddress of "computer name" and DNS server gave back the&nbs ...Show All

  • .NET Development Serializing an object to send through remoting

    Hello, I'm currently working on a project for a school assignment: I need to be able to configure a self-made server that monitors OPC servers through remoting. At the moment I'm very stuck at this problem: I have IONode objects (IONode is a class from IDN IO-dll), and I need to send them from client to server. To do this they need to be serialized, but i cant place [Serializable] at the IONode class because I dont have the source files. Is there any way to send or serialize these objects without adjusting the source files Greetings, Jeroen Van Bastelaere Student multimedia & communication technology - option industrial data processing at PIH - Kortijk - Belgium I tried to make a wrapper clas ...Show All

  • Windows Forms "Could not find File <path>\<filename>.InstallState" same symptom, but different cause (I think)

    Hi, I have created a Visual Studio 2003 setup project. It has two custom actions implemented as two separate C# library projects. Both of the custom actions are added to the install phase. Only the second one is added to the rollback phase. If the first custom action fails in the install phase the second one is not run. Which is what I want. But, the setup project then runs the the Rollback method of the second custom action and complains that "Could not find File <path>\<filename>.InstallState". I don't want the second custom action to rollback if the first custom action has failed on install. How can I prevent this from happening Thanks. McGeeky I have 3 custom actio ...Show All

  • Visual Studio Express Editions 3D Checkers

    Hi Im developing a checkers game under vb.net 2D board is easy, but how to develop a 3D board. http://www.deltmar.ee/mex/laud.jpg like this one i designed in Rhino3D Is there any 3D engine for .NET or any other solution DirectX I have no glue, where to begin ;)! Best regards; Mex Hi, You have two ways: 1) Harder way : write a mini-3d engine using Managed DX - http://msdn.microsoft.com/directx/sdk/ - here is a DirectX SDK (0,5 GB) with many examples how to do it 2)Easier way : Download a already written 3D engine like: -Irrlicht Engine http://irrlicht.sourceforge.net/ -TrueVision3D http://www.truevision3d.com/home.php (but there wasnt any new relases from two years) -or just type in google " ...Show All

  • Visual C# Problem with designer.cs generation

    Hello, I created a designer with the following signature: public class LookupItemDesigner : ExpandableObjectConverter and the following method: public override object ConvertTo(ITypeDescriptorContext context, System.Globalization. CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof (InstanceDescriptor) && value is LookUpItem) { LookUpItem item = (LookUpItem)value; ConstructorInfo ctor = typeof (LookUpItem).GetConstructor( new Type [] { typeof (LookupTablesTypes), typeof (eLookupValueMember)}); return new InstanceDescriptor(ctor, new object [] { item.LookupTable, item.ValueMember }); } else if (destinationType == type ...Show All

  • SQL Server SQL Server 2005 JDBC Driver Output Parameter/Result Set issue

    I'm having an issue with the JDBC driver when I execute a stored procedure that both has a return value and also returns a result set. If I attempt to retrieve the return value (registered as an output parameter) after I execute the stored procedure, then any subsequent attempts to retrieve the result set always return null. Is this by design If I use the result set first and then later get the return value that works; however, in my situation I need to first check the return value before I work on the result set. Am I'm I doing something wrong Code: CallableStatement cs = connection.prepareCall("{ = call spGetCustomer( , ) }"); cs.registerOutputParameter(1, Types.INTEGER); cs.setString(2,"blahblahblah"); cs.setB ...Show All

  • Visual Studio 2008 (Pre-release) Installer that requieres WPF

    Hi! I want to user installer for my program deployment. And i want to be sure that user could run my program. I think that the better way will be to add some launch condition that requires .NET 3.0 on target machine. But when i try to set value "3.0.4121.6" to the .Net launch condition property i get error message that this version of rumtime is invalid. How can i get through that Do you have specific custom actions that you want your MSI to accomplish I'm curious why you aren't using ClickOnce as a deployment technology. Also, if bootstrapping the .NET Framework 3.0 is the reason for forgoing ClickOnce, you might want to consider using the setup bootstrapper that Visual Studio can create for yo ...Show All

©2008 Software Development Network