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

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

thezepp

Member List

Mads Torp Jacobsen
jorijo
ChrisHelt
talha sheikh
N_John
rowdielou
TPECI
Alexandre Martins
RabinLin
AlfonsAberg
aidimorini
windypoint
Derek Burnham
DrJim
Helen999888
Martin Kulov - MVP
PerPixel
Kamalkanth Nayak
mattii
Heidi Christiansen
Only Title

thezepp's Q&A profile

  • Windows Forms Minimize Form Together with Parent Form

    I have made use of the MDI, I realized that the children forms called from the parent form is minimized together with main form and however when i call a new form from a children form, a design problem which this new form can't be minimized together with main may appear How to make their minimize and maximize properties to be consistent Thank you. hi I have tried this example that contain two form parent form contain maun can generate a child form namespace WindowsApplication2 { public partial class MDI_M : Form { public MDI_M() { InitializeComponent(); } private void addToolStripMenuItem1_Click( object sender, EventArgs e) { Child cd = new Child (); cd.MdiParent = this ; cd.Show(); } } } and th ...Show All

  • SQL Server using exec sp from code behind

    Hi, Does anybody know how to use exec sp command from vb.net code Suppose, i've a control that is populated using the following code. <ie:treenode Text="root" type="tree" Expanded="true" TreeNodeSrc=" http://localhost/mySQLXML sql=execute+sp_GenMyXML+@pid=1 " /> In the above code, how can I execute for TreeNodeSrc=" http://localhost/mySQLXML sql=execute+sp_GenMyXML+@pid=1 " What I want is I want to get the xml result from the sql server. Does any body has any idea Any help is appreciated. http://www.sqlservercentral.com/columnists/kKellenberger/usingparameterswithstoredprocedures.asp is an example of how to call a stored proc fr ...Show All

  • SQL Server How to interact MySQL through VC++ 2005

    Hi to all, I made a database using MySQL and now I want to interact with that database through VC++ 2005!! Is that possible If so, how can I do it Note: Not in an MFC project, but in a windows console application project Thanks in advance!! ...Show All

  • Visual Studio Express Editions Custom calendar control - how to populate?

    I want to make a custom calendar control similar to the MonthCalendar control, but using a DataGridView instead, so that I can set the background color for individual days. How can I populate my DGV with dates ie. where do I get date info from Can someone show me a quick code sample that will do this Thanks... Hi, Please go through the following link. Hope this will be a good start. http://msdn2.microsoft.com/en-us/library/ms180996.aspx Also check this link: http://msdn2.microsoft.com/en-us/library/system.windows.forms.idatagridvieweditingcontrol.aspx thank you, bhanu. ...Show All

  • Visual C++ C++ declaration of Large number Variable type

    I want a variable to hold a very large numbers (10 bytes, 80) bits and looks like this in decimal 1208925819614629174706176 (25 digits) how do I declare this as a varaible in the begining Plus I am also using pow(,) function and it keeps throwing up an error. James ( james2003g@hotmail.com ) James2007 wrote: ok! forgive by naiveness, but what GNU do. went onto the site and read it. but I can't quite understand what it doesn't. Is it some kind of library that I can add into my complier. I have Microsoft Visual Studio 2005, which it doesn't mention as an option. There are very few instructions on the page! GNU is an organization, or society if you will. GMP is a big numbers library they've r ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Deleting a line of text in a text file.

    I am trying to delete each entry of the text file below, one at a time, after it has been used. I quess you can say I am trying to use an old "push and pop" method. I have 9 variables I want to fill from the text file, then I want each variable cleared to receive the rest of the text from the file. Is there a way to do this in VB.net 4 113 2 A1455 00320 025 1819 122006 155 4 112 2 E1569 00425 030 1816 122006 145 line1 = sr.ReadLine() line2 = sr.ReadLine() line3 = sr.ReadLine() line4 = sr.ReadLine() line5 = sr.ReadLine() line6 = sr.ReadLine() line7 = sr.ReadLine() line8 = sr.ReadLine() line9 = sr.ReadLine() try this: -Create the Full String ( 4 113 2 A1455 00320 025 1819 122006 155 4 ...Show All

  • Windows Forms Tabbed browsing

    Hello, I'm a new developer building a tabbed browser for industrial use. My browser keeps bombing out on the Navigate() method, as follows: private void Navigate( string address) { // Navigates to the given URL if it is valid. if ( String .IsNullOrEmpty(address)) return ; if (address.Equals( "about:blank" )) return ; if (!address.StartsWith( "http://" ) && !address.StartsWith( "https://" )) { address = "http://" + address; } try { Navigate(address); } catch (System. UriFormatException ) { address = "" ; return ; } } The error I continue to get is a StackOverflowException; what i ...Show All

  • Visual Studio Team System Check Constraints ignored by the data generator

    I am using VSDBPro to generate test data, my table has a check constraint defined in a column such as ( [Field1] = 'A' OR [Field1] = 'C' ), but it was ignored by the data generator and tried to populate some random values and terminated the entire process... Any workaround for that.... Henry, Thanks for the reply I couldn't see the regular expression in the generator properties for the char field. I have installed the trial version of Microsoft Visual Studio Team Edition for Database Professionals Version 2.0.50727.251. I imported the schema which has the check constraints on the column. But the data gererator ignored that... Is a the limitation of the trial version ... ...Show All

  • Software Development for Windows Vista Communication with the underlying transaction manager has failed

    I want help in solving an issue related to MSDTC. I am developing a multiuser DB application with MS SQL Server 2005 and .Net 2005. Both my DB Server and client machine are having XP Prof. with SP2. I am using System.Transactions to maintain Distributed Transactions. I do not face any problems when I execute my code on the DB server itself. But when I try to execute the same code from any client machine, the following error is fired : "Communication with the underlying transaction manager has failed." I am really stuck because of this issue. Its a blocker for me. I have also made the following configuration on my system : 1.MSDTC on both Server and Client : a.Network DTC Access - Checked b.Allow Remote clients - che ...Show All

  • Visual Studio Team System TFS Tools under /Common7/IDE not installed?

    On a dev TFS server deployment, the ..\common7\ide directory contains the various tools such as glimport.exe, glexport.exe. However, on a new installation I performed on a clean box, there is nothing under that directory except for the \PrivateAssemblies subdirectory. Are the tools such as glimport.exe installed by default, or am I missing a step somwhere Thanks in advance Chris Chris, are you still struggling with that issue You mentioned you do not see anything under there except PrivateAssemblies directory right At least devenv.exe should be there, so you might want to check your VS's shortcut to see where it is pointing to. ...Show All

  • Visual Studio 2008 (Pre-release) The socket connection was aborted.

    Hi. I've created simple wcf service and client. They use netTcpBinding. When connecting to service, client catches exception with message: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '01:09:59.9687494'. Timeout in above message is client sendTimeout after I increased it to 01:10:00. Service processing takes only 2seconds but as soon as service finish processing client catches that exception. I've tried to increase service receiveTimeout but that did not help either. I've even stepped in service code after OperationContract was called from client code and the ...Show All

  • .NET Development cannot install 'Security Update for .NET Framework v1.1 sp1 (KB886903)'

    Hello, Just got a new computer running Windows XP Pro. After running windows updates, I've downloaded the Security Update Microsoft .NET Framework, v1.1 sp1, but every time I try to install it fails. http://support.microsoft.com/kb/824643/ I've searched and tried to solve this issue, but nothing has seemed to work: unregister/reregister Windows Installer, manually remove/reinstall NET framework 1.1. I have not been successful at 'repairing' the framework using the cmp, because I cannot locate anything using cmp. Help. All advice is greatly appreciated. And thanks! The sticky is here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=880553&SiteID=1 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. vertexBuffer.setData code works on PC, halts on 360 : please help!

    Update SetDataOptions.Discard is causing the exception to occur on the 360, changing the option to either None or NoOverwrite causes no exception. An interesting point though, on the PC build changing these options has little effect (the particles are still rendered) - the 360 however doesn't appear to render any particles. Strange I've started another thread to address the shader: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1067482&SiteID=1 --------------------------- Hi All, Happy new year from Australia! I've been enjoying the pain of learning XNA however I'm currently stumped, I hope someone out there can help me! The problem: I have a particle system that uses a shader to draw point sprites from ...Show All

  • Visual Basic connection to FTP server

    I am trying to connect to a FTP server using the FtpWebRequest class in visual basic 2005. Right now, I am merely trying to get a list of files on the server. I have the IP address, the username and password to the server. I also had to install a certificate in my browser. I get a "The specified network password is not correct" - error when trying to test the code. I get it after the Client certificates statement. Public Shared Function ListFilesOnServerSsl(ByVal serverUri As Uri) As String Dim username As String = "username" Dim password As String = "password" Dim retStr As String = "" ' The serverUri should start with the ftp:// scheme. If Not (serverUri.Scheme = Uri.UriSch ...Show All

  • Visual Studio Express Editions Starcraft As Resource?

    Hello My Purpose: Make a login for starcraft to limit my brother's time playing starcraft What I already know I can put 'starcraft.exe' as a resource Call 'starcraft.exe' from resource to run it What I need to know Can I call starcraft.exe to run it as if the file was just there without being a resource What I want to do Make a login program and handtype (in cleartext) in the code such as If userID.text = "ID" Then 'call starcraft.exe from resource' End if and the starcraft.exe only launches if the user enters the right password and user combo The reason that I want to put 'starcraft.exe' into resource is because even my 11-year old brother knows how to get into the Programs File then just manually launch 'starc ...Show All

©2008 Software Development Network