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

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

JustinA1

Member List

Ngwane
akin_l
sveroa
Rachad
SuperM
GordonMoll
DiamonDogX
oolon
Jehan Badshah
Bill Gates II
Jh2007
mtgRhox
Senthil.P
leoku
Mike Wilson
scottm87
Phil Brammer
Rob Epler
J Lim
jrboddie
Only Title

JustinA1's Q&A profile

  • Microsoft ISV Community Center Forums How do connect an Excel file from Remote Server

    Hi All, I am creating one application in Excel. In this application One Excel file will be in the Remote Server.When one persone get log in then the file immediately has to link with this excel file which in the remote server. Now my question is - Is it possible to connect the Excel file from the remote server using VBA. Please any one help me to do this. i am searching this in lots of way. if not is it possible Access file. Kalidas hey, i didn't taught it was so complicated, and i'm too a newbie to VBA programming. But i'll do my best. So, first of all i guess that the two PC's should "see" each others. First of all i suppose that on the server in singapore you have a shared folder ...Show All

  • Software Development for Windows Vista Disconnect pin cause video card driver Stop

    Hi I use Direchshowlib-2005 with C# and 2 head room video card. for the first video card i use VMR and for the secound one i just use simple Video Renderer. I dont have any problem with VMR at all but when I want to close the program, blue screen appear and said: graphic card driver stop. i release all of the direct show object and put the owner of video window to IntPtr.Zero. But when ever that i want to disconnect the Video Renderer Pin my application crashed and windows also restart. i be appreciated if someone help me Yes, a driver is software. However, it is not an application. Unlike applications, drivers talk directly to hw. This gives them more scope for making mischief. ...Show All

  • SQL Server Issue with Logging using SQL Server

    Hi All, I'm trying to implement the SQL Server logging in my package but Im receiving a very weird error message. Follow below: "Error at Consumer_Common_Transportation [Log provider "SSIS log provider for SQL Server"]: An OLE DB error has occurred. Error code: 0x80040E14. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E14 Description: "There is already an object named 'sysdtslog90' in the database. Error at Copy Data to TCARRIER: The SSIS logging provider "SSIS log provider for SQL Server" failed with error code 0xC0202009 ((null)). This indicates a logging error attributable to the specified log provider. (Microsoft.DataTransformationServices.VsInte ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Components w/ different timings?

    I like the model of specifying Game.TargetElapsedTime and responding to update events, but can I conrtol this on multiple components For example, let's say that I want to randomize the weather conditions in my game. I'd like this to update every minute or so. On the other hand, some things need to update every frame (ike controller input or sprites positions). One way to handle this would be to simply have methods like UpdateWeather() , and UpdateSprites() and so on, and have multiple if/then blocks in my main Update() code that determine whether it's time to call one of the other update methods. However, it'd be nice to offload this monitoring somehow so I could just declare in my init code how often certain components get updated. A ...Show All

  • Visual Basic Running An Application

    After I compile the application i can run it from my desktop and other develop desktops just by using the exe without installing the application. One of the developers is now workstation in a diferent department and tries to run the exe, he gets this error. to run this application, you first must install on of the following versions of the .NET Framework: v2.0.5727 contact you applicaion publisher for obtaining the appropriate version of the .Net Framework. I am assume this because VS2005 isn't installed on the machine he is using that is why he is having the problem, I also gues it is because i haven't run a install program either. My question is in order to just run the exe on non-development machines do i have to cr ...Show All

  • SharePoint Products and Technologies Sharepoint Tips Utility pack - open source project in codeplex

    Hello everyone, This is just to let everyone know that you can now get the source code for my utility pack from codeplex: http://www.codeplex.com/spstipsUtilityPack You can use that code as code samples, or as a utility pack for what I intended it to be. I hope the community will start improving and adding to that package. Have fun! ...Show All

  • Visual C# Newbie: database to label or text

    I am learning C# while doing a small utility for work. In this utility I am connecting various controls to a Access database. I've found out how to do the comboboxes, but fail to see how to connect labels or textboxes. The point is to change the text of either due to a value from a combobox. Perhaps I have to write the SQL-query manually somehow and pass the output to the lable or textbox Anyone with a pointer on how to do this Haven't found it in the Step-by-Step book yet :( Simply query database for some value, Get the value from the query result and set this value to the Text property of control... I think this is OK! and must work! Best Regard, ...Show All

  • Visual Studio Team System TFS server failure, Error after installing TFS Service Pack 1

    Hello, After installing TFS Service Pack 1, and the required prerequisite KB, on both our data tier and application tier Team Foundation Servers, I can no longer connect to source control (!!). Needless to say, this is VERY VERY VERY BAD. Did I mention that this server contains all the source code at our company I'm going to continue desperately troubleshooting this tonight as late as I can, but any help anyone can provide in the meantime is sorely appreciated. The error I get is: TF30059: Fatal error while initializing web service Information in the Event log: TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administr ...Show All

  • .NET Development Error: Could not update; currently locked by user...

    To all, I created an application in Visual Studio 2005 using C++ that transfers data from an SQL Server 2000 database to an Access 2003 database. During this transfer, particularly when alot of records are selected, I get the error: Could not update; currently locked by user 'admin' on machine 'GSANTIN' I know I am the only one accessing the Access database. The error occurs whether the Access database is on our network or on the C drive. Let me describe the data transferred. The smallest transfer would involve the analytical data from one wafer. There are 4 tables appended in the transfer. The first table, Lot, will add only one record to the table. The second table, Statistics, adds one record. The third table, Site, adds a ...Show All

  • Visual C# Cannot get program to display number with correct number of decimals

    I use Microsoft Visual Studio 2005 and i am not able to get my percents to display the percent sign or display only 2 digits after the decimal without resorting to just putting the % in myself. i thought that putting {1:P} would format the display to have 2 decimals and have a % sign, but nothing happens (yes, i have rebuilt the solution). Here is a sample from my program: Console .WriteLine( "Adults\t\t\t{0}\t\t{1:P}%\t\t${2:C}" , adults, percentA, feesA); #1(not 0) needs to be formatted so its printed out as 25.89% and #2 needs to be formatted to display money like $25.00. I know that {2:C} should make it do this automatically, but nothing happens unless i put in the $ and% signs myself. thank you very much. ...Show All

  • Visual Studio Express Editions Control Key Problems

    How can i make my program preform an action when the control key is hit for non-character keys you must use the keydown or the keyup events.... Private Sub Form1_KeyDown ( ByVal sender As Object , ByVal e As System . Windows . Forms . KeyEventArgs ) Handles Me . KeyDown If e . Control = True Then ControlPressed = True Else controlPressed = False End If End Sub Private Sub Form1_KeyUp ( ByVal sender As Object , ByVal e As System . Windows . Forms . KeyEventArgs ) Handles Me . KeyUp If e . Control = True Then End If End Sub ...Show All

  • .NET Development Convert Web Application from .NET 1.0 to 2.0

    Hi I have created a web project in ASP.NET using .NET 1.0. Now it is requirement to convert it to .NET 2.0. When I tried to convert it manually, many HTML tags like "ms_positioning=GridLayout". It also dont support alignment properly. I also have created modules, but in new version it doesn't support modules. Conversion wizard does not convert code behind attribute with the codefile. Can you suggest me any good conversion tool that can do this for me or any other way to do this. ...Show All

  • SQL Server SQL JOB in Express Edition

    Is SQL Agent (for SQL JOBS) available for Express Edition with Adv. Services Is it possible to setup a SQL JOB in Express Edition with Adv. Services There are many small applications, both in-house IT as well as distributed, that depend on the reliable SQL Server Agent Job scheduler. We need the service, SQLSERVERAGENT, to be included with SQL 2005 Express in order to economically migrate applications to 2005. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Using XNA for a University Project

    Hey all, great community here with loads of great information. I have been considering using XNA for a while, just saving the money to buy a new graphics card for the moment. I'm doing a Game Development degree and have to choose a development framework to use for my next project. The two main choices I narrowed it down to are Quake III and XNA. I guess you would gravitate toward XNA but I noticed there some really smart people here who like a good debate so could you help give me some great advice as to which to choose. I would pick Quake III because its more games industry oriented and would be great experience, also its a complete games engine, with graphics and map editor and AI all built in. For XNA, I would pick it because I'm pr ...Show All

  • SharePoint Products and Technologies Moving Documents

    Can documents be moved from one folder to another certainly. the easiest way is to use the explorer view of each document library to drag the file to where ever you need to. You can also use this method: Hover over file > click the arrow to get to the individual file's menu > Send to > Other Location. ...Show All

©2008 Software Development Network