PedroCGD's Q&A profile
Visual Studio Help with Crystal Reports 8.5 in VB Express please!
Hey all! I have a registered copy of Crystal Reports Developer edtion 8.5 and am attempting to use it with VB Express. I have not used Crystal before and want to know if anyone can help me whether it be in the way of sample code or URL to a means etc I have searched for the com object and added to the toolbox, i just can't find a way to databind or use any of the controls correctly, when I compile my app, it is just a blank window! Cheers, Nathan ...Show All
SQL Server Placement of sys.conversation_endpoints and sys.transmission_queue
Is there any thought going into moving these two tables to a file group that we can control Putting this in Primary with the rest of my system tables is quite problematic, and hinders my ability to manage space usage on my files. Traditionally, we didn't have to consider a primary file group that could grow to large proportions, but now with these two tables it can. If a large volume of messages gets sent through and the system can't keep up, then these tables and my primary file group will grow sometimes enormously. You can submit this feedback here: http://connect.microsoft.com/SQLServer Rushi ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How in XNA Game Studio Express correctly to include a full-screen mode?
How in XNA Game Studio Express correctly to include a full-screen mode I write a code: graphics.PreferredBackBufferWidth = 1024; graphics.PreferredBackBufferHeight = 768; graphics.PreferMultiSampling = false ; graphics.ToggleFullScreen(); Then I draw on the screen 2D the sprite and I move it on the screen. During the moment of moving of the sprite on the screen, he brakes and twitches, such impression that copying of the sprite occurs on without usage Z-buffer. How correctly to customize in project XNA Game Studio Express using class Game1 a full-screen mode In DirectX earlier, it was so: D3DDISPLAYMODE Display; if( FAILED( pd3d9->GetAdapterDisplay ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Texture creation fails on XBox 360
Can someone tell me why the following piece of code won't work on the XBox 360 I don't have an XBox 360 myself (and it will be at least 6 more months before I plan to afford one), so I can't test this at home. If anyone could tell me what's needed to make this snippet working, I'd be very happy :) // Look up the maximum texture size supported by the device Point textureResolution = new Point ( graphicsDevice.GraphicsDeviceCapabilities.MaxTextureWidth, graphicsDevice.GraphicsDeviceCapabilities.MaxTextureHeight ); // No larger than 1024 to avoid becoming a memory hog on systems // supporting insanely large textures :) textureResolution.X = Math .Min(textureResolution.X, 1024); textureResolution.Y = Math .Min(textureResolution.Y, 102 ...Show All
Windows Forms Can we have private constructor? when can I use them?
i thin you can!!! This is used to mange the number of instances of the object the users can create.This is also known as the Singleton pattern . In singleton pattern you declare the constructor as private and instantiate it from a static method within you class. Please see the example below: public sealed class MySingleton { static MySingleton instance = null; private MySingleton() { } public static MySingleton ClassInstance() { get { if (instance = = null) { instance = new MySingleton(); } return instance; } } } Yeah, of course. But the correct way to write the accessor is public sealed class MySingleton { static MySingleton instance = null; private MySingleton() { } public static MySingleton ClassInstance ...Show All
Windows Forms Web Browser Control cookies
Hey, I am using a combobox to show the URL you are at on the webbrowser control, and I made it so that when you press the Go button it will add the Url to the Combobox list... WebBrowser thiswebpage = GetCurrentWebBrowser(); // Get the currently displayed WebBrowser URLtextbox.Items.Add(thiswebpage.Document.Url); But wehn I look at the combobox it has the webpage URL you were jsut at about 10 or more times in a row...So it is saving the cookies more then once, how do I fix this Thanks :) look through the collection of objects stored in the list according to the solution I had provided you via email. So, for each element in the array, if current element.url does not equal URLTextbox.Text, ad ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Help What do I need to download so I can connect to my 360 for XNA?
What do I need to download so I can connect to my 360 for XNA Do I need to download windows media connect You need to go to your 360, go on XBLMarketplace, go to Games, New Downloads, and find XNA Creators Club. There you'll find both the Download you need (8MB) and the Memberships, prices vary depending on where you live. ...Show All
.NET Development Tooltip bug?
Vb.NET 2005 I create a tooltip control in a form and enter some tooltip texts for another control. When hoovering the mouse all seems fine, the tooltip appears etc... However after a few seconds it disappears. Annoying to the user, but then comes the real annoying thing: It won't reappear again until you restart the program (or have multiple controls and hoover another control then back to the first again). This can't possibly be the desired behaviour I tried setting AutoPopDelay to something high but the docs says 5000 (ms) is the max. Help I agree, it is annoying that moving away from the control and then coming back doesn't reshow the tool-tip. You should be able to get the tool-tip to display ...Show All
.NET Development Web.Config error in Web Service
Hi I have strange error: Server Error in '/<ProjectName>' Application. Ho sorry I've understood the problem bu have a new: Could not find schema information for the element <microsoft.web.services3> sd </ system.web > < microsoft.web.services3 > //<= Here is error < policy fileName = " wse3policyCache.server.config " /> and then this error (Could not find schema info) shows on each element of web.config :( ...Show All
Visual C++ Extract text from Word Document on runtime
hi there, From many days i am trying to extract the text of Word document just like any spy program which watch the word document and if it found then extract the current page's text, for this purpose i have read few articles but they were not that much helpful. If some one has a code to obtain the text of runtim doc then please let me have it, i will be very greatful for it...or any tips , guidence will also help me for it... thanks in advance regards For such issues, the newsgroups at http://msdn.microsoft.com/newsgroups is a more proper place. OTP Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio 2008 (Pre-release) next generation paper
I am reading the "Next-Generation Data Access" paper. I noted : " Security —we will want to build out security services at the entity level. " Is there more information on this that anyone can point me at I'd like to think it would be possible, at a conceptual level to build security services at the field, method and query levels - via roles primarily - within the entities. But i'd like to read and hear a little more about the security implementations if anyone can help. thanks, Steven http://stevenR2.com Thanks Daniel - i've been doing quite a bit of work with Windows Authorization Manager and WCF provides a pluggable architecture for re-using that, so doing so ag ...Show All
Visual Studio 2008 (Pre-release) visualstyles for WPF window in xp
Hi, I am using .Net 3.0 RC1 on XP. I found that WPF window applications are not using any kind of visualstyles. How do I enable it In .Net 2.0, we are using Application.EnableVisualStyles(), is there any equivalent in .Net 3.0 Yes it will make the app software-rendered on Windows XP. Jan-Cornelius Molnar has a way of getting around this . His way can also make the corners rounded, and keeps the HW-Acc intact. But the rounded corners are rendered by gdi( ), not wpf, which doesn’t make them as attractive. Here’s an image of the two different techniques The top window is using Alex technique and is not hardware accelerated, and the back window is using Molnars technique and is accelerated. ...Show All
Software Development for Windows Vista Base workflow problem
public object OrderSender = new System.Object(); public OrderLocalServices.OrderEventArgs OrderEvtArgs = default (OrderLocalServices.OrderEventArgs); how can i change it to vb.net thks TOM Actually , I use the HandExternalEvent Activity 's Invoke Property in the base StateMachineActivity. like this: Public Class BaseWorkflowForHospital Inherits StateMachineWorkflowActivity Public BPSender As New System.Object() Dim _blnCanPassNext As Boolean = False Public ReadOnly Property blnCanPassNext() As Boolean Get Return _blnCanPassNext End Get End Property Public Sub OpenInvoke(ByVal sender As Object, ByVal e As HospitalWorkflowEventArgs) End Sub ...Show All
Visual Studio Express Editions Visual Web Developer Express and SQL 2005 Express
I get the below message and the only resolution I have found it uninsatll SQL 5005 Expredd, reinstall it and then it will work for some time. How do I prevent this Server Error in '/WebSite2' Application. ...Show All
.NET Development what is dot net frame work
what is dot net frame work Hi Microsoft .NET is the Microsoft strategy for connecting systems, information, and devices through Web services so people can collaborate and communicate more effectively. .NET technology is integrated throughout Microsoft products, providing the capability to quickly build, deploy, manage, and use connected, security-enhanced solutions through the use of Web services. For more information you can get the basics of it on http://www.microsoft.com/net/basics_faq.mspx Best regards and welcome aboard! ...Show All
