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

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

zullu

Member List

jshunter@mngt.waikato.ac.nz
zack_online
Michael Coomer
Arthur Knight
Merten1982
Philippe B
GBH123
IGFET909
Hybidder
PerL
ailleresc
HarryJ
Shafraz Nasser
Doudakmanis Apostolos
Ctrl A
InHowes
myeager
devjames82
WallyG
jtackabury
Only Title

zullu's Q&A profile

  • SQL Server XML data source

    Hi! I would like to use a xml file as a data source's configuration file: the user should change the data of Data Source and initial catalog values on it, and then I would take those values and use them to creat the connect string. But I don't want to publish this xml file. Is there anyway I can read from a xml file, not using http://server/file Thank you! There are a couple of ways to accomplish this without publishing the xml file. 1. You can use custom code to get the file from where it is located (the example below uses the file system) and parse it for the values you require, ...Show All

  • Visual Studio 2008 (Pre-release) Listbox with different indented items

    Is there a way to implement a listbox with different indentation for the listboxitems that are bound to a XML The indentation looks like something shown below :- Item 1 Item 2 Item 3 Item 4 Item 5 I tried using data template to customise the layout but there is no way to create a different indentation for different items. Any clues for implementing this thank you. Do you really require the behavior of a list box If not I'd say you should use a stylized TreeView instead since it provides the hierarchical format you're looking for. However, if you require the behavior of lis ...Show All

  • Visual Studio LFrame.SetFramePos returns E_NOTIMPL in VS2003

    I'm trying to set the location of a toolframe created with FvsUIShell.CreateToolWindow then make the call int i =LFrame.SetFramePos((VSSETFRAMEPOS) 0x00000043, ref G,0,0,100,100); the value of i is 0x80004001 which when I look up in NativeMethods = E_NOTIMPL Why is this,  should I be doing something different Hi Bill, unfortunately, the SetFramePos only supports SFP_fSize and SFP_fMove. (check the documentation under VSSETFRAMEPOS)  You'll need to use the registry keys to set the style to SFP_fFloat (0x3) For SFP_TabNext (0x40) it is documented under VSSETFRAMEPOS as obsolete ms-help://MS.VSCC.2003/MS.VSIP.2003/v ...Show All

  • Windows Forms save Object's Property at design time

    I have a collection object and use Object Collection Editor to add new object and edit property value. but How to save these new values  Thanks Your class needs to Implement ISupportIntialize. Look at the EndInit() Method. Sam ...Show All

  • Visual C++ projects

    What are the projects that can be pursued and finished in a couple of weeks in VC++, provided that I'm new to VC++ I would recommend playing with the samples at http://msdn.microsoft.com . Other than that, if you are new to VC++, any simple general application could be done in 2 weeks. Of course depending on the type of application you desire the answer might be different. Thanks. Ayman Shoukry VC++ Team ...Show All

  • Smart Device Development SqlClient missing in .Net CF 2.0?

    Hi I notice that on CF 2.0 SqlClient namespace is missing... I was using it on CF 1.0 How to connect to a remote SQL Server then Carlo Yes, I write " Imports System.Data" and add a reference to System.Data in my project. No SqlClient namespace is accessible. ...Show All

  • Visual FoxPro Setting papersize in Crystal Report from Foxpro

    Hi Friends, i am using Crystal Report 9 + SP5 & Visual Foxpro 9 + SP1 All reports are created on "TVS MSP 355/XL Classic Printer", and the paper size used is 8" X 6", 210mm X 12" & 15" X 12". When i deploy my reports & software to client's machine, the paper size turns into default printer's paper size. how i code so that the software will automatically set the papersize i required. "crxreport.papersize = " doen't work. and please tell me what is the value of for above mentioned paper sizes Thanks in advance So what is the values of X & Y in setuserpapersize(x, ...Show All

  • Visual Studio 2008 (Pre-release) Publish Fails for WPF Application using Jan CTP.

    Hello Everyone, I tried the Click Once Technology with a normal Windows Application. It worked well. But when i try to Publish a WPF Application to the following web site: " http://localhost/ClickOnceTest " , it fails with the Error: "Publish failed with the following error: Object reference not set to an instance of an object." I referred to http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=153765&SiteID=1 and disabled the publish option in properties. The Publish succeeded. But when i try to Open the Url in IE, it does not show up. Gives the following Error: "You are not authoriz ...Show All

  • Visual Studio Tab order on document windows

    I'm creating a document window in the VS 2005 SDK, with a .NET UserControl on it. Everything's OK except I can't tab from control to control. Say I have two text boxes on my UserControl. I set focus to TextBox1 and press the tab key. The machine beeps at me. You can only move to TextBox2 by using the mouse. Anybody have any ideas what I'm doing / not doing to cause this behavior John There is a known bug with Windows Forms where if you host a .NET window (such as a user control) inside of a Win32 window, then tabbing does not properly work. This is more of a .NET problem rather than a Visua ...Show All

  • .NET Development fast XML file scan......

    Hello, I am relatively new to XML. I have a project where I need to validate a scanned code against a file. The project is a Windows CE pproject using Compact Framework 1.1. Currently the file is XML but it doesnt have to be. I did it using an XML document and scanning through the nodes, it is pretty fast but not fast enough. The maximum number of elements it has to loop through is 3600 and that takes about 1.5-2 seconds. The customer wants it instantaneous. Here is my code, I would appreciate any insight into a faster way to scan for these values. SQL CE is not an option. 'in a module so the object can be global to my applicatio ...Show All

  • SQL Server System.Data from NETCF and System.Data from .NET

    Currently, I have a WinCE application which uses the System.Data from NetCF and System.Data.SqlserverCE from MSSQL Server 2005 Mobile Edition. Now, I'm trying to use the System.Data.Sqlclient but I can't seem to find it in my System.Data. I notice that there are different version which is one from NetCF and one from the MS.Net framework itself. Here's my question: Is it possible for me to use both System.Data or should I only choose one. This is for my attempt to connect also from an SQLServer and connect to the local SQLServerCE as well. Thanks in advance, rikimaruXP yes, the SqlClient that allows a CF app to work directly with SQL S ...Show All

  • SQL Server SQL Server 2005, MS Access Merge Replication?

    Hey there! In a nutshell, I want to do a merge replication with a SQL Server and several Access databases. I haven't been able to find anything in the documentation or 3rd party books. Is this possible Thanks! - Erik What version of SQL Server are you using This feature has been deprecated in SQL Server 2005. Here is a pointer to the old documentation http://msdn.microsoft.com/library/default.asp url=/library/en-us/replsql/replhet_956b.asp Have you considered merge replication to SQL Express subscribers, this is a great scalable solution. Thanks Nabila Lacey ...Show All

  • Visual C# help with data set

    Hi I have made a data set from a xml file with no problem. However how do you bind the dataset to a data grid Thank you DataGrid1.DataSource = yourDataSet; DataGrid1.DataMember = "yourTableName"; ...Show All

  • .NET Development access permission probelms. HELP ME!!!

    I have two computers, a desktop and a laptop, both running win xp home. Both are wirlessly enabled and connect wirelessly to the internet through a belkin router. The desktop will happily see the laptop and share files, and everything seems to work just fine. The laptop, however, refuses to see the desktop. I have shared all folders properly, both are part of the same workgroup, and I have run the network set up wizard, and tried to connect using RUN and the IP address. Whenever I try to connect the laptop to the desktop I get the same message; \\... is not accessible. You might not have permission to use this network resource. Cont ...Show All

  • Visual Studio Tools for Office Publishing Problem.....

    I cannot publish my VSTO Word Project. I have tried to publish the project to a web server and to a network drive. When I try to open the word document I get a "Office document customization is not available" error. When I try to open the the .application file I get a "Cannot Start Application - Cannot continue. The application is imporoperly formatted" error. I'm on my last rope! Any ideas Hi, Simple question, have you created a framework policy pointing to the network share so you can use the document's logic (by means of using Caspol.exe) You should remember, when you publish th ...Show All

©2008 Software Development Network