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

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

ps1terry

Member List

Tom bernard
rpreston
SDH2007
Simone1
wencey
Deepak Hota
Puzzled
Farhan H Soomro
mikkelbm
leozworld
DTHMTLGOD
aramka
Kurt Jaegers
programmer01
Richard_Wolf
Shirvo
Saltynuts
Liu Qiang
KluchCode
John Paul Cook
Only Title

ps1terry's Q&A profile

  • Visual C# Auto scroll to specifik row in datagridview

    Is it possible to have a method that scrolls and displays a specific row in a DataGridView I want the row with tag = DateTime(2007,02,21,08,00,00) to be viewd when the time is 08:00.. how do i do that ...Show All

  • SQL Server Problem with distribution agent

    Can anyone help me on this I have a transactional replication going on from Server A to server B (Sql Server 2005) The replication was working well till yesterday.. But now, the replicated transactions are not getting applied at the subscriber. When I see the Log reader agent, its working fine...delivering the transactions to the distributor. When I see the replication monitor status ..it says 'delivering replicated transactions'...however the number of undistriuted transactions is very high..its getting bigger and bigger..not decreasing...I dont see any errors..So my guess is the distribution agent is not working eventhough its says 'delivering replicated transactions'..Other thing is if i see the replication monitor it says sta ...Show All

  • Visual C++ Simple problem adding control to CStatusBar

    Hi folks, I've got an VC2005/SDI/MFC/DocView app. I'm trying to add a CProgressCtrl to the lower right-hand part of the status bar but it doesn't seem to be working (it's never visible). Here's what I've done: 1) Right-clicked "IDR_MAINFRAME" in resource view, clicked "Resource Symbols..." and added a new symbol called "ID_PROGRESS_PANE". I kept the default value it gave me (101). 2) in "MainFrame.cpp" I added "ID_PROGRESS_PANE" to the end of the indicators list near the top of the file. There are a total of 5 indicators in the list after the addition. 3) Right-clicked "String Table" in the resource view and clicked "Open". Added a new string with "ID_PR ...Show All

  • SQL Server Icons for Custom Tasks won't show up.

    All aspects of my custom task work well except for the icon! I have included the .ico in the assembly as an "Embedded Resource" and the icon has both 16X16 and 32X32 images. I have edited the IconResource property of the DtsTask attribute as follows: IconResource="MyNamespace.MyDLLName.MyIconName.ico", Where the output assembly is called "MyNamespace.MyDLLName.dll". Has anybody got this working before The Icon just never shows (I get the default blue square task icon). Thanks in advance. Thanks Kirk, Exactly what I needed! I didn't see anything in the documentation about the "TaskIcon.ico" name requirement, but I imagine it must be there s ...Show All

  • .NET Development Concurrency error when using ImportRow

    Hi, I am trying to import a row from one database to another with the same schema but the Update generates a Concurrency exception. Basically I just do this : ReadSrc() ReadDestination() For each SrcRow in dataTableSrc If rows do not match then dataTableDest.ImportRow(rowSrc) endif Next daDest.Update(dataTableDest) When I examine the table to be updated I see the imported row present with a status of "modified". I am using VS 2005, VB.NET, Access database, OledbConnection objects Any ideas Thanks, Mark David, Thanks for the reply. I fixed the State problem so the records to be added were State = "Unchanged", then did a SetAdd ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bullet Fires Only Once--Never again

    Hi there, Like everyone else here, I have a problem. Basically, whenever I fire a bullet, it will fire only once. It fires just fine, only, when I hit space to fire a second bullet, a second never fires. Or any other number. So, I think this is all the relevent code for the bullet: void FireBullet() { for ( int x = 0; x < bulletnumber; x++) { if (BulletVisible[x] == false ) { BulletVisible[x] = true ; BulletPos[x].X = PlayerPos.X + 40; BulletPos[x].Y = PlayerPos.Y + 32; } } } Another section where there could be issues, this time in Draw(): for ( int x = 0; x < bulletnumber; x++) { if (BulletVisible[x] == true ) { SpriteBatch.Dr ...Show All

  • Visual Studio Express Editions There is no Form.Close Event ??!!!!!

    Hello evey1 I have boolFormClosed as a public variable that has been modified in the module level. I have a form and when I am clicking on the close button of the form I just want to set the boolFormClosed as true. But I can`t find any Form Close Event in my form events list. The form.Disposed could`nt help me either. How can I do that Pls Help me on this . . . Private Sub Form1_FormClosed( ByVal sender As Object , ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me .FormClosed End Sub ...Show All

  • SQL Server Rsreportserver.config Smtp password settings

      Hi,   I wanted to know if there was any way of setting the SMTPAuthenticate in the RSReportServer.config file, so i could connect to a remote SMTP with username and password I am using window 2003 system where smtp is not installed  and i don't want to installed it. If there is another way to change only in Rsreportserver.config  file except pick up directory. thanks in advance Ashok kumar yadav Hi, Have you ever get answer for this question I have the same issue connect to remote SMTP with authentication...Thanks ...Show All

  • .NET Development during installing the program ...

    hi, after i publish the program (studio 2005) and install the .exe file at the other computer there is no prompte box to say the program has been installed or not is it normal and how can i make it to tell the user that the program has been installed thx hunb hi, i have written a program and i have published this program to an exe file then i double click the exe installation file and try to install the program that i have written at the other PC but after the installation, it doesn't have any message to tell the user that the program has been installed or not what should i do to alert / hv a message to tell the user that the installation has been completed many thx for ur help hu ...Show All

  • Visual Basic Uploading Files

    Hi there, I know how to upload a file to a remote server but it always comes up with a dialog box saying where it going, etc. Is there any code that stops that dialog box appearing. Thanks, AliQ Hi AliQ It looks like you are setting the ShowUI argument to true. Try the following and see if it solves the problem ... My .Computer.Network.UploadFile( "C:\MyFileLocation" , " ftp://MyRemoteServerLocation " , username, password, False , 500) Richard ...Show All

  • .NET Development TCPlistener for more than one Port

    Hi at all, i will use the TCPlistener for around 500 ports (OK, this sounds crazy, but I need it) It it possible to start the TCPlistener for more than one Port If not, how can I handle it Must I load 500 TCPlistener in different Threads thanks for your help 500 threads in one app Won't work. You will thread thrash your app to a standstill. Win32 operating systems (and Unix and all others) will allocate one socket to each listening port. You service the listening sockets based on the requirements of your app - ( asynchronous, thread pooling, custom, etc.). You will have to rethink your design. Do you really need to open 500 ports What are you doing You have 500 different clients each need ...Show All

  • Smart Device Development Treo emulator test phone call problem

    We are trying to make some test call from the treo 700w emulator. In our application we have catching the phone call event from the device and doing some db insertion. But when we try to call from the emulator we get the following error “The phone has not been activated. Contact your mobile service provider to activate your phone.” Please let us know how we can surpass this message and do some test call from the treo emulator. One thing is clear.I am developing for windows mobile 5.0 devices.I have developed a version of my application for smart phone as well as pocket pc.Treo 700w is one of the devices which our client is going to be use.I think this is the best possible forum where I should get m ...Show All

  • Internet Explorer Development Internet Explorer Toolbar (Menu Bar) disappeared after installing IE 7

    I use yahoo as my homepage, when the "Get IE7 now!" appeared in the toolbar, I clicked on it and installed it. Big Mistake so far...Here's the problem, after installing my IE menu bar (toolbar) containing "File, Edit, View, tools, help" vanished and I can't figure out how to retrieve it or get it back. I have checked and it is not hidden behind another toolbar. Along with that, The IE blue bar at the top & small bars at the bottom contain no information of the URL (webpage) when pages are loaded. In the Yahoo toolbar, under the pencil icon- there is no standard toolbar listed anymore. Also my tabs disappeared from yahoo and under the toolbar options there no longer is a check box to "Enable Tabbed Browsin ...Show All

  • SQL Server Hierachy drill down stops at point

    I have the following scenario I have a Staff Parent child hierarchy and that links down to a division. A staf member is in charge of a division but we want the managers to drill down into the children and see which divisions they are in charge of etc. So here is what the data looks like Staff Lev1 | Staff Lev2 | Staff Lev3 | Staff Lev4 | Division | Value ------------|------- -------|--------------|-- ------------|----------- |--------- A | B | C | D | DivA | 1000 A | E | | DivB | 2000 the problem is, with drilling down though the staff hierarchy I can never see DivB, I can see the value associated to the Staff member E but when I try drill down it j ...Show All

  • Visual Studio 2008 (Pre-release) showing status of a web page in the statusbar

    hi! i am making a xaml application. i am using the frame control as the browser. now what i want is the status as 'connecting', 'connected' to come at the bottom of the browser. we can do this in vb.net by using the statustext property of web browser. how do i do it here in wpf kindly help!! :) ...Show All

©2008 Software Development Network