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

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

fusi0n

Member List

CSharpNewbie22
dayrinni
Gazcelt
Keith Hill
Karl Hulme
raviparthan
VSB
MikeEllerton
Nick Cardullo
RobDever
Duane Douglas
J1mlad
martinabc
Jagdish Kumar
Arjun B
twoot22
kiko_kiko
87jerome
Luis Esteban Valencia Muñoz
sathyank
Only Title

fusi0n's Q&A profile

  • Visual Studio Team System TFS Warehouse error

    Help please! My TFS Warehouse work for about 3-4 days, then it just dies and doesn't refresh itself anymore. Thi is the error o get in the Application Event Viewer: TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 20/01/2007 15:33:48 Machine: CONTROLLER Application Domain: /LM/W3SVC/3/Root/Warehouse-3-128137800104767983 Assembly: Microsoft.TeamFoundation.Warehouse, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a; v2.0.50727 Process Details: Process Name: w3wp Process Id: 4608 Thread Id: 4604 Accoun ...Show All

  • SQL Server NEED HELP with Windows Installer GIVING ERROR: 1067 when INSTALLING

    I know this problem has been resolved, but it sure as hell hasn't for me. For whatever reason, the operation aborts every time I try to install or uninstall something. The same thing occurs whether installing software or using Add/Remove Programs . I've tried everything and read everything for the last 6 hours. It's 2:45am where I live. I'm pist. Someone, please, help me... It gives be Error: 1067 for operation aborted. I've messed with every nook and cranny, even to teh point of almost adding a new string to the operation so as to bypass it. It didn't work by the way, because there was another file that was still there and had the intended name. I've checked teh settings as well. All is good. Tell me what I am doing wrong!! ...Show All

  • .NET Development [C#2005] Obtaining the "default gateway ip"

    How can you get the default gateway ip in c# In my previous post we got the wan from whatismyip.com.. I can check the lan ip with : String strHostName = Dns.GetHostName(); IPHostEntry ipEntry = Dns.GetHostEntry(strHostName); IPAddress[] addr = ipEntry.AddressList; txt_lanip.Text = addr[0].ToString(); BUT I NEED TO GET THE DEFAULT GATEWAY as when you do ipconfig : see below: THANKS AGAIN ! To all (but Ill be back only in the morning... I zzzzz a lot now!!) IP Address. . . . . . . . . . . . : 192.168.0.10 Subnet Mask . . . . . . . . . . . : 255.255.255.0 Default Gateway . . . . . . . . . : 192.168.0.1 See GatewayIPAddressInformation class in System.Net.NetworkInformation Namespace. and See it's ...Show All

  • Visual C# Dynamic Query in Visual C# 2005 !!!

    Hello everybody, I'm trying to change my Query at runtime. Actually, i have a Query in my TableAdapter and i need to change it's SQL according to what user enters on the application form. Does anybody know how I may do it Thanks in advance. Mathew You mean like public string AssembleSQLString( string fieldName, string tableName) { string s = "select " + fieldName + " from " + tableName + ";" ; return s; } You'll need some error checking, of course ...Show All

  • SQL Server How to execute ssis package from stored procedure

    how to excute ssis package from stored procedure and get the parameters back from ssis into the stored procedure. I have a SSIS package that does data query based on the Fuzzy Logic. Parameters are passed to SSIS and SSIS returns the recordset. Now I have a Java based web application that calls the procedure for many things, one of the things that procedure wants to do is extract records from various application databases based on fuzzy logic. I know SSIS is normally used to do ETL stuff but what if I use its good features to make the usage of SSIS more broadbased. Another thing which comes to my mind is, how about if multiple instances of a same SSIS package are running at the same time. I mean same SSIS p ...Show All

  • Visual C++ Compile C++ code To .Bin File

    Hi. can I compile C++ code with VC++ or VC.Net to a BIN file How thanks. Student_I wrote: thank you very much for your answer! about "ST20 ToolSet" I said that it doesn't generate OPTIMUM binary code. I will Search about *.bin & VC tools for my project. thanks "Simple Samples","Marius Bancila ", "Brian Kramer" What microcontroller is it From my knowledge (I work in a company that does a lot of embedded programming), there are very few C++ compilers that target embedded systems. Most embedded programming is done in embedded C. Basically, there are C compilers for most of available microcontrollers. So, question is, do you actually intend to use C++ or C ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Stereo Vision

    Can you develop stereo vision games with XNA for the Xbox or Windows Sure can. without shutter-glasses/VR-helmet, you can try the good ol' blue-and-red glasses trick. Just position and point your camera properly every other frame. Maybe alpha blending the entire frame to get the proper color http://www.cs.mcgill.ca/~gstamm/P644/stereo.html I had a pair of SimulEyes LCD shutter glasses from early GDC, it was very cool playing Descent in full 3D! I wish there are more games supporting the 3D glasses! http://www.summittnewmedia.com/paul/nonfiction/vrgame3.htm ...Show All

  • Microsoft ISV Community Center Forums Using parts of a cell value as a variable?

    I am working in Excel macros. I want to find a cell with a specific value and use that cell's location to save the row of data it is on. For example find a cell with the number "3" in it. Lets say it is in cell "d6" then copy the cells in that row that have data. as in "b6 through h6" then next time I find the number "5" in cell "d10" then copy the cells in that row that have data. as in "b10 through h10" What I am trying to do is : Find a part no# in a worksheet. Say in column d Then copy the data on that row for that part no# . Then insert it to another sheet. Then start over with a different part no#. Hope that helps the understanding. ...Show All

  • .NET Development passing parameters on System.Timers.Timer

    Hi. I'm using J# in order to write a few web services. I need to use a timer in my code. The System .Timers. Timer is good for me, but the problem is that I need to pass a parameter to the eventhandler. I couldn't find how, my only solution was to inherit the timer and add a property to the inherited timer and when it elapsed, I used the sender in order to get my parameter. Is there a better whay of doing that A more generic solution is that you give the class that implements the Elapsed event handler a reference to the class instance that supplies the property. You'd typically do that by giving its constructor the reference as an argument. ...Show All

  • Visual Studio Changing designer generated file for embedded resources

    Hello, Is it possible to rename and change the path of the designer generated file that is created by the ResXFileCodeGenerator tool I'm working on a library Project that consists of several C# projects, each one representing a major namespace. I would like to keep the string resources that need to be translated in a common directory, so the build server can easily pick all culture specific resources in that directory and create satellite asssemblies from there. I'm trying to make this directory structure: ProjectRoot resources MyProject.Strings.resx MyProject.Namespace1.Strings.resx ... source MyProject MyProject.csproj MyProject.Strings.resx (link) SR.cs MyProject.Namespac ...Show All

  • Visual Basic Can't kill Excel.Exe after using Excel component in vb.net

    Hi , I'm using Excel.Application generating excel report via vb.net 2003 , the problem is excel.exe process reminds even after generated excel report closed . I have been using the followed code to close or dispose the process , but it does'nt work either. thenks Dim procList() As Process = Process.GetProcesses() Dim k As Integer For k = 0 To procList.GetUpperBound(0) Step k + 1 If procList(k).ProcessName = "EXCEL" Then procList(k).Close() procList(k).Dispose() End If Next you could try this Public Declare Function GetWindowThreadProcessId Lib "user32.dll" ( ByVal hWnd As IntPtr, ByRef lpdwProces ...Show All

  • Visual Basic Uploading files to the internet

    Hello again, Anyone have a clue on how to have VB create a text document and upload it to the internet... example: File Name: Location.txt Text in document: 222 this will be uploading once or twice a second... so if the location moves from 222 to 210 then the text in the document will be 210 instead of 222... so VB needs to create its own text document repeatedly... and then upload that text document to the internet... Thank you for any help, moveit124 Correct me if I am wrong, but you are saying that you want to append data to the file You can do this using DownloadFile, FileStream, and UploadFile. This, however, would be extremly inefficent, and would get progressively slower as your file increased in size. Is it possible f ...Show All

  • Visual Studio Express Editions pulling data from one table then saving to another?

    Hello World, As the title suggests im populating textboxes and comboboxes from a table in an ms access db, I have created another table in the same database and i would like to save the data im pulling from table1 to table2.. this means that my data will be repeated in the new table so is probably not the best idea performance wise so im stuck on how i do this i need the data in table2 (invoice data) to work together with table1 (customer data) im I doing this the right way or is there an easier way to go about this Any help in this matter would be great :) I understand the basics of the code but the insert and the reference to an sql connection, is that for MS Access as well Thanks! ...Show All

  • Visual Basic RESX Question

    Hello I am looking to place 2000 graphics, text and sound files in a resx file and compiled into a dll so they can be recalled by my program (in the same solution) at will. It's not really a problem, though I'm wondering if there is any kind of physical limit to the amount of resources The reason why I am asking this is because I have 2000 loose files and if one goes missing... It would be best to place them somewhere, like a dll or a compressed file... Regards Jason The actuall size of the file is limited to disk space availability, however there will come a point in which the size of your file will cause performance problems when retrieving data from the resource file...you may find it easier and have better perfor ...Show All

  • Visual Studio Interactive Mode pages

    I have the interactive page size set to 8.5 X 11, just like the actual page size. Shouldn't the page #s match in this case Or at least be reasonably close It seems like the interactive mode doesn't stop for the page when it should. I have several reports where they are drastically different and there are no toggle regions. One problem I just encountered is a table with a group in it. I have set the group to page break at the end. If the next page 'fits' on the interactive 'page' it doesn't actually break, whereas print layout shows this correctly. This seems like a bug to me since it is an explicit page break. ...Show All

©2008 Software Development Network