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

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

guyinkalamazoo3

Member List

Lo&#239&#59;c Baumann
AlexBB
dj1s
ron2464
Nodnarb501
Shaun Bowe
Buddhist
Butterflyangel02
Arindam Biswas
Cedric Girard
Tushar M
simple1
ShyamD
killerless
TYTYTY
Rizzlers
QuantumMischief
DonSergio
LeoXue
Uzum4ki
Only Title

guyinkalamazoo3's Q&A profile

  • Visual Studio Tools for Office Outlook task item maximum size

    How can I find the maximum size limit for the body and contact in outlook task item I am trying to save all the fields(subject, body, due date, start date, etc) entered in outlook task into the database. In order to create a table with columns to hold these field values, I need to know the maximum length/size for each field but I couldn't find this information anywhere. Any help will be greatly appreciated! ymjoo2007 There is no set limit on the message body. For other standard text fields, like Subject, the Outlook object model can return 255 characters, although more can actually be stored and lower-level APIs can return longer values (so whether you're using the Outlo ...Show All

  • Visual C++ Help with twister

    I have been looking on the net for random number generators and found something called "Mersenne Twister" on this page: http://en.wikipedia.org/wiki/Mersenne_twister . And there you find som pseudocode that I don't fully understand. For example, how do I write this line in C++ : MT[ i ] := last_32bits_of((69069 * MT[i-1]) + 1) And from the second function, how do I write the following code in C++ y := 32nd_bit_of(MT[ i ]) + last_31bits_of(MT[i+1]) Is this the most efficient way of checking if a number is even : if(x % 2 == 0){do something...;} The most confusing parts here are "last_32bits_of", "32nd_bit_of" and "last_31bits_of". I don't really understand what that mean at all. I a ...Show All

  • Visual Studio How to write text to a console from a web application on the server

    Hi all, Are there any ways to debug a web application with VS2005 on the server by writing text to a console like J2EE web app I read an article about using a listener with either trace or debug objects to write text to a console but I could not make it work. Please help if you know how to do it. Regards, JDang   jdang wrote: Are there any ways to debug a web application with VS2005 on the server by writing text to a console like J2EE web app I read an article about using a listener with either trace or debug objects to write text to a console but I could not make it work. Please help if you know how to do it. A few things: what kind of web application, ASP.NET 1.x, ASP.NET ...Show All

  • Windows Forms Problem setting size of Windows Form.

    I have a form that contains a DataGridView, and the form comes up too small for the user to see all the grid. How do I set the size of the form so that the entire grid (or, at least its width) is displayed I've tried the following: 1. Setting AutoSize to true. 2. Set the size in the Load event: private void MyForm_Load ( object sender , EventArgs e ) { this.Size = new Size(myDataGridView.Width, myDataGridView.Height); } and, private void MyForm_Load ( object sender , EventArgs e ) { this.Width = myDataGridView.Width; } No matter what I try, I get the same results. Thanks for any suggestions, Mike Try removing theDataGridView.Dock = Fill setting from y ...Show All

  • SQL Server I cannot install SQL 2005 on my computer

    Hello everybody, I had installed vs 2005 beta 2 and I wanted to install SQL 2005, so I removed all the components which were installed and were beta edition by control panel and by the tool microsoft supply. I downloaded sql 2005 but when I wanted to install it, the installation showed me an error that I need to remove all the components that are beta and exited. The control panel show that there is nothing from vs 2005 beta but the tool try to remove 2 things and has errors. With Everest I see that the components of vs 2005 beta are still in my computer and I cannot remove them. Someone can help me I have been searching for an answer for 3 months without any success. Start with http://msd ...Show All

  • Visual Studio Tools for Office VSTO 2005 SE Deployment Problem

    Hi, I am creating a Excel 2007 VSTO COM Add-In using VSTO 2005 SE . It runs perfectly fine when I build it and run the in development computer having VS 2005 . However, when I try to install the setup.exe or .msi file for the same addin in the client machine or Virtual PC having the following configuration: 1. VSTO Runtime 2. Office 2007 3. .NET 2.0 Framework it does not seems to load . I also did caspol settings to make it Fully Trusted . I get the following error " Not Loaded. A runtime error occurred during the loading of the COM Add-in ." Can someone please help me on this Thanks in advance Few tips: 1. Make sure it is VSTO Runtime that has shipped with VSTO2005SE that is installed on t ...Show All

  • Visual Basic Starting my application automatically

    I need to write an application for a friend that will start automatically when Windows XP Pro boots. The application is very straightforward - 3 buttons and a web browser control. The caveat is the users must not have access to the start button, start menus or any other applications on the system. Also, when the application exits the computer needs to shut down. I am using Visual Basic 2005 Express. Thanks, Mark It sounds like you are wanting a kiosk type application. Search for Visual Studio Kiosk and you should be able to find plenty. Here's a link to one such hit: http://addressof.com/blog/archive/2005/04/05/1668.aspx Jim Wooley http://devauthority.com/blogs/jwooley ...Show All

  • Windows Search Technologies syntax problem

    Help!!! WDS 2.6.5 doesn't work correctly in my system. Any query using syntax doesn't work. for example, "sample kind:email" and "sample" return the same results. xinyuan, I've only seen this happen in situations where the user is using WDS in a multi-language environment (WDS EN-US on Windows German for example). This can mess up the word breaker on the indexer and cause problems with some of the properties. Are you using WDS in a similar situation If so, I would advise uninstalling and reinstalling WDS - especially if you changed your Windows localization settings after installing WDS initially. Paul Nystrom - MSFT ...Show All

  • Visual C# Maintain a reference [c#]

    How can I mantain a reference to a var .. i don't mean only pass a var in reference mode to a method, i want to mantain that reference... Here's what i want to do... I have a Form1 class, so i have a var, call it int X, then i want to access to that var exactly how she is in the Form2 class.. (but i dont want to pass a copy.. i want that if i modify that var in form2 the form1 get the change too.. ) Best Regards Hi, and thanks about the answer... but.. i know abot the ref :(.. the thing is that... int hi = 4; Console.WriteLine(myfunction(hi)); void myfunction(ref int test) { test = 3; } I want to mantain the pointer or reference to 'hi'.. for example... suposse hi is defined in the form1 class, and then.. myfunc ...Show All

  • Windows Forms How to add duplicate datacolumn to datatable

    Hi All, How can we add a duplicate column to datatable. I already had a column named "Action" in my datatable, and i want a duplicate column to "Action". Note: Actually the datatable is being filled from dataset. I cannot change the Sql Query because those are predefined by analysts. Thanks in advance. Hi Ken, Thank you so much. This was very helpful. But there is one more query in it. I will change the value of action field when certain key is pressed. But that should not be reflected in 'action2'. Because I want to compare original action and changed action. Whenver I change the 'action' and click on some other cell, the value of that field is being changed in 'action2' also. That sh ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D picking with the mouse combined with a moving camera...

    Hi all, I'll get right to the point. My camera is defined using the following code... cameraworld = Matrix .CreateTranslation(xplane, yplane, 0) * Matrix .CreateScale(zoom) * Matrix .CreateRotationZ(angle); view = cameraworld * Matrix .CreateLookAt( new Vector3 (0, 0, 100), Vector3 .Zero, Vector3 .Up); projection = Matrix .CreatePerspectiveFieldOfView( MathHelper .ToRadians(45), ( float )graphics.GraphicsDevice.Viewport.Width / ( float )graphics.GraphicsDevice.Viewport.Height,1.0f, 1000f); effect.View = view; effect.Projection = projection; I've also got code to allow me to place objects in the game world, after unprojecting the mouse points and finding the point of intersection with my XY plane. Only probl ...Show All

  • .NET Development new hardware .net runtime optimization service

    What hardware Help me be rid of this Hi Steve, do you happen to have Visual Studio installed on this box If so, check out the following link to resolve this: http://blogs.msdn.com/astebner/archive/2005/11/03/488892.aspx Cheers, JJustice [MSFT] ...Show All

  • Visual Studio Team System IDE region directive

    IDE region directives is not supported Like the same we can see on IDE for C# or VB.NET TIA. Hi Carlos This is a very interesting idea indeed and something that we will defintely look into once we start implement visual sproc and query designer. However for the V1 release this will not be in scope. Once again thank you for providing this feedback. we really do appreciate it. mairead PM, TS Data ...Show All

  • SQL Server Distributed Transaction

    Hi again, I do not know when to use Distributed Transaction. Would you please give an example about its usage or give a tutorials about this Thanks Hi, For example, in the following code ; all server update processes is implemented in their own transaction if we do not attempt to use distirbuted transaction. So if one of these update processes conclude with an error in their own transaction, and then that update process is the only process that affected from this roll back. so in order to make this as if they are all located in the same local transaction, we must use distibuted transaction application. UPDATE scott.dept@hq.us.acme.com SET loc = 'REDWOOD SHORES' WHERE deptno = 10; UPDATE scott2.emp SET deptno = 11 WHERE ...Show All

  • SQL Server toDatetime.

    Hi everyone! I'am working with DATE fields inside SQL Server. When I try to save values from my web form, look what's happen: First tried, I did not use the ' '... 1. 1/1/1901 Error = [1] - Incorrect syntax near '/'. Second, I use the ' '... 2. '1/1/1901' Error = Server Error in '/WebAppCAE' Application. -------------------------------------------------------------------------------- String was not recognized as a valid DateTime. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.FormatException: String was not recognized as a valid DateT ...Show All

©2008 Software Development Network