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

Software Development Network >> Enrico Sicignano's Q&A profile

Enrico Sicignano

Member List

MattMc3
eric_1234
Paul_IRET
LVGC_guy
GlockGuy
sertdemiry
nairB
TonyZhen
justgivemeasigninname
shinyhappy
Gregory Williams
jjenk
Jas001
Sonia Pignorel
Ashwin Seshadri
Spermij
barbarian
Jase555
Stein
DNH
Only Title

Enrico Sicignano's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. rendering on hardware device

    Hello, I am new to DirectX. How can I use the CreateDevice method to set the output to be displayed on my second display card(ATI Mobility Radeon X600) I set the device index to 1, is it appropriate Or I missed other properties Or I cant use the X600 card to render output device = new Device(1, DeviceType.Hardware, this, CreateFlags.SoftwareVertexProcessing, presentParams); Check out the adapterListCollection which you can enumerate to get AdapterInfo http://msdn.microsoft.com/library/ url=/library/en-us/directx9_m/directx/ref/ns/microsoft.directx.direct3d/c/adapterlistcollection/adapterlistcollection.as http://msdn.micros ...Show All

  • Software Development for Windows Vista ActivityValidator questions

    I've developed ActivityValidator for my custom activity. Everything seems OK, but 2 questions come to my head: When I'm adding new ValidationError to the collection why to overload with 2 strings - message and property name - the compiler puts a warning that this method is obsolete What does this parameter errorNumber represents Stefan, 1. In an ActivityValidator class you can also override ValidateProperties method. If you do that and pass PropertyName parameter, PropertyBrowser will display an error tag in front of that property and a tool tip will show the message if you hover over. 2. errorNumber is use ...Show All

  • Windows Forms Controlling font width and height independently

    I write on a form using ‘Drawstring’. I want the text to fill out the form, so when the user resizes the form, the text is resized. So if the form is long and narrow, the font width will be wide and the font height will be narrow. How can this be achieved Thanks, The ScaleTransform method can do what I want so it was more simple than I had hoped for. ...Show All

  • SQL Server Take Id-s From returned rows, and make a new SELECT

    Hello, I have a question on sql stored procedures. I have such a procedure, which returnes me rows with ID-s. Then in my asp.net page I make from that Id-s a string like SELECT * FROM [eai.Documents] WHERE CategoryId=11 OR CategoryId=16 OR CategoryId=18. My question is: Can I do the same in my stored procedure (without sending it to page) Here is it: Basically you would just put your ASP.NET side select statement ( SELECT * FROM [eai.Documents] WHERE CategoryId=11 OR CategoryId=16 OR CategoryId=18 ) into the stored procedure. Then change the WHERE clause to something like this (i left out the conditions): WHERE CategoryId In (Se ...Show All

  • Windows Forms the value of datagridviewcomboboxcell is invalid error

    I get the above error whenever I use a comboboxcolumn in a datagridview. I set up the datasource, displaymember and valuemember properties properly. But, when I run the app, I get this error... what is the reason of it  anyone who knows the fix of this problem... Or is this bug in VS.NET 2005 Beta.. I have a variation on this problem. I had filled my dataset with the ...Show All

  • Visual Basic VB 2005, Cell in an Access Database Newbie question

    Hi, In my program, how can i select values from my Datasource eg. A particular row or column etc etc, for example for a text box to display a single cell's value from the table. Thanks in advance Craig Hi, You'll have to bind the textbox to the datasource of your grid. ex: dataGrid1.DataSource = mydatatable textBox1.DataBindings.Add("Text", mydatatable, "field1")   cheers, Paul June A. Domag ...Show All

  • Visual Basic ADO and ADOX

    Is there a difference between Microsoft ADO ext for DLL and Security and Microsoft ADOX ext for DLL and Security. If there is could you please let me know where I can get ADOX   Thanks   Rocco There are several Dll's that make up ActiveX Data Objects...all of which can be downloaded for free from microsoft in the latest MDAC (Microsoft Data Access Components) http://www.microsoft.com/downloads/details.aspx FamilyID=6c050fe3-c795-4b7d-b037-185d0506396c&DisplayLang=en ...Show All

  • Visual Studio Team System Visual Studio 2005 Team Suite Release on MSDN Subscriber Downloads (Universal)

    Hello everybody, Today Visual Studio 2005 Professional was released on MSDN Subscriber Downloads. We were unable to find the Team Suite Release. Any help Best regards Ralf Rottmann If you are an MSDN Universal subscriber, you should see a Visual Studio Team Edition download. That's the one you need. You also need to install the Team Foundation Client Beta 3 that has been out for a while. However, I would lay off doing that for a while until we know the status of the "Team Foundation Beta 3 Refresh" that was supposed to be coming out at the same time as VS2005 RTM. Also see this thread for further discussi ...Show All

  • Visual FoxPro Display & list to the screen

    Am new to this - first part of msg disappeared after edit - trying again.   Display or listing a dbf to the screen produces a wrap when it should all be on 1 line. The dbf consists of 6 char fields for a total of 76 characters. Arial 10pt. I am using a 19 " screen so there are gobs of room. VFox 8 doesn't recognize the screen size Have noticed this in older versions as well. Courier spells relief, makes the display nice & tidy. Thank you CetinBasoz. ...Show All

  • Visual Studio 2008 (Pre-release) Provider model is still missing?

    It seems I have to wait for the next CTP. I have to use Oracle in my environment. Unfortunately, we could not squeeze this into the CTP schedule. We have done the basic refactoring but there is additional design work that we need to wrap up. We understand that it is a priority and plan to work with the community to enable others to write providers. So stay tuned. Thanks. Dinesh ...Show All

  • Visual Studio SourceSafe 2005 automation

    Hi I'm having some trouble, when using my existing VSS automation code when upgrading to VSS 2005 B2. The problem is when i e.g. whants to get the latest revision of a file to a directory that is different from the Working Directory of the file using the VSSItem.Get() method. VSS_Item.Get( ref LocalPath, Flags); I.e. The LocalPath differs from "" or null. The automation samples provided by Microsoft shows the same behaviour as my code - the file is not copied to the LocalPath destination - but no error is reported by the API ! Is there anything changed in the SSAPI.DLL e.g. new required Flags Best regards Bingster ...Show All

  • Windows Forms Datagridview: Cell with more than one value from DB is readonly, what can i do?

    I have a datagridview with a DataTable as Datasource.  One value in the select-Statement is build like this: value1 + '|' + value2 as value. I use the values for different things: First value is the string to be shown, based on the second value i set the background-color of the cell... (works fine with the paint method of the cell). Now I have a form which is shown by the onMouseClick-Event. From here i can set new values and write them back to the DB, and then i want to set the new value to the current Cell to redraw the cell with the new value, but its readonly . I don't need to save the value from here to the db, its  a ...Show All

  • Visual C++ errors with winreg.h

    Hi, I am using Visual C++ 2005 Express Beta 2, with the Platform SDK and the DirectX SDK installed. Whenever I try to compile a program that includes headers like this: #include <dsound.h> #include <string.h> #include <io.h> I get these errors (over 100): ------ Build started: Project: CPP DX Simple, Configuration: Debug Win32 ------ Compiling... CPP DX Simple.cpp C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\include\winreg.h(170) : error C2065: 'HKEY' : undeclared identifier C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\include\winreg.h(171) : error C2146: syntax error : missing ')' befor ...Show All

  • Visual C++ passing a stream as parameter

    I setup the following test void test(System::IO::Stream pStream) { } Not much here, I just want to pass a stream object as a parameter. When I attempt to compile this code I get the following error: error C2660: 'System::IO::Stream::Dispose' : function does not take 0 arguments I am using C++ 2005 Beta 2. Any help appreciated ___________________________________________________________ A little later, I was able to get it to compile with "System::IO::Stream ^pStream" but I am uncertain what the modifier ^ does when in the paramater list. I am a C++ guy too, and I am learning hard to get the ...Show All

  • Visual Studio 2008 (Pre-release) ForwardStack/BackStack property in NavigationWindow

    Hi In the sdk the API for NavigationWindow mentions the properties ForwardStack and BackStack. Im assuming this is the journal. However, I can’t seem to find the actual properties themselves. Do they exist Where should they be Thanks for any help Regards Helen Hi, Both these API's are accessible through the NavigationWindow object. They are not static API's, therefore you'll have to access them from instance objects of NavigationWindow. Thanks Sunil. ...Show All

©2008 Software Development Network