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

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

Liston

Member List

mta37
Caioshin
Hatter Jiang
Zjivago
Pascal Mignot
Robi-Robo
cyberjoe2
The Plano Texan
22DoorsDown
Andy Jarvis
Damien LIM
Vladimir Chtepa
Sandeep A
Jose Francisco Ruiz Gualda
amazingsunday
stevenmcs
vtortola
DBRICHARD
invantix
Alex-MyRpg
Only Title

Liston's Q&A profile

  • Visual Basic Cannot debug converted programs from 2002 to 2005

    Good Morning, I have converted several programs from 2002 vb .net to 2005 vb .net. I have notice while stepping through my code I can't step into (F8) the code of a converted dll like I could in 2002. I have even tried the debugging keys from 2002 and they just step over the code also. When using these keys the debugger steps over the code like I was pressing Shift + F8 keys. I need to step into this dll since the converted dll code is now throwing errors which are not there in the 2002 code. Is this a known bug If so is there a fix for it or will it be released in the near future We cannot migrate to the 2005 version until this is fixed since there are other issues as described above. Thank you for your time. ceoliver ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. LineList Performance?

    I have a simple class that sends a list of vertices and indices to a buffer(each). The performance is very slow when rendering a LineList. Rendering starts to slow when rendering as few as 500 lines. Is this normal I can render a TriangleList with 100,000 triangles with better performance! Thanks. It does seem excessive for it to slow down with only 500 lines but, in general, most consumer graphics cards are terrible at drawing lines. The graphics card companies do this to preserve the market for their "high end" cards that they sell to the professional industries for use in CAD applications. ...Show All

  • SQL Server Deadlock problem? 3 way conditional split of data from one table to another never completes

    I have a source table which I'm splitting 3 ways based on a column value, but the target is the same OLE DB destination table. One conditional path is to a Multi-Cast two way split to same OLE DB gestination table. The default split is to a flat file for logging unknown record types. For a test I have data for only the 3 column values I want, but I'm having trouble with the process completing. If I pre-filter the data going into the source table by one or two values I can get the process to complete even if one split is to the multicast. If I include all three data types in the source table, I get different results depending on the order in which the conditions are specified - sometimes only two split paths are executed; other times all th ...Show All

  • Smart Device Development Accessing the PDA's File System from a VB.Net App on a PC?

    Hi I have a mobile database on a PDA and i need to access the data stored in this database with an app that is running on a PC. The PC and the PDA are connected Via a USB Link, the PDA does not have any other network connections. is this possible if so any one know how i might do this You could use RAPI to copy file from PDA to desktop so it can be accessed. This question has been answered before so please search for RAPI if you need more info and/or samples. ...Show All

  • Smart Device Development How to open PocktPC Calculator application..

    How can I open the Calculator application in the Windows Mobile at a click of a button Thanks, Vijay Why can't you use the "Process" class in the System.Diagnostics namespace i.e. Process.Start See the help in Visual Studio for examples.... ...Show All

  • Visual Basic How to get DataGridView into Database

    How I get this into Database Thank you. Public Class Form1 Dim PocetRiadkov As Integer Private Sub Table1BindingNavigatorSaveItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Me .Validate() Me .Table1BindingSource.EndEdit() Me .Table1TableAdapter.Update( Me .Database1DataSet.Table1) End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'Database1DataSet.Table1' table. You can move, or remove it, as needed. Me .Table1TableAdapter.Fill( Me .Database1DataSet.Table1) End Sub Private Sub Button1_Click( ByVal sender As System.Obj ...Show All

  • Visual Studio Team System Links to VSTS from outside Studio

    How do I create a link to a VSTS versioned item that I can place in a local folder Can I create create a URL of the form vsts://myTeam/latestversion.foo Basically I'd like to be able to create a folder full of links to items under Team version control. (like the Links tab in the Work Item Task form) The question was pretty general so I will do by best and kind of list some scenarios and their solutions. 1) You want to create links to view the files from windows: Well the files are under version control which means that you need to have access to version control and those files in order to view them. To do these kind of links you will create a batch file that serves as the link that exec ...Show All

  • SQL Server ole db source editor "preview" throwing an error

    i have a data flow configured to use a ole db source.  the ole db source uses an ole db connection manager pointing to the adventureworks db which suceeded when i tested its connection.  the data access mode of the ole db source is "sql command".  below is the sql command text: SELECT SpecialOfferID, Description DiscountPct, Type, Category, StartDate, EndDate, MinQty, MaxQty, ModifiedDate FROM Sales.SpecialOffer WHERE ModifiedDate >= AND ModifiedDate < this query uses 2 paramaters, each of which is mapped to a datetime variable which falls with the range of the ModifiedDate column as follows: Parameter0: User::ExtractStartDate Parameter1: User::ExtractStopDate ExtractStartDate is set to 7/1/2001 an ...Show All

  • Internet Explorer Development .Net Framework 3.0 and IE7

    I've downloaded and installed the darn .net framework 3.0. Its quite cool but i've experiencing the IE7 context menu problem. After installing the netfx 3.0 my browser doesnt open the context menu when I right click on any web pages. Dont tell me that the sites might be resticted to show the context menus, I ve tried on my own web site. Even Microsoft sites and so on. Is there anyone experienced the same problem thank you! ...Show All

  • Windows Forms Add values using Datatable

    I have a DataTable with two rows and two columns....In one of the columns is a decimal type how would i got about adding those values up and displaying them in a textbox.....Like i click a button my DataTable comes up I enter three or 4 numbers....I click my ok button on that DataTable form and it adds up those values and shows them in a textbox.....on my main form....can this be done without first saving the values Yes you can do without saving.   iterate thru the rows in cell endedit event. transfer the total amt to a variable assiciated with the main form.     if (e.ColumnIndex == 7)  -- refer the particular column index { TotalAmount = "0" ; for ( int i = 0; i < dataGridView2.Ro ...Show All

  • Visual Basic datagridview navigation and create new record behavior

    Hello, I have a form with a datagridview and when I tab into it I have it set so I can use the enter key to go to next cell using this code: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Private Sub DataGridView2_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles DataGridView2.KeyDown If e.KeyCode = Keys.Enter Then If DataGridView2.CurrentCell.ColumnIndex = DataGridView2.ColumnCount - 1 Then If DataGridView2.CurrentCell.RowIndex < DataGridView2.RowCount - 1 Then DataGridView2.CurrentCell = DataGridView2.Item(0, DataGridView2.CurrentCell.RowIndex + 1) End If Else DataGridView2.CurrentCell = DataGridView2.Item(DataGridView2.Cu ...Show All

  • SQL Server Problem appending to a raw file

    I have subscription records for five different magazine titles that i process by looping each one though a dataflow using a for-each loop. I am using the following instructions to append to the raw file: http://blogs.conchango.com/jamiethomson/archive/2005/12/01/2443.aspx This works fine when I pass four different magazine titles. when i try to run all of the titles(five), i get the following errors: [Raw File Destination [131195]] Warning: The parameter is incorrect. [DTS.Pipeline] Error: component "Raw File Destination" (131195) failed the pre-execute phase and returned error code 0x80070057. Any ideas Thanks. Frank I guess my first avenue of investigation would be to identi ...Show All

  • Visual Studio Express Editions Asynchronous Calls

    hello fellow programmers, i was just having some problems on how to make an asynchronous call. well, can someone show me a very simple program thats uses asynchronous calls thanks in advance! Can you be a little more specific Let me see if I have some code examples. Also HttpWebRequest has examples of Asychronous use in the Help Files. I fear my better asynch examples won't be real different from what you find in help. Many things are asynch like events and timer tick handlers which is also an event. The Documentcompleted event in the WebBrowser is asynch. ...Show All

  • Visual Studio 2008 (Pre-release) VB 9: Order By bug?

    Can anyone explain to me why Order By works fine while selecting the whole object: Dim data2 = From c In db.Cities _ Select c _ Order By c.Name But doesn't work when selecting only one property Dim data = From c In db.Cities _ Select c.Name _ Order By c.Name error BC32050: Type parameter 'K' for 'Public Shared Function OrderBy(Of T, K)(keySelector As System.Query.Func(Of T, K)) As System.Query.OrderedSequence(Of T)' cannot be inferred. The key here is the order in which the result sets are evaluated. In the VB case, Select c.Name creates a List(Of String) with the name of the string property as "Name". Thus, when you get to the Order By clause, it does not know about c In db.C ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Will build #5536.16385 of Vista be compatible with D3D10 in August'06 SDK?

    Hi, Just checked my email and it seems that beta testers (maybe MSDN people as well) can now get another pre-RC1 build of Vista. The August'06 SDK states that the D3D10 CTP will only work with RC1 of Vista and the other recent pre-RC1 build wasn't good enough. So, just wondering if anyone here knows if 5536 will work with the August SDK or if we still need to stick with Beta-2 and the June SDK. Would save me a lot of time before I go and download 5gb of ISO's and spend a few hours setting up my test machine... Cheers, Jack Ralf Kornmann wrote: I haven't seen x64 ISOs for this build so far. My bad for not checking connect: 8-25-06 - Click here to download the latest 5536.16385 ...Show All

©2008 Software Development Network