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

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

BostjanK

Member List

lokiprime
Ralf Boeck
John Cronin
EricBrown
darkmark327
tabwebdesign
Killewale
JeffreyKey
AtlzBIGuru
Sean Schade
Akiren
Simon L
micd7
bakup
Fabrice MARGUERIE
Andrew Renner
Mustafa Kamil ATA
CPB
DND
nh1234
Only Title

BostjanK's Q&A profile

  • SQL Server System.Data.Sql

    Hi, I'm digging through BOL to understand the main reasons the System.Data.Sql namespace is required for CLR.  It isn't in the documentation yet as of June CTP (as far as I can find). Anyone have light to shed on this Thanks, Joe Here is the BOL link: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/denet9/html/c73e628a-f54a-411a-bfe3-6dae519316cc.htm...  Is this true The reference is: The system.data.dll assembly contains the following namespaces, which are required for compiling CLR database objects: System.Data System.Data.Sql Microsoft.SqlServer.Server System.Data.SqlTypes ...Show All

  • Visual Studio Register for COM Interop

    What is this checkbox in the compile properties dialog supposed to do It adds a <RegisterForComInterop>true</RegisterForComInterop> to the project. I searched through all the Microsoft targets, but the property is not referenced anywhere. I assumed it would execute a target when building that would preform all the necessary steps for me register the DLL for COM. When I build through the IDE, nothing happens either in terms of registering the DLL for the COM Interop. I was just wondering what this checkbox was for, since it does not seem to impact the build behavior in any way. Never mind the ...Show All

  • Smart Device Development Win CE Emulator missing from Beta?

    Hi, It appears that the VS 2005 Beta2 install does not include any WinCE Emulation or WinCE device attachment options.  Is it necessary to have Platform Builder 5.0 installed as well Sean There is no plan to have built-in emulator of WinCE for Whidbey.  You will find a WinCE device attachment entry under the Windows CE 5.0 platform.  Options are available in the Tools->Options menu, under devices tools->devices->windows ce device. ...Show All

  • Windows Forms please can anyone help me

    hello i have made crystal report and one of the fields is a number of type integer which is exactly the daily revenue,how can i find a method to convert it to a plian text,for example if i the number is 18000 then the output should be eighteen thousand dollars and if the field is string as '18000' how can i also put the output as ab ...Show All

  • .NET Development System.Configuration and extensible configurations

    Hi there, I am developing an application that needs to provide an extensible architecture so that new functionality can be added using plug-ins.  This is fairly simple using .NET 2.0.  The problem I'm having is providing an extensible configuration model that works with .NET 2.0's System.Configuration namespace. An example of what I'm doing for configuration follows: <stuff_to_do>      <task type="MyClassLibrary.Task1, MyClassLibrary">           <configuration url=" http://www.google.com" />      </task ...Show All

  • Visual C++ implementaion of unwinding

    I have troubles finding information on this subject, so I'll try to ask here: What kind of unwinding mechanism implementation is used by VC8.0 Is it the same old and slow 'update structure on the stack while we go' (like it was up to VC7.1) Or MS finally decides to go after GCC & others by separating successfull execution path on compile stage (which is significantly more efficient) Bye. Sincerely yours, Michael. (1)(a) " __try/__catch instead of range checks " -- just as before: I hope you know what you are doing. Invalid data usage results not only in AV or DIV -- it could also results in memory ...Show All

  • Visual C++ Building the source code problem

    I get this error when i tried building my source code : Linking... .\Release\mcd.res : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt Error executing link.exe. CCalc.exe - 1 error(s), 0 warning(s) Im not sure what it means but when i tried to rebuild all, i get this error message instead Compiling resources... Error executing rc.exe. CCalc.exe - 1 error(s), 0 warning(s) can someone please help me out ps. i tried searching for the rc.exe file and i cant find it, where is it located or do i need to download it separately   im still kinda new in C++ thanks for your replies :) ...Show All

  • .NET Development Multiple network access

    Hi there This will probably be alittle long winded so please bare with me. I'm using C# .net 2 and SQLExpress. I want to write 2 pieces of software. The first is a scoring app that will run on 3 laptops all connected via tcp to another computer that has the database and another app that I will write. The app on thge laptops will allow judges to click on buttons to score points for the participants. Each button press will generate an SQL insert into the DB on the other computer. The second app will periodically do a select on the DB to display the current points or it may have a dataset that gets Fill()ed periodically. ...Show All

  • Software Development for Windows Vista Problem creating a parallel version of the ForEach example activity

    I am trying to create a custom activity that is similar to the ForEach example posted in the custom activity gallery: http://www.windowsworkflow.net/ControlGallery/ControlDetail.aspx Control=2222&tabindex=2   The code below is basically modifications to that sample (i.e. the activity inherits from CompositeActivity, etc.) The difference is that I want the set of activities executed to be done in parallel rather than serially. I’ve been trying to figure out how to accomplish it but have been running into some (perhaps naive) problems. The code looks like the following:   private void ExecuteChild( ActivityEx ...Show All

  • Windows Forms Possible bug's in listbox vb.net 2003

    1. When doublebuffering is enabled in a ownerdraw(fixed) listbox like so: SetStyle(ControlStyles.UserPaint, True ) SetStyle(ControlStyles.AllPaintingInWmPaint, True ) SetStyle(ControlStyles.DoubleBuffer, True ) <edit> SetStyle(ControlStyles.UserPaint, True ) breaks the listbox <edit/> Then the listbox stops painting properly. Don't tel me this is by design ;) 2. when you set a databind the listbox in the designer and fill on the SQLdataadapter in the load of a form/usercontrol, it takes aprox 1 se to fill (with SQL dataAdapter), even with a few records . When i first fill the dataAdapter and then bind the listbox&n ...Show All

  • Visual Basic Listing folder permissions using DirectorySecurity.GetAccessRules

    Hi, Does anyone have an example of using the above to enumerate access permissions (domain, user, rights etc) on a folder Regards Michael Try this Dim dirinfo As New DirectoryInfo("c:\temp") dsec = dirinfo.GetAccessControl(AccessControlSe ctions.All ) For Each drule As FileSystemAccessRule In dsec.GetAccessRules(True, True, GetType(System.Security.Principal.NTAcco unt)) ...Show All

  • Windows Forms how to get other behavior in a textbox when it is focused

    I am trying to modify the behavior of the text in a textbox right after it has gotten the focus. As now (default), the text in the textbox gets a blue bakground when the textbox recieves focus, but I want some other behavior instead. How should I go about this I have tried to override the OnEnter and OnGotFocus methods in the Textbox, but still the text is highlighted with blue upon recieving focus...    How exactly would you like to change its behaviour Customizing the textbox is very hard, often impossible, since the behaviour is hidden deep down into Windows code and hardly customizable. ...Show All

  • Visual C# console and a windows app in visual c# express

    I am trying to write a console and a windows app together.  In other words, if I give it command line arguments, I want it to be just a console app; if there are no command line args, then I want it to start the GUI.  So I started with a windows application and did some adding like so:  static void Main(string[] args)         {             if(args.Length == 0)                        //tests to see if I want to run from the console or   &nb ...Show All

  • Windows Forms To update a combo box collection

    Hi. In the form that i made, I have a combo box that shows a list o directories thay I need to use in the aplication. When the application starts up it executes a procedure that updates the collection of that combo box with the name of all the directories names that I need. In order to update the combo box, I craete a While procedure like this: While a < My .Computer.FileSystem.GetDirectories( "\\172.17.1.7\comum\AA_Ficheiros Comuns\AA_FOTOGRAFIAS\" ).Count scu = My .Computer.FileSystem.GetDirectories( "\\172.17.1.7\comum\AA_Ficheiros Comuns\AA_FOTOGRAFIAS\" ).Item(a) GestorFotos.Frm1.CboSuc.Items.Add(scu.Remove ...Show All

  • Windows Forms How can show the many instances of form opened in 'window' menu like in MSword?

    In MSword, if I open five documents, the window menu shows all the five, and when I click the one, that instance opens. How can show the many instances of form opened in 'window' menu like in MSword Any web pages, clue or sample would be appreciated. Thanks, Jil. Coooooool! It is working, great help.Thanks a lot KiddKane ...Show All

©2008 Software Development Network