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

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

d72e4d

Member List

Marcus J
Dr.9
Stephen McGarry
IamWasim
sri111
mkrtchyan.arsen
Luispekos
Gerhardo
enric vives
billb59
netpicker9
DmitryMS
NetSpace Ads
Ray Dyce
JesseD70
andris11
nattylife
hrubesh
Argenta
Janetb
Only Title

d72e4d's Q&A profile

  • SQL Server DEPLOY packages from Server A to Server B.

    I developed some SSIS packages in SQL2005.When developing , The connect is set with Server A. And i know ,later we are supposed to move to SERVER B.but B's IP and machine name are both unknown for developers. The deployment guys will be cahrge in that. what's easiest way for me to tell the deployment guy to add a connection to SERVER B after the SSIS packages have been developed any suggestion Thanks in advance. Hi Phil: Please take a look at the following content in my configure file(sorry for too much lines),could u tell me where to modify : Thank u very much --------- < xml version="1.0" ><DTSConfiguration><DTSConfigurationHeading><DTSConfigurationFileInfo GeneratedBy= ...Show All

  • SQL Server Group age by a parameter and find out the value corresponding to that.

    Hi guys... My goal is to change the given stored procedure so that I can find out the different age gorup according to users parameter and find out sumof these values for that group: s.TVmins, s.Notional$, COUNT(*) AS Qty, SUM(s.TVmins) AS TVMinsAmt, SUM(s.Notional$) AS NotionalAmt For that I am planning to put another parameter @count for the group interval and I need to group accordingly. So my answer should look like: if the user give the @count value as 10: the result should: age group TVMins Notional 1-9 1560 125632( the sum of that particluar group) 10-19 -- -- --- 91-100 -- --- I have a field DOB( Date of birth) , I have to extract age from that field first and then g ...Show All

  • Visual C# I Need A Smple For Receiving SMS In Side My Own Programm (PPC 2003)

    Please give me a sample to see the SMS messages that have already arrived to the client, useing Microsoft.WindowsMobile.PocketOutlook namespace on Windows Mobile 5 or IntheHand.PocketOutlook namespace on WM 2003. I need C# code, I have C++ Sample ;) ...Show All

  • Visual FoxPro Backup Options for newbie to VFP9

    Can someone please advise me on how to perform backups to either a CD or a memory stick from a menu choice Referring to a previous thread re the zip libraries, how would I call these libraries then actually perform the physical backup to the CD or memory stick The users want VFP9 to completely run this routine for them without any intervention except either inserting a CD or placing the memory stick in the USB. Previously, the 2.6 app used the run pkzip then copied the file to a disk drive. Thanks Sammy32 Oh, I would agree. We do backups to tape with an external utility. They run at night and get rotated properly. I just suggested a way to deal with ZIP files to answer the que ...Show All

  • SQL Server Web Synchronisation

    iam able to open the web sync diagnostic information using URL https://itneersrv.abitta.com:443/Synchronise/replisapi.dll in the internet explorer but while running throuth the c# code to run Merge agent i am gettin the following error , [0%] InProgress The Merge Agent could not connect to the URL 'https://itneersrv. abitta.com:443/Synchronise/replisapi.dll' during Web synchronization. Please ver ify that the URL, Internet login credentials and proxy server settings are corre ct and that the Web server is reachable. A security error occurred I am trying the synchronise through Internet where i have an publisher is at different country and subscriber at my office in India , i have given all privileges but then too i am getting same e ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GMAX for XNA???

    I found some special versions of GMAX at the Microsoft site like the one for FlightSim. Now I want to know if MS has plans to release a GMAX version with FBX import/export capabilities. I found some modelers that support the FBX format but none with support for bones and animation. The only free software with FBX import/export seems to be Maya Personal Learning Edition but there they speak of "import/export to MotionBuilder". ...Show All

  • Visual C# Replace char in c#

    I had a string "2006/01/27 00:00:58.747", and I would like to replace "/", ":" and "." with "_". Can anyone let me know how to do it in C# Thanks Hi, Check out String.Replace method. You may need to call it 3 times: string myString = "2006/01/27 00:00:58.747"; myString = myString.Replace('/', '_').Replace(':', '_').Replace('.', '_'); Hope it helps, Thi ...Show All

  • Visual J# TreeNode help

    I have a blank tree node on my form and throughout my program I'd like to add additional ones How do I come about doing that I was looking at BindingContext but could not figure it out. Thanks! Do you mean the WinForm control for showing tree-structured (hierarchical) info Or the Swing one (JTree) Below is VB.net code of mine (to show a tree of folders/subfolders) for the tree WinForm control that you can easily adapt to J# Public Sub UpdateContents() With treeFolders .Nodes.Clear() AddFolder(.Nodes, fRootFolder, ShowRoot) GotoFolder(SelectedFolder) End With End Sub Public Sub AddFolder(ByVal theNodes As TreeNodeCollection, ByVal theFolder As String, Optional ByVal rooted As Boolean = Fals ...Show All

  • .NET Development HELP : URGENT : How to get the list of printers on the web server?

    ASP.NET 2.0 (C#) application Using Windows authentication and impersonation Windows Server 2003 (IIS6) Server is a member server on a domain Logged into server as a domain user that is in the local Administrators group on the server Workstation is on the same domain Logged into the workstation as the same domain user, which is also in the local Administrators group on the workstation I'm having what seems like a strange problem. I have an ASP.NET 2.0 (C#) application that is running on my Windows Server 2003 web server. In this application, I have an .aspx page that tries to get the list of printers on the web server (using code-behind). When I run the application using IE on the server, it works fine and I get a list of the prin ...Show All

  • Visual Studio "Unable to start debugging" error on x64

    I'm using Visual Studio 2005 (SP1 beta) on Windows Server 2003 Enterprise x64 Edition. If I create a new project (Console or Windows application) and then press F5 I get an error dialog stating: Error while trying to run project: Unable to start debugging. Either the applicaiotn has not called WSAStartup, or WSAStartup failed. This happens with the active solution platform set to either "Any CPU" or to "x64". If I change the active solution platform to "x86" everything works fine. Does anyone know what might be causing this problem and how to fix it Thanks, John. Thanks for the help - great to hear this will be fixed in the final SP1. In addition to specifying the start pag ...Show All

  • Windows Forms context menu transparent?

    Hi, Can I make the context menu transparent When the context menu shows on top of the button or something, is it possible to set the context menu transparency Thanks in advance. Hmm, pretty odd. ContextMenuStrip is available in .NET 2.0. Are you using ContextMenu perhaps ...Show All

  • Visual Studio 2008 (Pre-release) How to draw a polyline with a drawingbrush that follows the orientation of the line?

    I want to draw a PolyLine Shape on a canvas. As a brush I use a DrawingBrush. I want the drawing in the brush to follow the orientation of the polyline, i.e. a horizontal part of the polyline should show the drawing untransformed, a vertical part should show the drawing rotated 90/270 degrees, a 45 degrees part of the line should show the drawing 45 degrees, etc. Is this possible withe DrawingBrush If not, is there another way to achieve this in WPF Thnx, Peter This isn't directly possible in WPF v1, but you can do some amazing things with texture coordinates if you want to fake it in 3D: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=629119&SiteID=1 ...Show All

  • Visual Basic ProgressBar colours.

    I want to change the little blocks on a progressbar to red at a specific event, then back again to their original colour at another event. I also want to have them as blue, on another bar.   Asday wrote: I want to change the little blocks on a progressbar to red at a specific event, then back again to their original colour at another event. I also want to have them as blue, on another bar. Hi, I doubt you'll get a stripey effect if that's what you are after But you can pick your color or colors from the list that intellisense pops up. See. >> ProgressBar1.ForeColor = System.Drawing.Color.Blue    ProgressBar1.BackColor = System.Drawing.Color.White    Regards, ...Show All

  • SQL Server How is the data secured over the air in Merge Replication ?

    Dear ppl, I have a question for you. One of our client has asked us how is the data secured over the air during Replication I have read that Merge Replication uses TLS (Transport Layer Security) protocol to secure the data over the air. But I was wondering if it is all done automatically Or do we need to install certificates like for SSL. We have a Windows Mobile 5.0 application using SQL Mobile that runs over 50 devices and they all synchronise with a single Publisher SQL Server 2005 using GPRS connection. We haven't got any SSL certificates installed on the server. Now how can i make use of TLS in my application to secure my data over the air (using TLS) Regards Nabeel Farid You can do this in SQL Server Config ...Show All

  • Visual Basic instr function for special chars

    how do I do an instr for a special character eg: a quote. Instr(1,a$,vbQuote) doesn't work. Enough talk, here they are: The following 3 will all work Public Class Form1 Public Const VBQuote As String = """" Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim stringtosearch As String = "fred" & ControlChars.Quote If Microsoft.VisualBasic.InStr(stringtosearch, ControlChars.Quote) Then MsgBox("found") End If '//This will work also to search for a " character If Microsoft.VisualBasic.InStr("""", ControlChars.Quote) Then MsgBox("found2") End ...Show All

©2008 Software Development Network