Software Development Network Logo
  • VS Team System
  • Smart Devicet
  • Visual Studio
  • Visual Basic
  • Audio and Video
  • .NET Development
  • SQL Server
  • SharePoint Products
  • Windows Vista
  • Windows Forms
  • Microsoft ISV
  • Visual C#
  • Visual FoxPro
  • Game Technologies
  • IE Development

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

ArnsteinD

Member List

The_Nod
nidionys
MFZ
A.Carter
Ludovico
Donaghy
CodeDjinn
PIERCGG
tshah21
Rob Zuber
Merryhu
brother martin
Eric Brinkerink
puffzotty
TripleF
Chibi-Acer
AZ13
Johnathan Seal
A. Dachauer
mdrelyea
Only Title

ArnsteinD's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. DrawUserPrimitives with GraphicsBuffer

    i recently tried to draw some lines using DrawUserPrimitive method, but in the last DirectX (assembly 2.0) they changed this function and now i must send GraphicsBuffer data to draw the vertices, i don’t know how to use it, i looked other web pages and found tips, like this: GraphicsBuffer< PositionColored > gb = new GraphicsBuffer< PositionColored >(3); gb.Write(vertices); but it doesn't compile, it sends this: Error 3 "The non-generic type 'Microsoft.DirectX.GraphicsBuffer' cannot be used with type arguments " what can i do please help Hello: I want to render a tringle with postionColored vertex. I have made the same that the last examples. The problem that I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where can I download DirectX9/10 SDK for VB ?

    I found one , however it documentation was for C++. Is a documentation of DirectX9/10 for VB exist My problem as a newbie starting out with directX is to Know what version to start with.Im confused about the new Directx10 which supports Vista as some forum stuff I've read suggests it does not support XP So I'm wondering if I should download the direct 9 version ( which is how I came upon the above URL) I'm using XP home and VisualStudio 2005 Express  C# --- Would the new DirectX 10 be compatible with this or should I start out with DirectX9 SDK If anyone can point me in the right direction would appreciate it. ...Show All

  • Windows Forms e.Graphics = picCapture.CreateGraphics();

    Hi, please take a look below private void pictureBox1_Paint(object sender, System.Windows.Forms.PaintEventArgs e) { e.Graphics = oldPicture.CreateGraphics(); } However, above scripts throw Exception "Property or indexer 'System.Windows.Forms.PaintEventArgs.Graphics' cannot be assigned to -- it is read only" How can I replace the graphics of pictureBox1 to picture1.CreateGraphics(); pictureBox1.Image = picCapture.CreateGraphics(); throws Error 1 Cannot implicitly convert type 'System.Drawing.Graphics' to 'System.Drawing.Image' and I can't see the image at this moment. There is some problem http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=531532&SiteID=1 ...Show All

  • Visual C++ Trouble with Speech SDK 5.1 and Visual Studio 2005

    Hi I updated my version of Vs 2003 to Vs 2005 Pro . My project was sucessfully compilated and linked in 2003 , but i seem to have trouble with SpHelper.h. ( Speech API) Error 18 error C2065: 'psz' : undeclared identifier F:\Program Files\Microsoft Speech SDK 5.1\Include\sphelper.h 2373  Error 38 error C2065: 'psz' : undeclared identifier F:\Program Files\Microsoft Speech SDK 5.1\Include\sphelper.h 2373  Error 70 error C2065: 'psz' : undeclared identifier F:\Program Files\Microsoft Speech SDK 5.1\Include\sphelper.h 2373  Error 7 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int F:\Program Files\Microsoft Speech ...Show All

  • Visual Studio checkout file dialog box does not show the username.

    hi, I am working with vs2005 and vss 6.0.Can anyone please tell me how do i show the user name who has checked out the file in vs2005. is there any option for this in vs2005/vss6.0 thank you.. Steve, the error message is in VS, and it's easy to reproduce. The message string comes from VssProvider.dll, which has no way of determining which VSS user has the file checked out (after a failed SccCheckout MSSCCI call, we can check the status file-by-file by calling SccQueryInfo, but the only information we'll get back is a flag SCC_STATUS_OUTOTHER | SCC_STATUS_OUTEXCLUSIVE). The only one that can provide checkout user information is VSS, and it does that by calling back VSS during the SccCheckout ...Show All

  • SQL Server ODBC Link from Access to SQL Server 2005 Stored Function

    If I define a table-valued function in a SQL Server 2005 database, can I link to it from Access 2003 using ODBC I've defined the function successfully, and I can link from Access to tables in the database (so my ODBC link is basically functioning), but I can't see the table-valued function in the Linked Table Manager in Access. I can define a pass-through query to grab the table, but with a pass-through query I have to provide the ODBC password every time. What am I missing Suggestions ...Show All

  • Microsoft ISV Community Center Forums variable declarations

    Hi, this is kind of a basic and maybe a silly question, but also hopefully a simple one. in a few code snippets i have seen online, i have seen dim declarations made with variable names followed by ampersand or percent sign...such as dim Dim LastRow&, LastCol% what do these signs mean do they specify some kind of characteristic for the variable thank you, kriti I found one list on this page , there are probably better references around. Remember that this kind of declaring your variables is considered obsolete and should be avoided. Andrej ...Show All

  • Visual Basic Dealing with null values

    I remember when I was using VB6 that I always used If IsNull() End If statements to check for null records before performing any kinda of calculations, does this still hold true or what is the best way to deal with nulls Davids Learned Alot Today! You have nulls in VB which you can check for by saying Module Module1     Sub Main()         Dim x As Object         If x Is Nothing Then             MsgBox("foo")         End If     End Sub End Module Nothing is the VB keyword representing nu ...Show All

  • Visual Studio Bolds in a textbox ms-access

    I work in MS-ACCESS and I don't program in VB I would like to combine Fields and text in a textbox. I would have something like this: =Format([name], "Bold" & " " & [lastname]) the expect output shoul be Mark Andersen Is there a way to do this ...Show All

  • Microsoft ISV Community Center Forums vlookup

    Hello can anyone help me with how to write the excel vlookup function in vba the function in excel looks like this VLOOKUP(O2,'[Consolidated list of supplier.xls]Sheet3'!$A$5:$F$218,6,FALSE) how can i get something similar working in a macro. thanks namrata Hi, How about some like this Dim rngLookupValue As Range Dim rngtable As Range Dim lngColIndex As Long Dim blnRangeLookup As Boolean Set rngLookupValue = Range("O2") Set rngtable = Workbooks("Consolidated list of supplier.xls").Worksheets("Sheet3").Range("$A$5:$F$218") lngColIndex = 6 blnRangeLookup = False vntResult = Application.WorksheetFunction.VLookup(rngLookupValue, rngtable, lngColI ...Show All

  • Visual Basic stringbuilder or string within structure to match a C++ struct..??

    **********************     C ++  6.0    ******************************************* typedef struct sSegment {     char   szName[128];                  } sSegment; int EXPORTED GetSegment(long lSegmentIndex, sSegment* pSegment) **********************     data marsaling in vb.net  ******************************************* Public Declare Function GetSegment _         Lib "EVaRT40.dll" _             (ByVal lIndex As Integer, ByRef objSegment As Segment) As Integer ****************** ...Show All

  • Visual Studio 2008 (Pre-release) DesiredSize of Control is not set, even if width/height is explicitly set

    Hi folks, I'm using the following DataTemplate in a GridViewColumn to realize a row header in a ListView : < DataTemplate x:Key="LVRowHeader"> <foo:ListViewRowHeader Background="#FFD4D0C8" Padding="0" Height="13.2" Width="20" VerticalContentAlignment="Stretch" HorizontalContentAlignment="Stretch"> <Control.Template> <ControlTemplate> <Microsoft_Windows_Themes:ClassicBorderDecorator BorderStyle="Raised" BorderThickness="3" Background="{TemplateBinding Property=Control.Background}" Height="{TemplateBinding Property=Control.ActualHeight}" Width="{TemplateBinding Property=Control.ActualWidth}"> <Viewbox> <Canvas HorizontalAlignment="Center" VerticalAlignment="Center" W ...Show All

  • Smart Device Development Windows Mobile 5.0 appln can run on deevice with wm 2003 Os?

    Hi, Is it possible to build the appln on WM 5.0 for pocket pc and then making it on the devices having Windows Mobile 2003 Help needed. apps created in .NET CF 1.0 will be able to run on WM2005, since it has by default .NET CF 1.0 .NET CF 2.0 will install on PPC if they are running WM2003, with some devices as exceptions. you cannot install .NET CF 2.0 on smartphones running WM2003 ...Show All

  • Visual Basic Add New Data Source for My SQL doesn't work

    I have tried also installing and using the ODBC driver version 3.51 and the My SQL driver 3.1.8.  None of these work. What do I have to do to add a new MY SQL data source Michael Please re-read the first message that I sent!! I have already tried first installing the ODBC driver version 3.51 and then after removing it then installing the MY SQL driver 3.18 and neither worked with Visual Studio Enterprise Edition Beta 2. I am confused by your answer it means little to nothing to me. ...Show All

  • Windows Forms How Do I get destination URL for NewWindow Event in C# Web Browser

    I have a client application in C#, .net 2.0, which uses the built in web browser control. I have implemented the NewWindow event in order to find out when the user launches a new window via window.open() in HTML/JS code. 1) In my event handler methof, I would like to check the destination URL before deciding whether to cancel (e.cancel) the action or allow it to go on. But I have not been able t find the destination URL anywhere 2) I have noticed that the Session is not handed over to the new window, which is causing me a lot of headaches. For popups that need the session, I would cancel the new window and instead start my own browser window, with the same destination URL. (New windows using WebBrowser seem to inherit the ...Show All

©2008 Software Development Network