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

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

ArcPadNewbie

Member List

Rumen Filkov
MKBender
thomasx4
Sniper167
jcsam
William Xie
dcube9
Fiksman Evgeny
Paval
Michael_Giagnocavo
charles C
Drazen Panic
S 007
Oleksiy
dwitt
Kapoulkine Arseny
Timothy Wilson
FtLeeJerry
Roof Top Pew Wee
me*
Only Title

ArcPadNewbie's Q&A profile

  • Windows Forms add 2 DataTables into 1 DataGrid

    hi, I have 2 dataadapters that fills 2 datatables i want to show them both in 1 datagrid How do i do it I think detail steps to combine two tables depend on the logic how you want to combine them. If you just want to create a new table with all columns in those original two tables, use following code for example DataTable dt = new DataTable(); foreach (DataColumn column in northwindDataSet.Customers.Columns) dt.Columns.Add( new DataColumn(column.ColumnName,column.DataType,column.Expression)); foreach (DataColumn column in northwindDataSet.Employees.Columns) { if (dt.Columns.Contains(column.ColumnName)) continue ; dt.Columns.Add( new DataColum ...Show All

  • Visual Basic Adding Controls Dynamically

    Hello, I am going to try and explain this to the best of my ability. Within a form I am going to be using probably (open to suggestions) a TableLayoutPanel to split the header section and the diffrent controls. The unquie part about it is, whenever the header is clicked another whole header and the diffrent controls are added. So for example this is what it looks like when the form initially loads: -------------------------------------------------------------------------- Header - Header - Header - Header - Header - Header - Header -------------------------------------------------------------------------- 26 Controls within a panel -------------------------------------------------------------------------- After the form is loaded an ...Show All

  • Windows Forms Printing scrollable ListView with PrintForm component

    I have been trying to use the new PrintForm component in VS2005 to print forms in my VB.NET Windows application. I am running into two problems: 1) I can not print the content of a scrollable ListView. Let's say I have a ListView control on the form I want to print. I print the form using the following code: Me .Main_PrintForm.PrintAction = Printing.PrintAction.PrintToPrinter Me .Main_PrintForm.Print( Me .ActiveMdiChild, PowerPacks.Printing.PrintForm.PrintOption.FullWindow) which does print the form, but the content of the ListView is cut off to only the visible part of it. I want to print all the elements of the ListView including the ones that are not visible to the user that they would have to scroll down in the ListView ...Show All

  • SQL Server Errors on install of SQL Svr 2005 Enterprise

    Greetings, I have attempted a full install of 2005 Ent on our W2k3 Enterprise server. When attempting to install all services (SQL Svr database, analysis, reporting, notification, integration, client services/components) I get the message: "The features specified are not valid for this edition of SQL Server". I got the same thing when attempting to install with various subsets of services. Then I tried just database services and client components and got the message: " There was an unexpected failure during the setup wizard. " Perusing the core.log, I see: Fatal Exception caught while installing package: "10" Error Code: 0x80070002 (2) Windows Error Text: The system cannot find the fil ...Show All

  • Software Development for Windows Vista Vista 5600 - ThinkPad T60p - STOP 7E ACPI.SYS on Install

    Trying to Install or Update XPPROSP2 on a ThinkPad T60p to Vista Build 5600. Boot to DVD gets STOP 7E with ACPI.SYS error. Upgrade goes through normal copy et al, then reboots to STOP 7E with ACPI.SYS error. im sorry but this is the incorrect forum for your question. These forums are for software development on Windows Vista the best place to ask your question is in the appropriate newsgroup, which can be located at the communities: www.microsoft.com/communities Remember, Vista is not complete yet and is not compatible with all laptops. Thanks! ...Show All

  • Audio and Video Development R

    Hi. I'm sending "dummy sample" when there are no data to send from source. butRequestSample() come buck so quickly and keeps spining until data are ready. It's really waste of CPU power. What should I do to stop this I'm trying to build something like a LiveTV player. Thanks. Kasumi. I'm guessing that you have an MFT downstream of the Media Source that interprets these dummy samples as "no data". If you give this "no data" sample a duration, then your MFT can just produce that duration's worth of silence (audio) or repeated frames (video) and return MF_E_TRANSFORM_NEED_MORE_INPUT from ProcessOutput only when those have been exhausted. This will keep MF f ...Show All

  • .NET Development RijndaelManaged and Base64 - overflow characters after decryption.

    Hello fellow developers! I have a problem in two routines for encrypting and decrypting text files, it works fine except the decrypted file contains 3 extra characters " i ". Is there anyone out there that has experienced the same problem or has an idea for a solution I have tried using different PaddingMode settings but without getting closer to a solution. PaddingMode.None - Exception during encryption, "Length of the data to encrypt is invalid." PaddingMode.ANSIX923 - Ok but "i " at end of file. PaddingMode.ISO10126 - Ok but "i " at end of file. PaddingMode.PKCS7 - Ok but "i " at end of file. PaddingMode.Zeroz - Exception during decryption, "Invalid character in a Base-64 st ...Show All

  • Visual Studio Express Editions InvalidCastException

    OK, I'm a beginner at this programing stuff, and I know my problem is a simple fix but I'm just not seeing it, so my apologize. Here my problem I have three textboxes, two of them receive a value, the third is calulated using the two value from the first two. My problem is when the first two textboxes are left blank I get the error message Invalid cast exception. I declare the first to numbers as decimals. Here how I wrote the code: Public Class Form1 Dim firstnum, secondnum as decimal Private Sub Textbox2_leave(Byval.......)Handles Textbox2.Leave Firstnum = Textbox1.Text Secondnum = Textbox2.text Textbox3.Text = firstnum*Secondnum end sub end class Thank for your help. Also if anyone can r ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is there any built librarys/function for collision detection?

    I was just wondering if there's any sort collision detection build in to XNA If so what can we expect We provide a number of bounding volumes with intersection and containment checks. This would give you simple collision detection. We do not provide any sort of complex collision detection or physics simulation (collision or response). Paul ...Show All

  • Visual C# Question about Windows Services ??

    I don't know if this question belongs here, its more of conceptual question. What is the use of Windows Services I have a business layer and a data layer which has to somehow run with that service and have a client application that will call that and do some functions. How can I accomplish this task Any examples or tutorials, highly appreciated. Thanks, Harsimrat hi take a look at the .net remoting example below http://msdn2.microsoft.com/en-us/library/3tzky0f2.aspx .net remoting being one of the possibilities of communication with the server Hope this helps you out, please close the thread if it does ...Show All

  • Visual Basic ListView and CheckBoxes

    Private Sub lvSelected_ItemChecked( ByVal sender As Object , ByVal e As System.Windows.Forms.ItemCheckedEventArgs) Handles lvSelected.ItemChecked Try If lvSelected.SelectedItems.Count > 0 Then If lvSelected.SelectedItems. Item (0).Checked = True Then Multiplier.ShowDialog() End If End If Catch ex As Exception MessageBox.Show(ex.message, "Select Exam", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1) Exit Sub End Try End Sub Here's my code.Hope you can help in this one.When the data is loaded in the listview and I checked on an item, nothing happens, but originally I should have prompted something like "You sh ...Show All

  • SQL Server OLE DB Destination

    I am proceesing a file and using a OLE Db destination for inserting the rows present into a file to the table. As of now OLE db destination points to the table and having the fileds mapping of input column and destination column. now i want to perform some calculation and want insert the rows into table based on the value of some other column for ex. if (column2 == 1) { column1 = column4 - column5 } if (column3== 1) { column1 = column4 - Column6 } Please let me know how to do this. I want to implement all this four condition in one derived column expression. if (Column1== 1) { OutputColumn = ColumnA- Column1RATE } if (Column2 == 1) { OUtpu ...Show All

  • Visual Basic Windows application framework properties vanished...

    The "Windows application framework properties" disappeared from the "Application" tab of "My Project" under VS2005. How could I make it appear on the tab page again A few questions Is this project a windows application and not a console or class library application What is you startup object in My Project for this project Was this application created in VB.NET 2005 or was it a convered project The following may shed some light on what is occuring, as enable application frameworks is only enabled in certain cirumstances, ie Windows application created in 2005 with form as the startup object http://msdn2.microsoft.com/en-us/library/17k74w0c.aspx ...Show All

  • Visual Basic Cannot update / insert to access table

    All. I have an access database containing one table stored in my resource file. I can select from this table using the OLEDBCommand and an sql statament etc which works fine. However when I try and do an update or insert to the table no changes actually take place even though when debugging the code it says its been successfully. Can any one help Code Below Cheers Dim PPSConn As OleDb.OleDbConnection, PPSCmd As OleDb.OleDbCommand, strSQL As String, RowCount As Integer = 0 PPSConn = New OleDbConnection(csGlobal.PPSLocalConnString) strSQL = "update tblLocalApp set LocalVersion ='" & "9.9.9" & "' WHERE AppID=" & ApplicationID PPSConn.Open() PPSCmd = New OleDb.OleDbCommand( ...Show All

  • Visual C++ mouse_event sendinput

    Hi good day to all. Can someone post me a simple code that uses mouse_event and sendinput Thanks in advanced! I would really appreciate it. lemonsito wrote: Hi good day to all. Can someone post me a simple code that uses mouse_event and sendinput Thanks in advanced! I would really appreciate it. have a look on the Following link http://msdn.microsoft.com/library/default.asp url=/library/en-us/winui/winui/windowsuserinterface/userinput/keyboardinput/keyboardinputreference/keyboardinputfunctions/sendinput.asp Thanx ...Show All

©2008 Software Development Network