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

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

RasmusChristensen

Member List

Mr_White
Wee Bubba
Andrei Kuzmenkov
Rbgreen
Jabber
2bee
etones
mracuraintegra
Thomas B Winans
MSDNuser102
Ron L
ray_newbie_SSIS
mdrelyea
Arran Derbyshire
Julian V
wanderingmystic
Tryin2Bgood
Darrell Davis
Dave Gurr
Amjath
Only Title

RasmusChristensen's Q&A profile

  • Visual Studio Express Editions Space bar

    These codes allow only alpha to be entered in textboxes for Names but does not also allow the use of Space Bar. How will i make it accept space bar input so i could place spaces in the Names Im not familiar with keycodes and keychar, I was familiar with keyascii in VB6 could you give me a reference like Enter = Keyascii 13 in VB.NET. Private Sub NAMETextbox_KeyPress(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.KeyPressEventArgs) Handles FirstNAMETextbox.KeyPress, LastNAMETextbox.KeyPress, MiddleNAMETextbox.KeyPress 'Allow only alpha to be entered If Not (Char.IsLetter(eventArgs.KeyChar) Or Char.IsControl(eventArgs.KeyChar)) Then eventArgs.Handled = True If KeyAscii = 13 Then System.Win ...Show All

  • Visual C# Little Help

    I have figured out how to open webpages, but, if on the button click you open a webpage, say www.google.com. But, if you have a textbot on the program, and on the button click you want www.google.com/i-typed-this-in-the-textbot, how would you go about coding that Thanks it should be as I suggested earlier: System.Diagnostics.Process.Start(" http://www.thottbot.com/ s= " + this.textbox1.Text); does this work for you now ...Show All

  • Visual Studio Team System Team Foundation Server SP1 Beta patch

    I have installed Team Foundation Server SP1 Beta patch on the server by re-installed TFS again on the clean windows Here is the version of dll on the server “Microsoft.TeamFoundation.WorkItemTracking.Client.dll = 8.0.50727.363 ” But I didn't do development on the server is that ok I'm developing on Local machine that has Team Explorer. But I point the reference to the dll that is updated. Right now I cannot rebuild Naren's example. It seems that the new interface-- IWorkItemControl.AfterUpdateDatasource is not recognized. So I’ve tried to comment the error and follow Naren’s steps. When I upload custom template to the server I got this error “Module: Work Item Tracking Exceptio ...Show All

  • .NET Development TitleBar from Process?

    Is this is possible I have current list of processes in array, and I need (where it is possible) to return TitleBar (string) of each process. I.e.: "iexplore.exe" - "MSDN Forums - Microsoft Internet Explorer" "firefox.exe" - "MSDN Forums - Mozilla Firefox" "winlogon.exe" - "" "notepad.exe" - "Notepad" etc. Thanks for help. Yep, it works. But it gives application caption, not main form caption.. So expanding my question a bit: If we have 3 forms in application (connected with process), is it possible to read their titlebars ...Show All

  • Visual C# Copy/paste bug with Emacs mapping scheme

    Does anyone know when the fix for the Emacs copy/paste bug is likely to be available This bug makes editing very awkward and can easily lead to spurious text inadvertently being added. Bug 242650 describes the problem, and is labelled "Resolved (Postponed)". There's a comment from Michael Lehembauer stating "The fix will be in Orcas (the next version of Visual Studio) and I will try to make sure it's fixed in any future service packs we might release for VS 2005." Does anyone know when such a service pack might be released Also, for the meantime, is there any workaround available (for the initial (pre-SP1) copy/paste problems some macros were written that helped alleviate the problems.) Thanks, John. ...Show All

  • Windows Search Technologies Feature Request: Improved Preview with search term highlighting

    I've spent a good deal of time with the major desktop search applications, and although the power and flexibility of Windows Desktop Search is apparent, one main shortcoming with WDS has me continuing to use personally, and recommending to my clients, Copernic Desktop Search. And that's the document preview. If WDS had a preview more like Copernic's, I'd switch in a second. Copernic's preview is both much faster to preview documents (although not quite as WYSIWYG in some circumstances) but also has the invaluable feature of highlighting (and automatically going to) occurrences of your search terms in the document. Contrast the way WDS and CDS preview a text document. WDS just displays it, and often incorrectly formatted if the extens ...Show All

  • .NET Development Problem in Using the "FtpWebRequest" in VS 2002

    Dear all, I need to write a program that need to upload some files to a ftp When I search in MSDN, i find this articals http://msdn2.microsoft.com/en-us/library/ms229715.aspx#codeexamplesection when I copy the code and apply in my program, it has the error message that cannot find the namespace of the FtpWebRequest I have updated the .NetFramework to 2.0 I have no idea to solve this probelm. it would be great if someone can help me to solve it. or povide another method to upload a file to ftp. Thank you   Michael K. Barnett wrote: Vs 2002 I have an example using Studio 2005. I sent you the example in an email attachment...for 2002  I also sent you an ...Show All

  • Visual Basic Determine if a time value is before a starttime or after an endtime

    I need to determine if the datetime setting the user has selected is before a start time (a datetime object) or after and end time (also a datetime object) For example if my start datetime is 07/11/06 06:30:00 AM and my end time was 07/11/06 10:30 PM my user datetime would have to be before 07/11/06 6:30:00 AM or after 10:30 PM. How would I do this Hi, this is the quick and dirty way... Private Sub CheckRange( ByVal myTime As DateTime) Dim startTime As New DateTime(2005, 11, 10) Dim endTime As New DateTime(2005, 12, 5) If DateTime.Compare(myTime, startTime) < 0 OrElse DateTime.Compare(myTime, endTime) > 0 Then MessageBox.Show(myTime + " ...Show All

  • Visual Basic Scrollable option problem

    I have a problem printing scrollable form that has content that biger than displays height. Instead of printing the whole page I get only my display's height area with the scrollbars (the content is still less than full printed page) Thanks Hi John, Thank you for your respond. I just sent you my suggestions why yours solution is not working for me. In two words. The screen resolution (may be I am wrong) specify the maximum size and clientsize of the form. By having smaller resolution then you I am not able (it automatically decrease itself) to set the ClientSize big enough for printing whole page. PrintForm even with scrollable option is not able to scroll beyond maximum size of the f ...Show All

  • Visual Studio Tools for Office Can't get most basic VSTO 2005 SE Outlook Add-In to load

    I have crawled all over the web to no avail. I have VS 2005, with VSTO 2005 loaded, and loaded VSTO 2005 SE. I try to run the basic 2005 SE Outlook Add-In template in debug mode from the IDE. I have not added ANY code, not even Hello World. On run, Outlook starts with a dialog box, Office document customization is not available. An add-in could not be found or could not be loaded. Clicking on the Details button gives no additional information. In Outlook under COM Add-ins, Load Behavior for the add-in states "Not loaded. A runtime error occurred during the loading of the COM Add-in." There are no other COM Add-ins (I don't have Newsgator or anything like it - already read that answer). I manually checked CAS, everything looks fin ...Show All

  • Windows Forms What would cause a program to try to reinstall itself when someone tries to run it?

    I created a setup project for my application (written in VB.NET 2005) and produced a setup and MSI package. The IT Administrator used the MSI package to install my application on Windows Terminal Servers. When he installed my application, he correctly went into install mode by typing "change user/install" from the command prompt and "change user /execute" after the install was done. However, when some users try to run my program they see a dialog box indicating it is trying to install my application. This is then followed by the error message: " Only administrators have permission to add, remove, or configure server software during a terminal services remote session. If you want to install ...Show All

  • SQL Server Strange discovery - maybe bug??

    Try this: CREATE PROC tep_test @id int, @verbose varchar(1), @id2 int AS SET NOCOUNT ON SELECT Verbose = '['+@verbose+']' SET NOCOUNT OFF GO EXEC tep_test 1,Y,2 GO DROP PROC tep_test Why does the EXEC not generate a syntax error "Y is not a char" It runs fine under SQL 2000 and 2005. I think it is a bug, my coworkers think it is a feature. Any comments This also works: EXEC tep_test 1,this_is_a_test,2 It seems like it has worked this way for some time -- if not always.  Unfortunately, I can no longer connect to my Sybase 4.9 server or I would give that a try too.  Can somebody with a 6.5 server also give this a try Dave ...Show All

  • Windows Forms Dragging stored procedure into dataset not creating datatable

    When I drag stored procedures onto my dataset, normally I get a datatable with an adapter. With one procedure that I'm working with, I get a tableadapter, but no datatable. Right now the proc doesn't return any rows, but when I execute it, I see the column headers so it should be returning them to the IDE. Anyone have any ideas Not sure why this was moved into Data Controls and Databinding. It turns out that it looks like this is an IDE issue regarding how the IDE figures out what columns are returned from a stored procedure. If there is a conditional statement before the select, which calls return, the IDE fails to figure out that the SP returns data. Example: create procedure dbo.TestSP_Broken as ...Show All

  • SQL Server CLS-Compliant Identifiers

    Hi, I am trying to use subreports and I am getting error when I click on preview. The error is: "A parameter in the subreport 'subreport1' has the name, Parameter name must be CLS-Compliant Identifier." Can you please tell me how to fix this error Thanks, -Rohit make sure that you do not use any reserved words as a parameter name. http://www.devarticles.com/c/a/C-Sharp/Making-Your-Code-CLS-Compliant/ HTH; Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Express Editions Database Connection Inquiries

    Dear peeps, Please shine some lights on my inquiries, I am just a newbie to database programming and I need your expert advice. I have started a database program through VBExpress and I wish to know how can I transfer Database connections using OpenFileDialog box, and from there all the connections would be referrenced. I am using MS Access on one of my project and the other one is SQL Express. Also, during the packaging of the software, is there any options that I can install the program on any directory that I would want to choose and from there, the database connections would be updated Thanks a lot in advance. Change Connectstring at runtime: Dim ConnectString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data ...Show All

©2008 Software Development Network