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

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

project2n5e0o1

Member List

Pedro A. G. Carvalho
J. Ho
hte
raingod_zippo
Emy_P
Evan Haklar
U_T_A
Peter Huber
ImpureEvil
Euclidez
Cygon4
Jérémie Faucher-Goulet
Vj5
Vipul123
A. Heuts
Alexei_shk
NotTaken
Steve - B3
Software Engineer
beefeater
Only Title

project2n5e0o1's Q&A profile

  • SQL Server Is there a load event or run event?

    Is there a load event or report run event for a report that can be accessed I need to have my report jump to a certain url whenever it is run but I cannot use the jump to url because that has to be clicked. I need this to occur automatically. Any suggestions Yes, you can use the Code section in the in the Report properties window. Actually, I was mistaken. You do not need to add any thing in the References Tab. The Classes you need are in the System.Net namespace and are contained in System.dll. Since this is the case, all you will need to so is add the namespace to the beginning of all the WebRequest and WebResponse class names, something like, Protected Overrides Sub OnInit() Dim request As System.Net.WebRequest = System.Net.W ...Show All

  • Visual Studio Express Editions Form move vb2005 Express

    I have one question, how can i move form when the FormBorderStyle is "none" Please do not duplicate post...you answer can be found here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=625556&SiteID=1 ...Show All

  • Software Development for Windows Vista Multiple WebServiceOutputActivities

    Is it possible to have multiple WebServiceOutputActivities in a workflow My workflow could potenitally take a while to run so i want the option for the user to receive a response immediately while the workflow continues to run all its other processes, or just wait and receive a response at the end. Only one of the 2 outputs will ever be hit. i have done that but it tells me that another output already refers to the input activity. I see if i add them on opposite sides of ifelse branch it doesn't throw the error, but i have the response at the end of the workflow if the previous output was not called. ie, i have an ifelse at the beginning that responds immediately if required. then i do my processi ...Show All

  • Software Development for Windows Vista Windows SDK RC1 Download

    The Setup fails with an error message "SDKSetup encountered error : Unable to find the file SDKSetup.xml at the installation source. ....". I get the same error message whether I download and then run or open directly. It seems the site is not working as I was able to do this earlier. Thanks I have the same problem running the SDK web setup on Vista RC1. Does anyone know of a solution I'd prefer to not download the entire iso if possible. Thanks, David ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. General Audio Disfunction

    After about 10-15 minutes of gameplay, the audio slowly begins to become more and more distorted and fractured sounding. Both the sound FX and BGM gradually become more choppy and grainy sounding while dragging down the overall performance of the game. Any ideas my code for audio is pretty straight forward. My general routine for calling sound FX is; 1) call 'cue stop' in case the effect is still playing 2) call 'get cue' to retrieve the sound again 3) call play I do this in most cases where I only want one instance of the effect occuring at a time and there is a chance the sound will not have finished playing before it needs to be played again like in the case of a rapid fire weapon. ...Show All

  • Windows Forms Having some threading issues

    Hey guys, I'm trying to read a file and add some nodes to a treee view control. I would like the GUI to remain interactive and have a progress bar and text box be updated with info as the file is read. I'm using a threadpool thread and reading the file from there. However, I seem to be running into some problems. Sometimes the GUI seems to be updating/repainting fine but than all of a sudden stops responding. Also, if the open file dialog is on top of the form, it doesn't repaint at all. Below is the code I am using. Any help is greatly appreciated. delegate void UpdateProgressBarCallback(decimal percentDone); delegate void UpdateFlexbarTree(string line); ...Show All

  • .NET Development Chat Program without server

    Hi! I search a example of a chatting program. Most chatting program works with a server and a client. The application "Omnichat" (http://omnichat.free.fr/) is a chatting program without server. It uses broadcast udp but i don't know how it works. How made this type of program. Do you have any examples Thanks. That chat program uses peer-2-peer chat technology in which the client has a server or a listener module embedded into itself. you can learn more on p2p by searching more on p2p in google. ...Show All

  • Visual Basic How to ignore SSL CA error in Site Name?

    Is it possible to programmaticaly ignore errors in SSL Certificates when connecting to a web service The site I am connecting to has a mistake in it's certificate (site name spelt wrong). I can ignore the error if I browse to the site, but I want to ignore it with my program. Are there any parameters or properties I can set to achieve this (It all works fine on a site with the correct certificate info) I am initialising the web service through Excel at the moment. Excerpt.... Set sc_myWS = New SoapClient30 sc_myWS.MSSoapInit2 c_WSDL_URL, str_WSML, c_SERVICE, c_PORT, c_SERVICE_NAMESPACE Set sc_myWS.ClientProperty("GCTMObjectFactory") = New clsof_Factory_myWS robbie__ wrote: I am init ...Show All

  • Visual Studio HTTP Checkout - Possible Timeout Anomaly

    My team is encountering a strange problem when trying to checkin or add larger files to VSS 2005 via HTTP or HTTPS. The resulting error is always the dreaded: There was a failure uploading the URL.... although I don't believe that error indicates what the actual issue is. I've read what I think to be every post on the subject here and elsewhere on the web, and no situation matches exactly (others are simply an easy timeout misconfig or a permissions issue and nothing can be checked in.) It's not a permissions issue as all team members can checkin smaller files and large projects that contain small files-- as long as the file being checked in doesn't take more than 30-60 seconds (see below.) It's not a typical HTTP "tim ...Show All

  • Visual Studio Express Editions Installation of Visual Basic Express Edition hangs at "loading components"

    I am new to MSDN forums, just to let you know. My problem is that when I am trying to install Visual Basic Express Edition, when the part of "Setup is loading components" hangs at about 80%. I have installed this program before and it worked properly. I have completely uninstalled (I think) the program, but now I want it back. What can I do Thanks. ...Show All

  • Visual Studio Express Editions Reading txt file

    Assuming i have a txt file, how am i going to read certain lines of the file Like, reading the third line or reading from 3 to 7th line Hi there, Here's a code example that reads the 3rd line from a text file: Using sr As System.IO.StreamReader = New System.IO.StreamReader( "TestFile.txt" ) Dim line As String Dim lineCount As Integer ' Read and display the lines from the file until the end ' of the file is reached. Do lineCount += 1 line = sr.ReadLine() If lineCount = 3 Then MessageBox.Show( "The third line reads: " & line) ...Show All

  • Visual Studio Pin, Share, Branch troubles

    Suppose the scenario below: Project P1 has a File F1 with 5 versions ( 1 to 5 ) and version 4 is supposed to be shared, branched , modified and finally, merged into version 5. Steps 1.Version 4 of file F1 in Project P1 was pinned. 2.Project P2 shared the file, that had been branched immediately after the share operation. So far, the version of file F1 in project P2 is the 4th one of Project P1. 3.The file F1 in project P2 was checked out , changed and checked in, creating a version 2 of the file in Project P2. 4.The pinned version of the file F1 in project P1 was unppined. 5.After all, the file F1 in project P1 was selected and the Merge Branch operation was executed Normally, VSS should perform a Visual Merge be ...Show All

  • SQL Server Need help deleting rows in a table

    I need to delete some specific rows in Table1 int1 must have the value 1 int2 must have the value 1 int3 must have the value 0 and now we get to the difficult part - first character in the field [Cost No] have to be different from the letter 'B'. [Cost No] have the datatype varchar(20) I expected the code to look something like this: DELETE Table1 FROM Table 1 WHERE ([Int1] = 1) AND ([Int2] = 1) AND ([Int3] = 0) AND ((LEFT([Cost No]), 1) <> 'B') But I get this error message: The left function requires 2 arguments What am I doing wrong and what should the right code look like Saravanan Sundaresan wrote: Hi, u can try this as follows delete from table1 where < ...Show All

  • Visual Studio What's wrong with MSVS SP1? It does not extract at all...

    The file name is: VS80sp1-KB926601-X86-ENU.exe After quite a few hours(> 4 + ) waiting, it still did about 60% of extraction... and the process seemed dead. I killed it a few times and re-executed it, it didn't work at all. I rebooted my Windows XP several times. Still didn't work. What's wrong I am using MS Visual Studio 2005 Academic version. Thanks Check this blog to see if anything mentioned in there might fit to your symptoms: https://blogs.msdn.com/heaths/archive/2006/12/29/the-visual-studio-2005-service-pack-1-installation-experience.aspx -- SvenC ...Show All

  • SQL Server SQL Server Setup Fails

    I just upgraded ACT database and it needs SQL Server. I just keep getting "SQL Server Setup Failed". I downloaded SQL from Microsoft, went to install and get the same error. It then refers to a summary txt log which I have had a look at but to be quite honest means nothing to me. I only want to be able to use ACT!! Anyone help PLEASE!! Hi Sam, SQL that came with ACT just says "SQL Installer - Sage Software" Microsoft version that I tried was SQL 2005. The message is the same on either, that is "Microsoft SQL Server Unexpectedly failed. For more information review Setup Summary Log File" then gives the reference as to its location. ProgrammeFiles etc... I spoke to Sage, they said its a Microso ...Show All

©2008 Software Development Network