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

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

Rvel

Member List

George Kondiles
fcsobel
dtwilliamson
t.voelkel
Spoofed
vaguy02
nbaubant
YWang
Carlo Francese
Shasur
Julien ÉLIE
BrunoRdaSilva
Boozy
JZINK123
C T Ranjith
Solarin
ImAnAccident
SergoT
Tom Lichtenstein
Lorenzo778
Only Title

Rvel's Q&A profile

  • Visual C# check internet connection + internet speed

    how to check if PC is connected to internet using C# 2005 and on what speed it's connected To check the internet access: Response.Redirect (“http://....”); About the speed connection I will try to find somewhat out. Maybe later. Have a fun! Valentin MCP C# Do not hesitate to contact me! www.wwv-it.eu valentin.welter@t-online.de ...Show All

  • Software Development for Windows Vista Architectural question about WWF

    Hi there, I'm just investigation the possibility to use WWF in an Orderrouting System. The system has relatively huge number of different routing objects (orders and group of orders) (about 100k objects). The system works in PUSH mode, means every workflow state transition is forced by event (like insert, update, delete of objects). My question is. What is the best use of the WWF components in this case 1. Having a stand-alone Workflow server, listening for user events. In this case, middle-tier will notify Workflow server that an order is changed and force workflow to continue. Is it possible to have 100K workflow instances ( ...Show All

  • Architecture Spcification of web services you need from third-party company

    I want third-party company to implement bunch of web services. I wonder what it is the best way to specify them. I can create wsdl for them, is it ok Interoperability is very important because services will run on non-windows machine and clients will run on windows boxes. thanks in advance for any info Pawel, Are you saying that you want them to use web services that you have implemented We have toyed with this question ourselves. There are, basically, two avenues of approach: Deploy your wsdl in a public or client-accessible arena, point them to it, and wish them luck. Or, what we have considered, and begun doing, is creat ...Show All

  • Windows Live Developer Forums Connection problems in game/app

    Hi I've been testing my game since it got approved and I've found that I cannot play with my contacts. My game is hosted in my own web server running in the same subnet as the computer from where I'm connected. I could play with my contacts using msgrp2p.xml file, but from the page it never calls the Channel_OnRemoteAppLoaded function. I think it has something to do with connectio speed to the server, since I can get faster from here to it. I've tried to delay the Initialize function call 1 or 2 seconds when the user comes from the subnet but it doesn't work. Any idea Thanks L I've got it. It was a prob ...Show All

  • .NET Development Returning a pdf-file from a webservice

    I am returning a pdf-file from a webservice. I am thinking of just returning it as a byte array, but I am wondering whether there is a better way to return it. Speed is an issue and the pdf-file is quite small, so I have to avoid a solution which requires returning much more data. Treat PDF as binary, i.e., byte array, is the fastest way to get it from web service. If you want faster than web service, you can write a Http handler, ashx, and an ashx client to invoke the ashx, to get it as binary, not base64 string as in SOAP.  Web method uses base64 string for binary data. Base64 encoding turns 3 bytes ...Show All

  • Visual Basic C# or VB ?

    other than familiar syntax is there any reason to use VB instead of C# is the difference only syntax The biggest problem comes from trying to recognize these characters from the comport. ...Show All

  • Visual Studio Team System VSTS Dual Server Performance problem

    We have 2 environments of VSTS – one single server and the second dual server. We are encountering performance problem (During checkout, check-in operation) in the dual server configuration (the operation are performed from a client that is installed on the server (it eliminates a network problem) only. Is there is any additional server configurations that we should consider (and that is not mentioned in the installation guide). What kind of performance problem are you having   What operation are you doing   Using IDE or command-line   On how many files   How long does it take ...Show All

  • Visual Studio Print fails at random (Report Viewer-Server 2005)

    Hello, We have 2 seperate applications that use the VS Report Viewer Control. Both are deployed via Click Once. Both of them have 'random' bizarre problems when you click print on the built in toolbar, some machines they print fine, others no print no error just nothing happens, on yet another machine they print to a network printer that isnt even configured on that machine... On yet other machines they throw an error about invaled spool when you click print. All of the machines print normally with all other applications... Is there anything in paticular I am missing to configure the printing I am using the Viewer with a Serve ...Show All

  • Visual Studio 'Unable to find the report in the manifest resources' - Build Action is missing??!

    Hello, I have just upgraded my VS2003 project to VS2005. Had a million things to fix, but I'm finally down to the last few. The biggest remaining problem is my Crystal Reports don't work. The error message is below... On googling it the answer seems to be I have to include the *.rpt's as an embedded resource. However, and this is the really odd bit, the properties that should show up in VS2005 to allow me to do that are simply missing! No matter how I fool around with it, there is no Build Action property when I select a file in the Solution Explorer. I notice that if I create a Windows application in VS, the Build Action property ( ...Show All

  • SQL Server deleting records

    I have a couple SQL tables that have been appended to daily over the last two years. There is now about 50,000,000 records in the table. Does anyone know the fastest way to delete records before a certain date to shorten these tables Delete queries and everything else I've tried is taking way too long. Since this is the first time you are deleting from the table - yes, you are just going to have to let the thing run - deleting many rows (and logging) just plain takes time. In the future, as this becomes a regular process (perhaps monthly) the index will help a great deal. .....gtr ...Show All

  • Visual J# onClick, Questions??

    I have some check boxes with lables like 'checkBox" _________ I want to be able to check that check box with click on that label anywhere, you know like onMouseOver event i am not sure how that works here is what i got so far...I am using ColdFusion but i believe this problem is java related i think, any help would be appreciated.. <tr> <tr onMouseOver="checkbox"</tr> <cfoutput><td><input type="checkbox" name="cpt#res.code#"></td><td><font size=2>#res.code#</font></td> <td>&nbsp;</td> <td><nobr>& ...Show All

  • Visual Basic Loading and gathering information from a text document

    I am currently producing a program for myself and i need to know how to gather and put loaded text information into a table and allow searching ect, i will clarify with pictures.  Please be patient with me because i am a novice. given the following text [item 1] name=Welcome Note description=Welcome to the world of Darkness. class=12 reqlevel=1 quality=1 bonding=4 classes=0000 //All Classes model=5567 level=1 races=0000 //All Races stackable=1 maxcount=1 material=-1 pagetext=1 language=1 buyprice=300 sellprice=100 From a text file, i want to load it and sort it into a table like the following http://i50.photobucke ...Show All

  • SQL Server Querying SQL Express database from Excel macro

    How do I query an SQL Express database from within an Excel 2002 VBA macro For example, how could I accomplish this in an Excel macro. SELECT myID FROM MyTable WHERE Compound = string in cell A1 And then put the resulting ID number in cell A2. The relationship between Compound and myID is always one to one. Thanks to all. Dan This will give you the rough idea, this is from Excel 2003, you will need to change the connection string information and stuff like that.; With ActiveSheet.QueryTables.Add(Connection:=Array(Array( _ "ODBC;DRIVER=SQL Native Client;SERVER=(local)\yukon;U ...Show All

  • Visual Studio Express Editions Checking if application is already running

    I have added a context menu item to my application. The problem is that, if it is already running and I right click a file, another instance of the program opens up. How can I check if the program is already running, and if it is, how can I pass control to the existing instance Thanks in advance. Try this... public static bool IsAppAlreadyRunning() { Process currentProcess = Process.GetCurrentProcess(); return Process.GetProcessesByName(currentProcess.Name).Length > 0; } you just have to modify it to suit your need. HTH, ...Show All

  • Visual Basic Win Forms Databinding with DataGridView - how to hide columns?

    I apologize in advance for asking such a simple question, but I've looked around quite a bit and can't find an answer. I'm trying to do something like this:         Dim dt As New DataTable         dt = MyObject.GetList(RecordID)         Dim bs As New BindingSource         bs.DataSource = dt         With dgReports             .DataSource = bs         End With Which works fine, but ...Show All

©2008 Software Development Network