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

Software Development Network >> Mr Brown Shoes's Q&A profile

Mr Brown Shoes

Member List

Guwapo
F. Gsell
sachin.dubey
Kyndig
ghostnguyen
James_Moore
Shawnmcf
Matt_
Rob Wheeler
GregRyanLorenz
apaspula
Rocco Mastrangelo
Keith Newton
clint 2
theManMyth
ardmark
hakan Altıntaş
SParker1
Kamil Janiszewski
TkNeo
Only Title

Mr Brown Shoes's Q&A profile

  • Windows Live Developer Forums MSN Activity

    I have submitted my MSN Activity to http://activity.msn.com one week ago. When can I know it is approved or not I did not receive any response until now. Thank you for your attention Regards, Bill I'll ask the folks that run the provisioning process to respond to both of these requests. You can also send mail to bizdesk@microsoft.com with questions on the status of your Activity app provisioning. Cheers, Todd Biggs Windows Live ...Show All

  • Visual Basic Processor optimized compiler

    Hi all, I want to improve the performance of my application by compiling my application with a processor optimized compiler. Is there a vb.net compiler optimized for Xeon processors Now, I know that the vb compiler compiles the code into an intermediate language file. So I can’t actually see any improvements here, or am I wrong That’s why I think to use ngen.exe to pre-compile my application assemblies. Is there a special ngen.exe optimized for Xeon processors available Any answer could help me further. Regards, George Homorozeanu. I want to optimize our application for XEON processors because we have a terminal server and the application will run on that terminal ...Show All

  • Audio and Video Development XPath Syntax - which is best?

    state:actioned()=true() state:actioned()=true state:actioned()=1 state:actioned() Are all of those valid and one in the same Depending on which document or sample I'm looking at I see all flavors. The second one ( focused()=true ) is an error, since true by itself is undefined. The rest are equivalent, but yeah, having no RHS is less typing. Note that any non-empty string is converted to true, so you could have focused()='0' or focused()='false' or even focused()='Jack Sparrow' and they would all be equivalent to true() . Only focused()=0 or focused()=false() or focused()='' or not(focused()) are really false. ...Show All

  • Windows Forms Windows 98/.Net Framework Problem

    Hi, I have a ClickOnce, VB Express application that is working fine on many clients, except for a client who is stuck in the world of Windows 98. I have uninstalled, rebooted and re-installed .Net Framework 2 several times. The reboots seem clean, but when I attempt to Run the application, the file is downloaded and then Windows asks if I want to Run or Save the file. In either case, Windows attempts to open the file, Prize%20Money[1], but of course there is no application associated for this file. I assume that there is a problem with either Windows 98 or .Net Framework 2, but I don't have clue where to begin. Although, I'd like to tell the client to upgrade his old iron and get Windows XP this is not an option. Thanks for your sugg ...Show All

  • Visual C++ Cannot Get Proper Build of Petzold's DLL Sample Code

    I am attempting to build Charles Petzold's sample code for DLLs. The code in particular is the EdrLib code. The problem I am having is that a DLL is built but does not work. It is not even close to what appears to be the proper size, i.e. my debug build is 44K while the debug build supplied with Petzold's code is 197K. On further examination using the test harness I built using Petzold's code, EdrTest, it works with Petzold's dll but not with mine. The working environment is Visual Studio Professional 2005 on a Win2K box with the Windows 2003 Server SDK. Am I missing something critical. The project was set up as a Win32 projec, DLL, empty project. Thanks in advance for your assistance. SvenC wrote: What error do you g ...Show All

  • Visual Basic Form Disappearing; VB6 to VB.Net

    Hello Visual Studio (2005) I am a Casual User... I am in the process of converting a multiform and functioning windows application written in VB6 to VB.Net. My progress has halted because the second form does not persist. In VB.Net: StartUp Object: Form1 Form 1: Information Text & One Option Button; this form launches ok. Code for OptionButton Click Event: Me.Visible = False Form2.Show() Form2_Load Event Code: Me.Visible=True 'first line of code MessageBox.Show("") 'second line of code After running the application and clicking the Option Button in Form1, Form2 is displayed with the message box on top of Form2. When the MessageBox is dismissed it dissappears and Form2 goes away a ...Show All

  • SQL Server 2005 Reporting Srv cannot connect to Oracle datasource on web server

    created an Oracle datasource (tried both ole db & oracle client) in Visual Studio 2005 report project - works fine connecting and preview of report within ide , deployed to Reporting Services web server, received the following error when attempting to run the report on web server: An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'oracle'. (rsErrorOpeningConnection) System.Data.OracleClient requires Oracle client software version 8.1.7 or greater. web server has oracle client 9i client installed and connecting to db ok through sql plus (this server also is loaded with VS2005 and the SqlServer2005 db) any thoughts or direction greatly appreciated ...Show All

  • Visual Basic How can I send a form and its Subform (Datagrid) as a text file?

    How to I print a Form and its subform as a Text file or send it to a text files then print the text file using a button Maybe using something like this Please be specific if you can. Thank you Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click 'True escribe cada linea debajo en el file the texto "test.txt"./SIN borrar el anterior ' False, prepara un nuevo archivo en cada oportunidad Dim objfile As New System.IO.StreamWriter( "c:\test.txt" , False ) 'Estoy usando este formulario para escribir al formato de texto en el archivo test.txt objfile.WriteLine( "PENA'S ACCOUNTING" ) objfile.WriteLine( "17 Canal Street" ) o ...Show All

  • SQL Server SQL Server roles & ASP.NET 2.0 Forms Authentication Roles

    Apologies if my post does not fit into this forum. I initially tried the SQL Server Data Access forum but I now think my question is more security related. Is it possible for a web user who has been successfully authenticated with forms authentication to be authorised to use a SQL Server 2000 role depending on a particular ASP.NET 2.0 role that they have been authorised to use I understand that that I can assign a SQL Server 2000 role to the ASPNET or NETWORK SERVICE account but this will grant access to anonymous web users to the database role. I can ensure that I only call stored procedures which access sensitive data in web pages that are in restricted by ASP.NET roles. However, it would be nice to also restrict stored procedures via ...Show All

  • Visual Studio 2008 (Pre-release) Closing a callback channel

    I've looked but I haven't been able to find an answer to this question. How do you close a callback channel The doc for OperationContext.GetCallbackChannel says it returns a "channel" to the client. That all works great. But if it's really a channel, shouldn't I be able to cast it to IChannel and call Close I've tried to do that and it's an invalid cast. I've also tried ICommunicationObject, etc. All without any success. The goal: When my services are being closed, I'd like to close all of these callback channels in an orderly manner. Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 Pro WF: Windows Workflow in .NET 3.0 http://apress.com/book/bookDisplay.htm ...Show All

  • SQL Server SP2 Deleting Subscription Problem

    I have installed SP2 and have been testing it. I have found an issue with deleting subscriptions thru report manager. I get an error on page: Line: 1 Char: 58 Error: 'return' statement outside of function Code: 0 I can delete thru SSMS with no problem. Is anyone else have an issue with this Thanks! BobP Mike, Is there a fix out for this symptom I am running the basic SP2 (9.00.3033.00 ). This is really becoming an issue. R ...Show All

  • Commerce Server cms recommendation

    Hello Doeas any one has any recommendation for CMS application to use in cs2007 site (Other than MOSS) Thanks arik Arik, Any well-built ASP.NET-based content management system should work. Cheers, Colin ...Show All

  • SQL Server Forced failover taking too long ... am I missing something?

    Hi all, We have to support forced failover under certain scenarios. Whilst using 'ForceFailoverAndAllowDataLoss' work perfectly the database is not available for several minutes. The failover command returns very quickly, but the database enters a recovery/restore state and will not accept connections for up to 2 minutes. Am I missing an additional step that would speed this up Many thanks, Nick Hi Nick, When you force failover, the mirror database first redoes whatever outstanding log it has received from the principal and then restarts the database so it goes through normal crash recovery. You can monitor the duration of the first phase by looking at the "Redo Queue KB&q ...Show All

  • Microsoft ISV Community Center Forums name worksheet

    I want to name a worksheet in excel using a macro. I want the name to be the current date. If there already exists a worksheet with that name I want to add time to the name. The problem is that I do not know how to add time to the name of the worksheet. pls help me! any help appreciated! i = Worksheets.Count Worksheets.Add Count:=1, After:=Sheets(i) For j = 1 To i If Sheets(j).Name = Date Then blnTodaySheet = True End If Next If blnTodaySheet = True Then Sheets(i + 1).Name = Date + Time Else Sheets(i + 1).Name = Date & ":" & Time End If Use Date & " " & Time. Ampersands are for concatenation in VBA. You can sometimes get away wit ...Show All

  • Visual Basic Code Snippets

    As I was trying to create my own snippets, I added two new ones to the database folder. Now I cannot access this folder from VB 2005 Express. Besides, I created a new folder and added a snippet. I can see the folder but when I try to get the snippet, the system says that I do not have any. Hi, Have you tried selecting ALL FILES view in the OPEN File/Project window If not each file should end with "dot vb" as in >> my_Code_Snippet_For_An_Example_Class.Vb Each "dot vb" file is simply a text file so you should be able to load it into Notepad, WordPad or Word. Better to load it into Notepad as it saves as a text file format by default. Don't forget to add the "dot vb" extension if you ...Show All

©2008 Software Development Network