Software Development Network Logo
  • Visual FoxPro
  • Architecture
  • VS Express Editions
  • Visual J#
  • Visual C#
  • Visual Basic
  • Visual C++
  • Smart Device
  • Game Technologies
  • Windows Forms
  • Microsoft ISV
  • VS Team System
  • Windows Vista
  • .NET Development
  • SQL Server

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

warb

Member List

johnlayer
Rafa Cabedo
Durgaprasad Gorti
ZHA
texag
Ze Lin
Les26739
iestudi
Gandalf Hudlow
VB.IS.NOT.PYTHON
Adec
X4U
Matthew Byrdwell
Richardthomas1960
KevinMullin
Marc EMILE
threna
Craig Mellon
Rick Toner
Rex Morgan
Only Title

warb's Q&A profile

  • SQL Server Processing error

    Hi all, This came up and I have never see it before, I have tried logging in as sa and by using Windows Authentication and both give the same error. The error below occurred while using sa and the password. I get the same thing when I use WA (I am sysadmin). Anyone have any ideas about what could be causing this Thanks, Roy <Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine"> <Parallel> <Process xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Object> <Data ...Show All

  • Visual C# With StreamWriter

    I can't sort ou what is wrong with code in relation to error message "System.IO.StreamWriter.StreamWriter()' is inaccessible due to its protection level." Can someone help using System; using System.IO; namespace Ab { public class Cab { StringWriter sw = new StringWriter(); private void UseSW() { sw.Writeline("please help"); } } } Any tip would be very much appreciated. Thanks In your example, is StringWriter supposed to be StreamWriter as in: StreamWriter sw = new StreamWriter();     If so, your problem is occurring ...Show All

  • Visual Studio 2008 (Pre-release) Encrypt and sign messages

    We're trying to get the messages that we exchange between our client and server encrypted using the wsHttpBinding. We've added the following to our configuration file client & server side: <security mode="Message"> <message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" algorithmSuite="Aes128" /> </security> And we've updated our Services to have ProtectionLevel=ProtectionLevel.EncryptAndSign set via an attribute on our ServiceContract. When we v ...Show All

  • Microsoft ISV Community Center Forums vba in excel

    Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Hi John Try the below, you can amend as necessary, I have added a function which will help name the file as per your example Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Dim strRange, StrRow As String On Error Resume Next MkDir ("C:\Files") On Error GoTo 0 For lngRow = 1 To 2 StrRow = Trim$(Str$(lngRow)) strRange = "A" & StrRow & ":B" & StrRow Range(strRange).Select Selection.Copy Workbooks.Add Range("A1:B1").Select ActiveSheet.Paste Application.CutCopyMode = False Appl ...Show All

  • Software Development for Windows Vista InfTee example code

    Hi everybody, I have a project example of a filter called inftee. I can build it normally. How can I use that filter in the GraphEdit. I think I need to Registry the class, but I don’t no how. Anyone could help me Thanks. register a COM dll with regsvr32. Also VC6 has a tools/register control option, and VS.net 2003/2005 both have "register output" property (in project properties/linker/general). G ...Show All

  • Visual C# Executing Exe

    Ok i added a exe file to my solutions explorer and i wanted to know what code i needed to execute the exe in my form 1 It should be as simple as: System.Diagnostics. Process process = new System.Diagnostics. Process (); process.StartInfo.FileName = "Full Path to EXE"; process.Start(); ...Show All

  • .NET Development how to output system.byte data?

    hi,friends my data readlly encrypted,but i can't normal output the encrypted data(system.byte type data).i can output base64 type, response.write(ExampleValue) like this can output base64 encoding value,but i can't output byte[] type value,please how to output the byte type data like J8-D3-DJ-LO-OK-N4......... thanks for you. Like this byte [] data = new byte []{ 10 , 50 , 200 }; StringBuilder sb = new StringBuilder(); for ( int i= 0 ; i<data.Length; i++) { sb.Append(data[ i].ToString(" X2 ")); if (i<data.Length- 1 ) sb.Append(" - "); } Co ...Show All

  • Visual Basic How to give arguments to a shell command with cmd.exe

    I need to open up an executable (grin.exe) from a dos window that is sitting on a certain directory and then sendkey some keyboard movements.  For example, I want to run the grin.exe command from the c:\program files\grin directory and then tell it to hit ALT-G-T. The following will open up the grin.exe without dos, but for grin.exe to work, it must be opened from a directory that has certain files in it: Dim proc As Integer proc = Shell( """c:\windows\system32\grin.exe""" , AppWinStyle.NormalFocus, False ) AppActivate(proc) 'opens up grin.exe, but not from the right directory I would like to use shell, since it d ...Show All

  • SQL Server Creating relationships between 2 databases

    Is it possible to create relationships and enforce constrains thereof between two fields with the same data type from 2 different databases ( i.e. 2 different .mdf files ) altogether, attached to an instance of SQL Server 2005 Express This would help overcome the limitation of the 4GB database size it imposes, by splitting the info required into different databases, rather than just different tables. All the relationships could be then created and a program could be created using Visual Basic or C# or C++ to access all the data meaningfully. I also say this, because in a scenario like where some common piece of data, like contact info, has ...Show All

  • .NET Development advpack.dll and 64-bit .net installation

    I'm trying to install the 64-bit  .net and get an error with c:\windows\system32\advpack.dll when trying to install. Any suggestions mine is an AMD 64 machine running Windows XP 32-bit please help with this netfx64.exe which i downloaded from the microsoft website... ...Show All

  • SQL Server Is there any way to relocate the data and log folders?

    Is there anyway to move the data and log folders to another drive without having to reinstall SQL 2005. I have limited space available on the drive where the program files are installed and need to move these folders to another drive with adequate space for growth. Thanks So, it would be nice if you could track it with "solved" in the group system. Cheers, jens. ...Show All

  • Visual Studio Team System Team foundation Server

    We've install TFS and we have no problems when connecting from our workstation to TFS if we use TFSSETUP user. We do not know how to connect to TFS using other accounts because always it connects automatically with the same user TFSSETUP with no opportunity to change it. We've add users to Team Foundation Administrators but we don't know how to use them. Martin; Thank you for your answer. It was helpful for us. Ramon A. Paulino   ...Show All

  • Visual Studio 2008 (Pre-release) Factoring Interfaces

    I am embarking on my first WCF based service. This service will be evolved from an existing .asmx based set of web services that expose over 200 webmethods. My question is, what is the best way to (re)factor the .asmx interfaces in WCF I was considering a single IMyInterface containing the 200+ methods, and then perhaps partial classes for the implementation to maintain some modularity. Is this a bad idea Are there any best practices for factoring WCF interfaces in wcf,each ABC(Address+Binding+contract(interface)) combination will define the client side proxy If all these methods logically don't fit ...Show All

  • Visual Studio 2008 (Pre-release) Popup

    Hi, How do you make a PopUp follow the form when the form is dragged Thank you, Jaco Popup does not have support for listening to position changes of its placement target. You can listen to window moves and reposition the popup by changing the HorizontalOffset and VerticalOffset properties. However there is a bug in the FebCTP where these properties don't change the position of the popup unless it is reopened (this will be fixed in the next release). You may consider using an Adorner. It allows rendering on top of all other content in the window and will automatically move as the window mo ...Show All

  • Windows Forms designing a gui with panels

    I want to create an application with a menu system like outlooks, where you can click on a button or image and the contents area will display a different "form".  how would i go about starting this Rick I've answered a similar question in this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=182878&SiteID=1 ...Show All

©2008 Software Development Network