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

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

UncleSam89

Member List

tee_user5
Kevin Hoffman
publicENEMY
MatrixResolver
Umesh_DB2
danny1999
Shahar Prish - MSFT
hotsauce
tirengarfio
DLdfrd
spotluri
Behnam Fagih
saarar
Bill Punch
Libol
Leaf.
Douglas R
Anmol Ranka
smtraber
Kevin Rathgeber
Only Title

UncleSam89's Q&A profile

  • SQL Server String truncation using sp_OAGetProperty under SQL Agent

    I have a stored procedures that uses sp_OAMethod and sp_OAGetProperty to download a string from a website. When I run the proc in query analyzer window, no problem. When I run the proc under SQL Agent, if the string is longer than 4096, it automatically truncates down to 512. Why is this and how can I fix it ...Show All

  • Smart Device Development Deployment and/or registration failed with error: Error writing file '\Windows\NETCFV2.ppc.armv4.cab'. Error 0x80070070

    I have an HP compaq nc4200 that has barely anything installed on it. I wanted to do a simple C# device application and deploy to it. Anyhow I wanted to do a simple application and deploy to it since I keep having problems with the emulators not connecting to my localhost web service for data. Somehow, when I deploy this application to VS 2005 emulators, I get this error every time. Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '\Windows\NETCFV2.ppc.armv4.cab'. Error 0x80070070: There is not enough space on the disk. I have a doubt with the error message "There in not enough space on the disk", since my 'C drive' have 10.6GB available. Furthermore, i had downloaded the dotnet fra ...Show All

  • Visual Basic How to programmatically close IE browser using vb.net

    I am opening report in pdf file through Reporting Services (RS) (SQL 2000 RS) through IE explorer 6.0 (meaning, it will call to C:\program files\internet explorer\internetexplorer.exe first, then it will go through RS to grab the report and display in pdf format). it opens fine when I am on window 2000. when we moved to Win 2003, same code, it still opens the report, but it would also accompany an IE Action Canceled message. I wanted to embbed a few lines of code to close the IE browser programatically using vb.net (after the code that display the report), I am desperately seeking for a solution on this, any help would be greatly appreciated. Thanks very much for responding a ...Show All

  • Visual Studio Get Full Path for Project Item...

    I am trying to write a reference that specifies (among other things) that an item can only be added to either a very particular folder (i got this part by checking the ProjectItem.Name property) OR any folder contained within it. Im having a hard time getting this second part to work. I tried using the Path.GetFullPath() on the ProjectItem to be able to analyze the string returned to see if I am nested inside my particular folder, but this doesnt seem to work as the Path.GetFullPath() call returns back a path to the debug folder.... probably a simple enough question, but Im sick of fighting with it so please help! thanks in advance. Actually, Im sorry... took me a day or two to get around to coming back to put this back in (i was us ...Show All

  • Visual Studio Error installing the VS2005 template

    Hi I'm presently having VS 2005 professional full install and sql server developer edition installed on my machine. The problem I have is that when ever I try to install ASP.NET personal design template web Application I get the following error: Installation stopped because the directory for the ProjectType value did not exist. The project type is invalid for your installation of Visual Studio. Plz help Bramley If you change "MyDocument" setting, after you install Visual studio ! You will get this error! You can create directory C:\Documents and Settings\XXXXX\My Documents\Visual Studio 2005\Templates\ItemTemplates\Visual C# C:\Documents and Settings\XXXXX\My Documents\V ...Show All

  • Visual Studio Tools for Office How can I watch network communication triggered by outlook 2007 ?

    How can I watch the network communication (for example XML request/response messages) which is triggered by outlook 2007 As a concrete example I would like to see the XML data that outlook will request from a sharepoint contact list, when you at a sharepoint site has chosen a list and the action "Connect to outlook". ( In this particular sharepoint example, someone might say that I should simply watch the sharepoint web service URL in a browser, but I do not know which URL that outlook will request, since when I rightclick the properties of the added sharepoint contact list in outlook I can not find any URL. ) TomJ72, this forum is specifically for VSTO questions/issues. You may have better luc ...Show All

  • Visual Studio Express Editions some Vs 2005 express problems

    Hi 1.Is there any child node in treeview 2.How can the text in the rich text box always show at the bottom while receiving some income msg from hyper-terminal Thanks hi, i saw you had three questions in one thread plz separate your questions and make a thread for each topic anyway you can save the last message in a variable , if the new message is the same like the previous msg return something like this dim lastmessage as string = nothing Sub SetText( ByVal [text] As String )         ' InvokeRequired required compares the thread ID of the         ' calling thread to the thread ID of the creating thread. ...Show All

  • Visual Studio Express Editions Compile and Build Project from command line or programatically

    I would like to compile/build a complete project from the command line or do so programmatically. What are the command line instructions and how can I do this from another application good question, I am unsure actually. I guess if that project has a reference to the dll library then it should be good. otherwise look at the compiler options to see if there is a way of adding additional files into the compile process. I've actually never ever done this before so I don't know much in this topic :-) Best bet is to start a new topic and post in the .NET base class library: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=39&SiteID=1 ...Show All

  • SQL Server extending function: view dependencies

    So I have a number of separate databases on my SQL 2005 Server. I also have a number of Reports in SSRS. Many of the stored procedures in the various databases reference tables, functions, and stored procedures in other databases on the same server. How can I accomplish the effect of right clicking on a stored procedure for instance, clicking view dependencies, and having everything show up in that list, not just the items in that DB It is all stored in the database in one form or another, but I must be missing some crucial piece to integrating it all together. Note: I did not design this system, just maintaining and modifying existing items. There are no schemas to speak of. SSRS will most likely move to a dedicated server ...Show All

  • Visual Studio Express Editions How to disable, and hide a single Tab Page

    I have a problem on my program. I have a Tab Control consist of 3 tab pages. I want to hide or disabled the second tab, How can i do it Please help me:( hi there, i am having a similar problem, however you solution does not seem to work. The tabpage.enabled property does not exist in code or in the designer, so it cannot be disabled regards, david ...Show All

  • Visual Basic Save Contents of Textbox into a .txt File

    On my form, I have a textbox that a user can type in. I need a way to save the contents of the textbox into a text file to a path ( \\server\folder\folder ) AND overwrite an existing text file. Does anyone know a way to do this with both option strict and option explicit turned on Thanks in advanced! This is the complete form I have. I have a textbox and a button on it. Imports System.IO Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click File.WriteAllText(sfd.FileName, TextBox1.Text) End Sub End Class ...Show All

  • Visual Basic How to retreive network adpater information from remote machine

    Hello, I am completely new to the Visual Basic langauge -although I know VBScript pretty well. I am working a making a tool that connects to a remote machine and gathers some statistics from the network adapter. However, I have no clue as to how to connect to a remote machine. I tried looking for code examples, but I couldnt find anything (which doesnt suprise me because I dont really know what to look for) In VBScript I would probably use WMI -is that also true in VB If so, how do I use it in VB If not, what should I be looking at Any code examples or help that you can give would be very appreciated Regards, Jeremy here is some code which displays the Network Adapters' names ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Quaternion Multiplication is Broken

    I believe that quaternion multiplication is broken. While you write matrix multiplications (to happen in order) as A * B, you have to write quaternions the other way around, qB * qA. I was chasing a "bug" in my animation code for the longest time before I found this! Here is a code sample that clearly shows the bug: class Tester { public Tester() { Matrix m1 = Matrix.CreateFromAxisAngle(new Vector3(1, 0, 0), (float)(Math.PI / 3)); Matrix m2 = Matrix.CreateFromAxisAngle(new Vector3(0, 0, 1), (float)(Math.PI / 3)); Matrix m3 = m1 * m2; Quaternion q1 = Quaternion.CreateFromAxisAngle(new Vector3(1, 0, 0), (float)(Math.PI / 3)); Quaternion q2 = Quaternion.CreateFr ...Show All

  • Visual C# how to send message between processes in C#

    last time, i ask a question, ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=875212&SiteID=1 ) and Michael Taylor give me a good answer for it. but there is still some problems. it's my question: i want to open several files by using the same programe, just like ultraEdit, when open a new file, it check whether ultraEdit is in processing, if it is, then open the file use the ultraEdit process with a new "tab". so i wonder how to achieve it in c#, and i have use follow code to check whether a program is in processing and get the process. And then, how can i open the new file use the exist process private static Process RunningIntance() { ...Show All

  • Visual C# use panel array item for splitcontainer panel

    for initial prototypying I added individual panels to splitcontainer panels to use as a container for controls within each side of the splitter. PanelTop and PanelBottom. This worked well and I could handle Panel events private void PanelTop_MouseClick(object sender, MouseEventArgs e) { } I realized I really need an array of panels which I cannot create at designtime. Panel(1), Panel(2),Panel(3),Panel(4) which will be the topleft,topright,leftbottom and rightbottom panels. how would I create the events for the panels now that they are part of an array Thanks, -Greg Hi, try doing it like this: // if you have the same event handler for all panels: (in the handler you could compa ...Show All

©2008 Software Development Network