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

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

lborhan

Member List

ledwinka
Ashish Patel
deen
SuperM
PeacError
Jon Q. Jacobs
Agent00
RMooreFL
Mike Teperman
DamsDev2007
sfibich
Igor Grozman
Mark Macumber
malignate
eeidfn
jaime.rq
GlenO
tryanothername
Jassim Rahma
DiamonDogX
Only Title

lborhan's Q&A profile

  • Software Development for Windows Vista Calibrating game controller - Security Privilege Error

    I hope this is the right forum... I have Vista Beta2, build 5384 and I'm having trouble calibrating my joystick. I can view the properties of it with no problem, but when I try to actually calibrate it, I get a Security Privilege Error telling me to log in as the administrator. Well, so far I only have one account which is an administrator account. As far as I can see, there is no Administrator account like there was in XP, right So what do I need to do to be able to perform this action I've had similar problems running programs, but have got around them by right clicking and running them as an administrator. Unfortunately, I don't think I have that option in the control panel. Thanks for any help, Clark For any ...Show All

  • Visual Basic MSDN for Visual Studio 2005 First CD keeps asking for CD 1

    Can anyone tell me what the labels are for MSDN CD1 CD2 and CD3 I downloaded the three CD from the MSDNAA site for out school and after buring the software just the first CD it keeps asking for CD1 right at the beginning. The school is trying to located the orginal CD but they have not yet found them. So if anyone has MSDN 2005 for Visual Studio 2005 Professional please let me know what the names or labels for CD1 and CD2 and CD3 Thanks Are you trying to install MSDN (ie the help documentation etc.) or are you trying to install VS 2005 Pro which you have downloaded from MSDN. I ask as MSDN is both a specific product install as well as a subscription service allowing download of other products. ...Show All

  • SQL Server SQL Query Help Please

    i have table name "workout" with coumnn name workoutid BIGINT workoutdate DATETIME memberid BIGINT and another table name "instance" with columns memberid BIGINT month INT year INT for particular member i want to get all the rows from workout table where workoutdate < getdate() and wokoutdate's month and workoutdate's year(combine) should not exist for that member in instance table for example workout table workoutid memberid workoutdate 1 7777 9/01/2006 2 7777 9/02/2006 3 8888 8/22/2006 4 8888 8/25/2006 5 8888 6/20/2006 6 8888 8/25/2005 7 9999 12/25/2006 instance table memberid month year 8888 8 2006 8888 8 2005 query should return workoutid memberid workoutdate 1 7777 9/01/2006 2 7777 9/0 ...Show All

  • Visual C# What does the "+" operator do in this context?

    See below (right before ClientOutPutFilter). In working with WSE 3.0, I sometimes see something like the following in a config file: <processingStep description="Exited soap filter Microsoft.Web.Services3.Design.UsernameOverCertificateAssertion + ClientOutputFilter " /> What does the plus sign mean ...Show All

  • .NET Development DataBinding Question

    Hey all, Ive been looking at this sub for nearly two days now and its starting to wear a bit thin. Im trying to query my database and display information in various places based on whats selected on my CBO... here is the code; Private Sub formDirectReceipt_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim strCnn, strSQL As String strCnn = "provider=sqloledb;data source=pe750-d;initial catalog=TestHSS;trusted_connection=yes;" strSQL = "SELECT [Product Code], [Short Description], Cost, ProductionGroup " & _ "FROM Product " '& _ '"WHERE Product.[Product Code] = @prdCode AND Product.ProductionGroup = @cellVar" Dim da As New OleDb.O ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DreamBuildPlay is up!!!

    Now go register!!   Actual contest details to come the week of Feb 5th Hmm... State location and phone number seem to be USA specific. An oversight, or is the rest of the world excluded ...Show All

  • Visual Basic Cannot publish project

    Hi there. I am trying to publish a project that is 100% working, so that people can use ClickOnce to install it. Despite the project building and running fine, I am unable to publish it. Here is a cut and paste of the error message: Error 2 SignTool reported an error 'Failed to sign bin\Release\VED1.publish\\setup.exe. SignTool Error: Signtool requires CAPICOM version 2.1.0.1 or higher. Please copy the latest version of CAPICOM.dll into the directory that contains SignTool.exe. If CAPICOM.dll exists, you may not have proper permissions to install CAPICOM. '. VED1 Now, before anyone asks, I have done EXACTLY what is says, I found CAPICOM, checked it's version, and copied into the TWO directories that I found that contain signtool.e ...Show All

  • SQL Server How can I compare datetime in a query???

    I have a table with the following columns company_Id employee_id logon_time_id logoff_time start_valid_period end_valid_period Employee's working time should only be counted if it is between start_valid_period and end_valid_period So, if I have for employee1 from company1 logon_time_id = 04/07/2006 11:00 loggoff_time = 04/07/2006 12:20 start_valid_period = 04/07/2006 12:10 end_valid_period = 04/07/2006 12:30 I should consider 04/07/2006 12:10 as the initial datetime, 04/07/2006 12:20 as the final datetime, and count only 10min of work to him. In code: if(logon_time_id < start_valid_period) initialDatetime = start_valid_period else initialDatetime = logon_time_id if(logoff_time < end_valid_period) finalDateti ...Show All

  • SQL Server Dynamic transformation to upload flat files into database

    Hi, My scenario: I have 4 different flat files types each having different no. of column, order of columns etc. I want to upload all the 4 types into the same destination table in the SQL database. Before uploading I need to apply transformation to each column in the flat files. The transformations could be like 1) Multipying the source column by 100 2) Put an if condition for 2 source columns and then select one column to be copied into the destination. I have the flat files schema with me and also all the transformations that are required. Question: Can SSIS provide me with a component that can read the flat file schema and the transformations from the database and apply them to the source data and then upload it to ...Show All

  • Windows Forms Deploy chm file with click-once

    I'd like to include a chm file with the application that I am deploying, but no matter what subdirectory of the project I put it in I can't seem to get the file to be included in the deployment. The help file does work correctly from my application on the development machine where I have it located in the project bin directory. Right now, my deployment is just to a directory from which I burn a CD. Thanks, jerryK Hi David, It looks like *.CHM files don't have the 'BuildAction' property.  If you have any other suggestions, I'd appreciate it. Thanks, jerryK   ...Show All

  • Visual C# LowLevel Keyboard Hook

    Hello- I'm using a low-level keyboard hook for trapping key presses and had two questions: 1. What is the name of the enum value in Keys for the context-menu button 2. Is there a set of flags pre-defined somewhere for the flags member of the low-level keyboard struct Thanks... Thanks for the reply... The struct I'm thinking of is the lParam, defined here: http://tinyurl.com/mbrqd . I see that the flags are shows as C defines, but I'm not sure where to find them in C#. I could just use the bit-fields defined there, but I'd rather not have magic numbers in my code... ...Show All

  • Visual Studio Express Editions Sending Data between forms not working!

    This simple example below does work. But, I am doing the same thing in my app and Form2 is not getting the string from Form1! Public Class Form1 Public str As String Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load str = "hey" Form2.ShowDialog() Close() End Sub End Class Public Class Form2 Private Sub Form2_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load MsgBox(Form1.str) Close() End Sub End Class Hi, You have created an overloaded constructor in Form2 Add the following base constructor to Form2 Public sub new() end su ...Show All

  • Windows Forms Help! "Concurrency violation: the UpdateCommand affected 0 of the expected 1 records"

    Help! I have a Access 2003 Database that holds info like "customer name" "phone number" etc. When I enter that info and then click new record then go back to the previously created record and add some more information in the other text boxes ("address", "age", etc) I get the following error: Concurrency violation: the UpdateCommand affected 0 of the expected 1 records and when I click on details then row, I get this: '((Help_Desk_Center.HDC_DataDataSet.Table1Row)(((System.Data.DBConcurrencyException)($exception)).Row)).Customer_called_on' threw an exception of type 'System.Data.StrongTypingException' What is all that and how do I fix it, get around it, ignore it, or what ever I need to do Thanks for ...Show All

  • .NET Development SQLDataReader.GetOrdinal() fails rarely with IndexOutOfRange

    Hi everybody, We were developed some Web-Services that run against SQL Server 2000 with SQLDataReader that executing Stored Procedures in the DB. Most of time (95%) everything is running well, but sometimes (when exactly, we don't know) the same WebService that worked 200 times, fail. The code is simple:         public string myFunction( int ANumber )         {             string strRetVal = null ;             SqlDataReader myReader = null ;             SqlConnection MyConn = null ;             ...Show All

  • Visual Studio 2008 (Pre-release) Is it possible to run a WPF application that requires full trust in a browser?

    Our app is a xaml browser application, and is set to 'requires full trust' option. It can run in debugging mode, but does not run in the browser. The following error is shown: Trust not granted. The application cannot be deployed because it is not trusted and possibly unsafe. Detail: PLATFORM VERSION INFO Windows : 5.2.3790.65536 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0.50727.42 (RTM.050727-4200) SOURCES Deployment url : http://localhost/DataAnalysis/DataAnalysis4.xbap Application url : http://localhost/DataAnalysis/DataAnalysis4_1_0_0_1/DataAnalysis4.exe.manifest IDENTITIES Deployment Ident ...Show All

©2008 Software Development Network