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

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

Vonfranzken

Member List

Amr Mahmoud
-Matze-
NewUser06
d_harry45
LakshmiMugur
Nitin Mankar
enric12879
QuantumArchitect
DishanF
Leif Greenman
zhonglixunni
dba123
huntsfromdarkness
Chrichton
Coco King
Fabio Vazquez
_random
royst
Algosys
fredrikt
Only Title

Vonfranzken's Q&A profile

  • Visual Basic Web Services...Really need help

    I have a VS.Net 2K5 project. I need to know if it is possible to add a webservice to an application at run time. If it's not possible how do you change a web references URL and tell it to re-connect. Any examples for 2K5 would be a great healp. I've found lots and lots of samples for 2K3, but web references have changed a lot since then. Sorry to stick into this forum. But I do we convert our .asmx   ...Show All

  • Visual C++ Visual Studio Issues

    Having a bit of problems with the studio after installing it. First, when using C++, I get these "numbers" before each row in the output window when compiling. Eg, 1>------ Rebuild All started: Project: Quicklinks Dll, Configuration: Debug Win32 ------ 2>------ Rebuild All started: Project: Tooltips, Configuration: Debug Win32 ------ 1>Deleting intermediate and output files for project 'Quicklinks Dll', configuration 'Debug|Win32' 2> ...Show All

  • Smart Device Development How to install CF 2.0 on iPAQ

    I have an iPAQ hx4700 which has .NET CF 1.0 installed. Where can I find .NET 2.0 CF, and how do I install it There is a file (NETCFv2.wce5.x86.cab) in my VS 2005 installation under: C:\Program Files\Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\WindowsCE\wce500\x86. Is this the file I should install The OS version on my iPAQ is Windows CE 4.21 and from the location of the .NET CF 2.0 file it appears to be for Windows CE 5. The ...Show All

  • Visual Studio 2008 (Pre-release) Problems with migration to Sep 2005 CTP

    Hi, I have created a chess game using Avalon ( http://www.valil.com/winfx/ ) and I want to migrate it from Beta 1 to Sep 05 CTP. I have encountered some problems: 1. The 3D models for the chess pieces are not displayed corectly anymore, it looks like some of the triangles are transparent (maybe because of the back face culling ). In Beta 1 there was no such a problem. 2. The Viewport3D is not receiveing mouse events anymore. Thank you, Valent ...Show All

  • SQL Server Upgrade to Advanced Services; full-text indexing not working

    I upgraded to Sql Server Express 2005 w/Advanced Services, chose to install full-text indexing, rebooted, but appear to be unable to set up full-text indexing for a column.  After attaching the old mdf file and opening any table in either Management Studio Express or Visual C# Express, I don't get anything but a disabled (Is Full-text Indexed) property for the fields I want to set up.  I have verified that FullText Search service ...Show All

  • Smart Device Development DataGridTableStyle MappingName for Details BindingSource

    Hi, I have two grids bound in a master-detail arrangement using a binding source for each grid. The binding source of the master grid has a dataset datasource and a table name for the datamember. The datasource of the child grid's binding source is the master grid's binding source. The datamember of this binding source is the name of the relation between the master table and the child table. The child grid has a table style with mappingname equ ...Show All

  • SQL Server SSIS Team Development

    In the past I wrote DTS transforms entirely by myself. With SSIS, our team of several developers now wants each member to develop a piece of the same package. Do SSIS packages support this type of simultaneous multi-developer creation or is it a "one developer at a time" type product TIA, Barkingdog The development environment (BIDS) does support Source Control integration (VSS or ...Show All

  • Windows Forms XML Editor "Bug"

    This isn't a Winforms specific bug, however I'm not exactly sure where to post VS.NET related bugs.  The XML editor provided in VS.NET doesn't properly 'ignore' the CDATA tag. <tag>    <![CDATA[it shouldn't matter what I put here <><dsflkj&g ...Show All

  • Windows Forms Problem with ToolBarButton and the appendant image

    Hello, i have following problem with a ToolBarButton and the appendant image: m_toolBarBtn.Enabled = true --> the button is enabled and with the image (correct) m_toolBarBtn.Enabled = false --> --> the button is disabled and without any image (not correct!!! - ...Show All

  • Microsoft ISV Community Center Forums amjad

    whay the massenger is net eccept sgin in with to emails it's just only one emial it sign in This Independent Software Vendor (ISV) forum isn't the best choice for your question. You might try posting your question to the Messenger newsgroup: www.microsoft.com/windowsxp/expertzone/communities/messenger.mspx -brenda (ISV Buddy Team) ...Show All

  • Visual C# Excluding files from release mode?

    I have a couple classes (one per file) that are derived from abstract base classes that are only there to give me easy unit test access to some math functions in the base class. Is there a way I can exclude them from a release build since they aren't used except by the unit test project You can try surrounding your class file between #if DEBUG and #endif pre-processor statements. The DEBUG symbol isn't defined i ...Show All

  • SQL Server why doesnt this work?

    i am new at T-SQL and am trying to delete entries in a column that are not integers. i have the following code. why does it not work. T-SQL select invoicenumber from [control register] where convert(int, invoicenumber) like '%' if @@error > 0 begin delete from [control register] where invoicenumber = invoicenumber end go gives me the error in Query analyser: Server: Msg 245, Level 16, State 1, Line 1 Syntax error converting the nv ...Show All

  • SQL Server Running a batch command using scheduler

    Hi, I have a batch file that runs an isql script. The sql accepts command line arguments as parameters. I want to invoke this batch file using windows scheduler. How do I pass parameters to my sql Somebody please help. Thanks. I am not sure about the batch file idea, but SQL server has a job scheduler built in called sql agent. You would be much better using this to call a stored procedure and pass in the ...Show All

  • SQL Server Error message "Interface not registered"

    Hi  I got the following error message when I make a new integration service project  Failed to save package file "C:\Documents and Settings\Administrator\Local Settings\Temp\1\tmp2B.tmp" with error 0x80040155 "Interface not registered". Can someone help Me Quote 'I would recommend reformatting and reinstalling this machine and avoiding this antispyware program in the future.' If I had to re-format every time some ...Show All

  • Visual C++ How to replace a system call in a library?

    I have an application, and I know a function f will be invoked which is local in a library l, and the library maybe a dll in my windows. now, I want to reimplement the function f and retain the others. and I have no source code of library l and the application, which means I can't recompile the application and the library. and, in my function f, I want to invoke the f function in library l. I am on platform win2000, and I want the pl ...Show All

©2008 Software Development Network

powered by phorum