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

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

R3dD0g

Member List

ChoKamir
Tim Droz
Frank J DeFalco
colin leversuch-roberts
Tiarnan
ChinaTiger
M.N. Ahmed Sahib
bkohler
Judah
sqlguy12
Ion101
John Turnbull
Bahtiyar Omarov
Karthik R181134
Bastiaan Molsbeck
IS dude
Rafael Mores
Ian Wallace
Shamirza
GoodMorningSky
Only Title

R3dD0g's Q&A profile

  • Visual Studio Express Editions Creating a new website hangs VWDE

    Everytime I click "Create Web Site" either from the start page or the file menu, Visual Wed Developer 2005 Express hangs. It shows 'not responding' in the title bar and task manager, and I have to use task manager to kill it. I never get the dialog box. Nothing in the application event log. No errors or anything! Anyone have any ideas what's going on Dave There was a similar problem that was reported in C# Express but we weren't able to repro the issue. Can you try taking a look at the thread and seeing if you can follow any of the suggestions to get it working: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=775022&SiteID=1&PageID=1 ...Show All

  • Visual Studio 2008 (Pre-release) Add persisted storage to p2p custom resolver.

    Hi! I'm looking into using WCF p2p channels as a notification mechanism in an enterprise application. I have started looking at the Chat sample. The problem with the custom resolver in this sample is that it maintains the node cache of the mesh in memory, and a restart of the resolver creates new, separate meshes as described here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=635536&SiteID=1 I know that PNRP is an option, but I'm not sure that all machines that we need to run this on supports this technology. I would like to add persistent storage to my custom resolver. I have did some testing deriving from CustomPeerResolverService and overriding members like Register/Update/Unregister. When these get called, you ...Show All

  • .NET Development Adding column to a dbf file

    IDE: Visual Studio 2005 Language: Visual Basic Question1: "How would I alter a table (specifically add a column) that already contains data Question2: "If I am unable to add a column to a dbf file that contains data, then how should I approach this problem " Question3: "Should I use an alternitive way to read and write information to a dbf file (I am looking the quickest way to process data.)" Situation: I am trying to find away to quickly process information that is contained in a dbf file. Processing consists of removing records, adding records, and adding fields to a dbf file. Most important processing must be exceptionally fast. For example: I am currenly working on a way to programmically remo ...Show All

  • Windows Live Developer Forums Automating MSN Add-In installation...

    Hi all, Does anyone know where in the Registry MSN stores the Add-In locations Or if there is some official way of automating the installation of Add-Ins into MSN Thanks. http://www.fanatic.net.nz/2003/09/18/how-to-calculate-the-msn-messenger-6x-passport-user-id.html ...Show All

  • Visual Studio Team System TF31002 unable to connect on 2 different client machines

    We are just starting to roll TFS out at our shop. However, we are experiencing the TF31002 error on 2 seperate client boxes. I have already tried the following with now success. Any suggestions I have seen problems similiar to this. This type of connectivity to the Team Foundation Server problem is usually resolved by clearing the client side Team Foundation Server cache. To clear the cache perform the following: 1. Close Visual Studio. 2. Delete the contents of the folder: %USERPROFILE%\Local Settings\Application Data\Microsoft\Team Foundation\1.0\Cache\ 3. Start Visual Studio. 4. Connect to the Team Foundation Server through the Tools menu Connect to Team Foundation Server option. T ...Show All

  • Visual C++ Measuring Internet Explorer page load time and amount of data

    Hi, Can anyone give any ideas on how to measure the time it takes to load a page and the amount of data transferred Any kind of ideas are welcome. What I want to do is: 1. Clear IE cache (i already know how to do this.) 2. Request IE to open a page 3. Get indication when the operation is complete (all available files downloaded). 4. Get to know the amount of data transferred ( and maybe number of files, etc..) I am planning to develop using visual C++. Can i somehow use WinInet to do this I also should be able to view the page in IE. Thanks, - Janne_K Please use the newsgroups at http://msdn.microsoft.com/newsgroups for such issue. OTP Thanks, Ayman Shoukry VC++ ...Show All

  • Visual Studio Express Editions canot debug is this VB?

    Dear all, I am an upsolute beginner in programming - somebody was so nice to write a part of the program I would like to use. And this part does what I expect when I do run it. However since i have more to accomplish I need to use this start and amment it / edit it. For this purpose i did not only import it into VB express but also tryed to debug it to unserstand each line of code. However i does not work. is this code VB to begin with regards and thanks still Hoosier IsDebug = False Set Maps = CreateObject("MSXML2.DOMDocument") Maps.load("Maps.xml") Set FSO = CreateObject("Scripting.FileSystemObject") CurrentPath = FSO.GetAbsolutePathName(".") & "\" ...Show All

  • .NET Development This Problem is Killing Me :@

    Hello, I have a very strabge problem and dont know what to do. I wrote very simple code to varify the behavior of problem in some big project. I run this Server Code in a Console Application on my PC: class Program { private static TcpListener listener; private static int port; static void Main( string [] args) { port = 7000; listener = new TcpListener(IPAddress.Any, port); listener.Start(); Console .WriteLine( "Server Started" ); TcpClient client = listener.AcceptTcpClient(); Console .WriteLine( "Client Connected" ); NetworkStream ns = client.GetStream(); byte [] data = Encoding .ASCII.GetBytes( "Hello" ); ns.Write(data, 0, data.Length); ns.Flush(); Console ...Show All

  • SQL Server How to read a .PST file from a SSIS package?

    Hi everyone, I'd like to read a .PST file (which contains thousands of mails) regardless of Exchange client. Is it possible Thanks for your input SSIS doesn't have an out-of-the-box component to do just that. If there's an OLE DB, .NET or ODBC provider for that data source, you can try that (I'm not sure there is one, but it's amazing to see the wealth of connectors out there for surprising data sources, you might want to check that). Perhaps, another way could be exporting .PST file into some format SSIS can consume (i.e. flat file or xml) and get the data into SSIS that way. And of course, you can always write your own component and plug it in SSIS. ...Show All

  • Visual Studio Tools for Office Adding Series to graph throws exception

    Hi there, I add a graph to a worksheet at design time (Sheet2) and add a little data on Sheet1 (A1:A10, just numbers 1 through 10). I have a button on the action pane that calls the following code. Excel. Range range = Globals .Sheet1.Range[ "A1" , "A10" ]; Excel. SeriesCollection seriesCollection = (Excel. SeriesCollection )myChart.SeriesCollection(missing); try { seriesCollection.Add(range, Microsoft.Office.Interop.Excel. XlRowCol .xlColumns, missing, missing, missing); } catch ( Exception e) { MessageBox .Show(e.Message); } However, it always throws "Return argument has an invalid type".  If I throw this error away, the series is added just as I want, so I can ignore it if I wanted.& ...Show All

  • Windows Forms receive of class udpclient in vs 2003...

    hello, the method receive of class udpclient in vs 2003 will block until receiving some message. how do i set up a timeout Take a look at the Udpclient class's BeginRecieve and EndRecieve methods if you want to receive the message async. ...Show All

  • Windows Live Developer Forums Urgent - Handling Map Click event

    Hi all, I have a strange requirement. I have a small Virtual map appearing on one of my pages. Now on its click I want to open a popup window which will be a bigger version of the small map displayed. For this, I have done following map = new VEMap( 'VirtualMap' ); try {map.LoadMap( new VELatLong(latitude, longitude), 8 , 'r' , false );} catch (err){} map.AttachEvent( 'onclick' , openVirtualMap); This functon openVirtualMap opens a new popup window which conatins the larger map. Now the problem which I am facing is 1. After clicking on the small map, The popup comes up and then the popup suddenly gets minimized. I used event .cancelBubble = true ; I also tried setting the focus ...Show All

  • SQL Server Performance Tuning Advice Needed For This table. Assitance Greatly Appreciated.

    I really need some performance advice here. Machine Windows Server 2003 processors (4) RAM (4 Gig) Hard Drives (4) --c: \system --d: \data volume --H: \data volume --I: \data volume The number of records in this database is about 250,000 I cannot prevent a Table Scan from the Application that uses this database. I cannot re-write or change the application as it is outside of my control. However the Application pulls the data from this table in a "Paged" fashion only hitting the database for 30 records at a time. I am really looking for any advice here also regarding. Indexing this: Table Partitions (4 drives) (4 processors) and if partitioned should the files sit ...Show All

  • Smart Device Development sending/receiving datasets from webservice

    Hi If sending/receiving datasets  from webservice is mandatory in an application , is there any better solution in CFv2.0 in replace of using dime attachments Can i use   XmlSerializer    to convert datasets to bytes and pass that as parameter to webmethods or add to soap attachment instead of the dataset itself Please advice Thanks Gauls   Just declare Web method which takes/returns dataset, framework would take care of the rest. ...Show All

  • Visual Basic Test for Web Availability

    I need to test for availability using a test site such as http://www.ABC123.com/test.htm that returns <html><head><title>TEST</title></head><body><p>TEST</p></body></html> I've tried the My...download but it fails when their is no web access ( the try and catch mechanism doesn't catch the failure). so... if something( http://www.ABC123.com/test.htm ) then ... else ... end if Any help would be greatly appreciated. How about looking in the help - its amazing what information is contained there - including some example code. http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.aspx ...Show All

©2008 Software Development Network