KrisFB_APPS's Q&A profile
.NET Development Microsoft Access Question
Sorry I didn't know where to put this in the forum. Is there a patch that I can use so that I can view/edit/save my databases from Microsoft Access 97 and Microsoft Access XP. Regards, Bob Bamber A patch for what For Access itself, or for a development technology like ADO.NET Are you running into a problem that you are looking for a fix for If so, please post more information about the problem. This forum is geared to ADO.NET, so unless ...Show All
Windows Forms Run-time,design-time component
I am interested in dividing my components into run-time and design-time components. I want to do this so that code I only need for design time is not included in the run-time component, which is shipped to an end-user. The design time component ...Show All
SQL Server sending user variables in
How do I set user variables from C# when executing a package I am using the using Microsoft.SqlServer.Dts.Runtime; namespace. Thanks,. Marty How about something like this - Package package = new Package (); ..load the package etc... package.Variables["VarName"].Value = "fred" ; ...Show All
Software Development for Windows Vista Issue installing Jan Windows SDK
I've tried installing the windows SDK on my VPC image and get an installation error. The final few rows in the log file are: 8:39:26 AM Wednesday, January 25, 2006: Action 8:39:26: ValidateProductID. 8:39:26 AM Wednesday, January 25, 2006: Action 8:39:26: CostInitialize. Computing space requirements 8:39:27 AM Wednesday, January 25, 2006: Action 8:39:27: FileCost. Computing space requirements 8:39:27 AM Wednesday, January 25, 2006: Action 8:3 ...Show All
Visual Studio 2008 (Pre-release) Grid.RenderSize ?
string path = @"C:\Documents and Settings\Christer\Desktop\Slide_1.xaml" ; System.IO. Stream xamlStream = System.IO. File .OpenRead(path); object o = XamlReader .Load(xamlStream); Grid ui = ( Grid )o; double width = ui.RenderSize.Width; double height = ui.RenderSize.Height; My Slide_1.xaml looks like this. <Grid xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " Backg ...Show All
Visual J# Is there a Special Tag to add values to variables from the properties window in J# like there is in C#??
In C# when you create custom controls you can add the following tag so that in the Design View in visual studio you can give values to variables in your custom control class; [Category("Images"), Description("The image shown when the mouse button is pressed")] public Image PressedImage { get { return m_PressedImage; } set ...Show All
.NET Development File IO Behaviour
I have a windows Service that writes an XML file to a specific location. The details are as follows: I am using VS 2005 Beta 2 I am running on XP SP2 The service runs using the local system account I am writing to a mapped drive which is actually a UNIX server (using Samba). The xml is created with the XmlTextWriter class. The problem is I get the following exception every time I try to write to the mapped drive: Exception thrown:Syst ...Show All
.NET Development Book Recommendation for ASP.NET and VB.Net Application Development
Hi, Currently I look for a sophisticated references book for beginner VB.net application Development. i surfed around web bookstore but cant found any vb.net book meet my demand. May be, some missed. I've book of beginning vb 6 Application dev by wrox. That book bring powerful & solid case study to build distribute application (using UML in design, build dbs with SQL server, ADO, Implement 3-tier solut'n, asp to web-enabling, communi ...Show All
Visual Basic Problem with CStr in VB .net
Hello! I have a question about using CSTr.Everytime I do it in my decimal number it adds 0 at the decimal part. How can I make it get the true value( no excess zeros) of my number Thanks guys! The following code should produce the same results for you. Public Class Form1 Private Sub Form1_Load( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles MyBase .Load &nbs ...Show All
Visual Studio 2008 (Pre-release) How to asynchronously display an image
If in my window xaml I have something like: ... <Image Source="http://www.slowserver/image.jpg" Width="20" Height="20" /> The window will be loaded and suddendly the application will freeze while the image is downloaded. After the image is displayed the application becomes responsive once again. How can I workaround this issue Is there an easy way to load the image in the background Thanks ! ...Show All
Game Technologies: DirectX, XNA, XACT, etc. sprite movment problem
the app im writing is client/server based now in the main scene you can fly around in ships see other clients also flying around, now when you shoot a object it takes the camera lookat point and the camera position and sends those cords to the server, server sends the position ans direction to all clients then the client caculate the movment. now my problem is anytime a object is shot it moves the position of any sprites in the scene, im u ...Show All
Visual J# how can i remove the security warning in VJ#
Hi i have a web application which is code behind html ,upgrading from vj++ to vj#.The application uses wfc control to launch it.While trying to run ,it throws a security warning saying"This page contains components that are potentially unsafe,Do u wish to continue".The process proceeds when clicking yes button otherwise it does n t move further. this security warning looks strange ,when come to internet user.So how can i remove or ...Show All
.NET Development filesystemwatcher and backgroundworker
hello i have a WinForms application (VS2005 & C#) which monitors file creation in a folder. when a new file is created, OnCreation event of the FileSystemWatcher, I use a backgroundworker to process the file. As the files (Compressed zip archives) vary much in size (from 100 K to 1 Gb), I have a loop which checks if the file transfer is complete (I have exclusive access), before passing the file to the background worker. private ...Show All
Visual Studio 2008 (Pre-release) What is suggested architecture for distributed apps?
Hi Distributed apps usually work like this: on first request to application server an entity is retrieved and send back to client, then it is edited by the user and in second request it is send back to server and updated in database. What is suggested approach to use DLINQ in such kind of apps. How can I instruct DLINQ to treat an instance of an object as modified not as new one in such scenario. In NHibernate for example I can specify ...Show All
.NET Development Big Problem - Cache being evicted
I have a problem where my cached object is being forcibly evicted. OK, it is huge, talking real huge. Say around a GIG of memory. So my thoughts on a work around. Instead of have the ASP.NET cache manage it, I want to build a Windows Service that would manage this object. I really love this idea because of so many other reason, I won’t go into. My question. How can my webmethod or webpage access via accessor methods the object that t ...Show All
