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

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

prozac11

Member List

Blue Mic
learnerplates
scribework
PAPutzback11696
MandoBoon
Will Merydith
laoer
su45937
SOTY_Programmer
dakerson
Bernd Wechner
Cobolman
Ljhopkins
Toan
Xeon_boy
syhzaidi
Daniel Schlößer
andrewajc
Ramanakumar
WebService4Ever
Only Title

prozac11's Q&A profile

  • Smart Device Development Multi-form, multi-thread messagebox() woes (VB, CF 1.0)

    Good morning all. I'm a CF/.NET noob working on my first CF project for my company using VB.NET and CF 1.0. It's a store-and-forward PDA app which accesses our database through a web service. I must say I really like developing for the PDA (although as 9 out of every 10 people probably say, I wouldn't mind some extra functionality). I'm having a perplexing problem with messageboxes. The project as it stands it like this : * I preload/create all forms at startup. They are designed in the singleton pattern, so when I want to display a certain form, I'll use, for example, ServiceManagement.GetInstance().Show() ...where GetInstance is a shared(static) method of the ServiceManagement class which returns the one global instance of the form. * I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can't get PIX to start any applications

    When I try to use PIX to get information on a D3d app, I always get a message box like this one: OptimizedMesh.exe - Application Error The application failed to initialize properly (0xc0000005). I assumed at first that it was caused by some error in my program (which runs fine on its own) or caused by the fact that I'm using VC++ Express 2005. But when I try it with the prebuilt exes in C:\Program Files\Microsoft DirectX SDK (April 2006)\Samples\C++\Direct3D\Bin\x86 I get the same results. No matter what kind of experiment I specify the application fails to open. Yet, they all run fine on their own. As shown, I have the April 2006 DX SDK and the Platform SDK for Windows Server 2003 R2. Windows XP SP2, ATI Radeon 9800 XT. Any help ...Show All

  • Visual Studio 2008 (Pre-release) Security Service Broker

    Hi, I have a scenario where I have several services, each of which will be called by the client and possibly other services. I'd like to implement a separate security service that is responsible for authenticating and authorizing the request, rather than including all of the security sub-systems in every service...a security broker I suppose is the name. Is there a pattern to creating this Is it even possible (easily) in the Wcf I'm currently using the IAuthorizationPolicy interface, UserNamePasswordValidator and ServiceAuthorizationManager classes as a base to work out what claims the user (actual user or a service) has and if they're allowed access to them. I'd like to move these out into the separate service and have each call go via t ...Show All

  • SQL Server Help in creating Dynamic Rows!

    Hi I am trying to create a dynamic row. Say for example, I want to list all the "Employees" belonging to a particular department say "Physics". So, I would want every employee name to be in a separate row. How do I go about doing this Any help/suggestions is appreciated. Thanks Which row in the table are you placing the emp_id field in The one with the three horzontal lines in the box to the left of the row - Yes Are you adding any groups to the table - No preps ...Show All

  • SQL Server logins and users

    Hello, How can I login in one databse from Sql Management Studio Do I need one login for each user How does it work thanks, Using the management studio you should be able to log on with a trusted connection. You will need to get the Database owner or admin to assign the permissions to each user that will need to connect... or you could create a network group in the AD and assign permissions to the user group in the databases that the users need to connect to. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. End users shouldn't have to rewrite XNA math functions in order to improve performance.

    The overhead of passing a 64 byte Matrix by value is significant. Most especially when you are comparing two matrices for equivalency (==), or performing a Vector*Matrix multiplication (Vector3.Transform(Matrix)). The following matrix comparison function performs 5-10 times better than your built in == comparison. If the matrices are equal, then it is about 5 times faster. If they are unequal then it fails fast, and is about 10 times faster. public static bool Equals(ref Matrix a, ref Matrix b) { // i check the diagonal first for quick fails return a.M11 == b.M11 && a.M22 == b.M22 && a.M33 == b.M33 && a.M44 == b.M44 && a.M12 == b.M12 && a.M13 == b.M13 && a.M1 ...Show All

  • SQL Server ms access

    whow to open link table in access Hi, refer to this answer and come back if you have additional questions: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1052764&SiteID=1 HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System deploy already

    Ive built and deployed my database project to my development server but how do I deploy to my Testing (UAT) server.Traditionally I would send the SQL scripts to a DBA who would run them in SQL Analyser. I see the .sql build file but how would the DBA run them with these :servar commands in it This is my enviroment SQL Server 2000 Visual Studio 2005 Team Developer and DB Prof installed. Visual Source Safe 6.x (old I know) Paul I have created a SQL Server Script Pre Processor tool that be available end of the week which will allow you to add this to your build and that will remove all variables and includes if you would have any, so you can run it inside Query Analyzer. -GertD ...Show All

  • Visual Studio 2008 (Pre-release) Reading selected values of each combox within the itemscontrol

    Hi all, i've a itemscontrol that is boud to ADO.Net dataset and i'm using a combobox to display the contents of that dataset. on SelectionChanged event, i need to access the selected value of each combobox within that controls. can any one help me i'm stuck up, here is my code: < ItemsControl Grid.Row = " 1 " Grid.Column = " 0 " Margin = " 20,0,20,20 " Name = " ic " ItemTemplate = " {StaticResource BookItemTemplate} " ItemsSource = " {Binding} " /> < DataTemplate x:Key = " BookItemTemplate " > < Grid > < Grid.ColumnDefinitions > < ColumnDefinition Width = " 200 " /> < ColumnDefi ...Show All

  • Visual C# Convert a struct to stream of bytes

    I need to transmit the following structure across the network in my program. Code: struct Data { public string strName; publci string strMessage; } Now what I need to do is to change the data to a stream of bytes and transmit it. And, at the receiver end organize it back into the structure. How can I do this logan_india wrote: I do understand the concept but not clear what needs to be done. Can you please help :) I think that you have not comletely read my post. See this again here is the solution you want: "For this 2 work you need to have a same assembly (Version must also be same). You need to create a seperate DLL to Serialize and Desrialize object and ...Show All

  • .NET Development Get exception when calling TransactionScope.Complete() method.

    Hi, Following is my code to use system.transaction: ConnectionStringSettings setting = ConfigurationManager.ConnectionStrings["Sample"]; DbProviderFactory factory = DbProviderFactories.GetFactory(setting.ProviderName); using (TransactionScope scope = new TransactionScope()) { DbConnection conn = factory.CreateConnection(); conn.ConnectionString = setting.ConnectionString; conn.Open(); DbCommand cmdUpdate = conn.CreateCommand(); cmdUpdate.CommandType = CommandType.Text; cmdUpdate.UpdatedRowSource = UpdateRowSource.None; using (DbTransaction tran1 = conn.BeginTransaction()) { cmdUpdate.CommandText = "UPDATE Table1 SE ...Show All

  • Visual C# Windows Vista Bug?

    Hi to all, i have a problem with Process under windows Vista. My product working fine under windows 2000 & XP. Is this a Windows Vista Bug Process.Start always return null.   This is code: ProcessStartInfo Processo = new ProcessStartInfo(nomefile); Processo.WindowStyle = ProcessWindowStyle.Maximized; Processo.UseShellExecute = true; try { X = Process.Start(Processo); X.WaitForExit(); File.Delete(nomefile); } catch (Exception ex) { MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error); } in the exampe --> nomefile = @"c:\test.tif"; Tnx Luca   Oook, this is true. If i have default association Tif files on windows vista to " ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Displaying Only Part of a .bmp file

    I've seen an implementation in many games where a single .bmp file contains nearly all the needed graphics smashed together. There is, of course, an associated file that knows the location and size of each graphic in the file. Assuming I have created one of these files, how could I use XNA to "navigate" through this bitmap to a specific location and then cut-out a certain size rectangle to be displayed on screen Is this something spriteBatch.Draw can accomplish or is another method used Thanks! ...Show All

  • SharePoint Products and Technologies WSS3 URL Error

    Hi, I have two WSS3 sites running on a single server, One on port 80 works ok 'ish http://portal.xxxx.co.uk/ (search broken and wont work whatever fix i try, seperate issue to be raised) The other one on port 33792, this is the site with issues. The basic problem is i can not create anything using; site actions - create. I can add new content to the default document library The page to create the new item appears, I enter all the info, press the create button and the site attempts to create the page at http://development.xxx.co.uk:33792/ ..... Nowhere in creating the site did I set a URL including the port, alternate access mappings in the Sharepoint admin do not show the port, however the site information under site s ...Show All

  • Visual Studio Express Editions DataGrid not updating

    Confused Beginner, I have a form with textboxes collecting information and saving on a database; all is well so far, saves and navigates great, no problem. The problem I’m having is -- I added a button to the BindingNaviagator to bring up a new form/report showing all the data entered on a datagrid, so far so good. The problem come up when I return to the input form and change or add new data, it does not show on the datagrid when I bring it up there after, but if I close the program and reopen, the data shows on the datagrid. I been reading all the message and I gather that I need to clear the datagrid or something. I’ve try some of the suggestion but I have had no success. Not sure where to go from here. Any help ...Show All

©2008 Software Development Network