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

Software Development Network >> Emanuele DelBono's Q&A profile

Emanuele DelBono

Member List

Kojacked
Giampiero
GUM Man
SebasC
object
Alex Eyre
Meg!
RAnderson14
CalvinR
SkattyD
Spangeman
EmadH
hgarrett
Chris.Chen
olapdummy
r3n
steve smith
Dan Stojadinovic
helsby
Kelly7018
Only Title

Emanuele DelBono's Q&A profile

  • Visual Studio Team System Scheduling Daily Builds

    Is there a way to schedule a daily build in TFS The only way that I've found so far is to run it manually, it would seem to be a very common scenario. Brad Raulston How about continuous integration instead http://weblogs.asp.net/dr.netjes/archive/2005/07/20/419957.aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX 9.0 SDK November 2005?

    hello everyone, is it possible if i could know when will The DirectX Team release the DirectX SDK for november 2005 Thank You It as indeed my card :-) I got tired of it and bought myself a better one... Now of course every thing work perfectly :-) 9200 was indeed for DX8 and the new SDK expect a better shader... Now I'm having fun with Ati Render Monkey...(free on ATI site) Exept that my *.fx file don't work well in Effect Edit Oh well, I will find a way :-) ...Show All

  • Smart Device Development Threading management

    Hi all, I have the following case with my smart device application: My application synchronizes data from a local database on the pocket with a main database on a remote server. This function builds the connection to the server and do the synchronization. I use this function in many places in the application. My problem is condensed with two things: 1. How to build a background proccessing for all the synchronization calls. 2. Let's say we have three points in the application we do the synchronization (Point A,B,C). C get the result from the A,B points synchronization, if the result is true then it makes the synchro ...Show All

  • Visual Studio Express Editions Register for COM Interop Missing?

    I've noticed that in VC# 2005 Express Edition an option to "Register for COM Interop" (Project > Properties > Build) is available. However, when I try to search around VB 2005 Express Edition I cannot find such an option. What would I need to do in VB 2005 EE to have the same effect of having VC# "Register for COM Interop" selected Thanks, Ryan If this was a DLL project... there are several considerations: The immediate answer answer and part of it is: Project | Properties | Application | Assembly Information | Make Assembly COM Visible Also you ne ...Show All

  • Visual Studio Tools for Office Outlook Appointment Schedule

    Hello, this is my first post here. I am trying to create a custom appointment scheduling windows application using VB.net that is setup like the appointment scheduling in outlook. Is there a control that I can use that will help me, or can anyone offer me any advice as to how to achieve this Basically, the main aspect of the outlook appointment scheduler I can't seem to figure out how to set up is getting the day view like the one in outlook. Any help would be greatly appreciated. Thanks in advance for any help which you can provide me. i am looking for a schedule componant for a clinic software to creat ...Show All

  • Visual Studio Express Editions Custom controls

    Is it possible to write custom controls in VB Express Edition Also, if it is, how do I add the custom control to the Express Edition IDE Thanks, hi, Blair i'm sure you know what i mean , i don't ask you to stop saying your opinion i just talk about the way you express it ( sux, dog ... etc) i used to feel offended from that and i'm sure many others as well do you remember one of our friends used to refuse this way but when we talked to him without those strong words he was convenced and allready shift , the sad part is when he shifted he started to use those words, believe me if you started to avoid those sharp ...Show All

  • Smart Device Development How to Get a Checkbox inside Listbox in Compact Framework

    Hi, I am designing a Questionnaire. In this i need to design a multiple selection in the listbox by using checkbox.. but i didn't find this option in the listbox. How to get this feature in listbox Regards Sarath Hey Alexy,                    Could you send me the Code Regarding This (if possible design also) Regards Sarath     ...Show All

  • Visual C# C#.net or VB.net

    I am beginner for .net programmer. Just want to know which one is better on marketing VB.net or C#.net I heard big companies more like c#.ner than vb.net thanks. Hi , I am beginner for .net programmer. Just want to know which one is better on marketing VB.net or C#.net I heard big companies more like c#.ner than vb.net thanks. ...Show All

  • Visual C# Abstract classes and static methods

    Hello there! I was wondering why is not possible to define a static method into an abstract class, well... I was wondering that because I'm trying to force an user who inherits from this class to implement a static class and I just didn't find a way to do that... is there a way to do this Because there's a layer calling static methods and I don't want to change these methods to regular methods just because I'm not being able to solve this problem... Thanks Static methods can be defined in an abstract class. However, you cannot force a derived class to implement a static method. If you think about it, such a method would be ...Show All

  • Windows Forms Application::Exit() does nothing !

    can somebody please explain why the following C++ .net code popus up a message box Application::Exit(); Application::ExitThread(); MessageBox::Show(S"exiting"); surely the first line should terminate the program instantly the second line should do the same thing to the current thread the third line should not have a chance to execute!!! so how can i terminate my program early without us ...Show All

  • SQL Server Return the data from a table ordered by its hierarchy

    How can I create a function that returns hierarchical data from a table with this structure: - CategoryID - CategoryName - CategoryFather I want to bring the result set like this... CategoryID | CategoryName | CategoryFather | HierarchicalLevel 1 | Video | 0 | 0 2 | DivX | 1 | 1 3 | WMV | 1 | 1 4 | Programming | 0 | 0 5 | Web | 4 | 1 6 | ASP.Net | 5 | 2 7 | ColdFusion | 5 | 2 How can I do this Does anybody has a sample code I need this on SQL Server 2000 and if it's possible (but not too necessary) in SQL Server 2005. Thanks. In SQL Server 2005, you can use Recursive CTSs to achieve the same. WITH HierarchyListing ...Show All

  • Visual C++ /FC compiler switch apparently not working

    Hi all, When trying to output the __FILE__ predefined macro, I always get the file name fully qualified regardless if I have /FS set or not as a compiler option. Is this switch not working, or is there some other compiler switch that is forcing fully qualified path names There is no /FS compiler switch. There is a /FC compiler option, that causes the compiler to display the full path of source code files passed to the compiler in diagnostics, including for the __FILE__ macro. If /FC is not specified, the names of the files are displayed, and not the absolute paths. So, I think you make a confusion here ...Show All

  • Visual C# Installation

    I have used and seen many programs where there is no need for an installation process. I've used and seen many programs to where I download and the program just opens how. Can anyone tell me how to accomplish this No install means the machine running the exe has all the files\dependencies installed already...(if any are needed) With Net 2.0....the computer will need the framework installed...not much you can do. ...Show All

  • Visual Studio Express Editions How to use C# to communicate with device driver?

    Hi, I'm a beginner in C# I have to write a program to communicate with our device driver, how to call the IO control code which exported by driver by C# Thanks!! regards, Grace   The following article shows how to communicate with a device driver from a C# application. http://www.windevnet.com/documents/s=7625/wdj0204b/0204b.htm Hope this helps. Michael Blome - Visual C# Documentation Team ...Show All

  • Visual Basic Dynamic Variable Assignment

    I am looking for a way to simplify my code and to make it more extendable for the future Right now I have a function that takes in an object and a string as an argument and, for all intents and purposes, returns a reference to an instance variable of that object, what I have is a large bunch of if-elseif statements that is very bulky and limiting: If str = "Temperature" Then     Return myObj.Temperature ElseIf str= "Pressure" Then     Return myObj.Pressure ... End If If in the future more instance variables are added this function will also grow, and it is already pretty bulky as is. Also I dont like har ...Show All

©2008 Software Development Network