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

Software Development Network >> Joel Martinez's Q&A profile

Joel Martinez

Member List

aztec2_step
DevDiver
Thymen
bberti
TheDevilsJoker
Justin-M
Cornel Arnet
jason duncan
djshades2004
Wellnow
okiebug
Frame
Dan Lingman
JustinA1
Leo Ng
RibenaUser
kholling
Isaac Shloss
rmgjohnes
rgrneva
Only Title

Joel Martinez's Q&A profile

  • Visual Studio Team System Cannot connect to sites web service for team foundation

    When right clicking on my team project the 'Show Project Portal link is grayed out'. I have tried to access it through 'http://tfsserver/sites' url but recieve this error: HTTP Error 403 - Forbidden: Access is denied. Internet Information Services (IIS) I do have administrative rights for tfs so I don't believe it is a permission issue. It was working previously after I first installed vsts but during the process of getting everything configured for the team I somehow screwed it up along the way and it is no longer accessible. Thanks Joe, I downloaded the TFS Admin Tool, but when I select the project, I recieve this error: Unhandled exception has occured in your applicaiton. If you click Continu ...Show All

  • Visual Studio Tools for Office CommandBarButton.Picture generates COMException

    Hi All, I'm trying to set the Picture property of CommandBarButton but it generates a COMException with error code -2147467259. Following is how i'm defining the button and adding icon to toolbar. Connect() { ......... object omissing = System.Reflection. Missing .Value; btnCmd = (OFFICE. CommandBarButton )oCommandBar.Controls.Add(1, omissing, omissing, omissing, true ); btnCmd.Caption = "Test Button" ; btnCmd.Style = OFFICE. MsoButtonStyle .msoButtonIconAndCaption; WordAddinAxHost axHost = new WordAddinAxHost (); Image image = Image .FromFile( "C:\\icons\\Image.bmp" ); IPictureDisp disp = axHost.IPicDisp(image); btnCmd.Picture = disp; (Exception generated here) .......... } public class W ...Show All

  • .NET Development whats the difference between X86, X64 and IA64?

    I wish to know what is the difference between the versions X86, X64 and IA64. I have downloaded SQL Server 2005 X86 executable and require ASP.NET 2.0 for Reporting Services. Thanks Vik That is a great question. There is a great explanation for these architectures (processor types) on wikipedia: X86: http://en.wikipedia.org/wiki/X86 X64: http://en.wikipedia.org/wiki/X64 IA64: http://en.wikipedia.org/wiki/IA64 ...Show All

  • Microsoft ISV Community Center Forums Can you tell me why Int(1.4 * 100) = 139

    Can someone help me to find solution: Int(1.3 * 100) = 130 Int(1.4 * 100) = 139  (also  Int(1.38 to 1.49  * 100 ) ) Int(1.5 * 100) = 150 (VBA:Retail 6.0.874) Thanks in advace Hi magicalclick , thank you for replay. It seems CInt() is not "totally fine". Try this: CInt(1.455 * 100) = 146 CInt(19.455 * 100) = 1945 Any ideas ...Show All

  • Windows Forms Can I deploy my application via e-mail using a setup project?

    Can I deploy my application via e-mail using a setup project ...Show All

  • Visual C# How to create short cut in IDE?

    I want to create a shortcut for closing all the documents that are in the VS.NET IDE. As per http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=830598&SiteID=1 , i didn't find any 'Create New Key' option. Can anyone of you help me out in creating short cut Thanks in advance... Keybindings or "hotkeys" can be set through Tools | Options. Follow these steps to bind/create the keybinding: Click on the Tools menu and select Options Expand the Enviornment node in the left hand pane and click on the Keyboard item In the text box labeled "Show commands containing", type "CloseAll" In the listbox below that textbox you should see two commands, "File.CloseA ...Show All

  • Windows Forms tableadapter + connection pooling + corrupt connections in pool

    Hi, let's say we have plenty of table adapters in application and connection pool corrupts pretty often. How nice and elegant with minimal rewriting make those table adapters work without exceptions using this (or if you get the point of the problem and know better one) solution (idea in pseudo code): try { fill datatable using adapter with plenty of usrfull data } catch { looks like our connection pool has corrupten connections, let's clear it try to use table adapter to fill datatable once again } Hi It seems that you are using Asp.Net. Maybe someone has a better answer on the ASP.Net Data Access forums . I 've used this setup several times and i have never had any problems. Are you using st ...Show All

  • Gadgets Sidebar Gadget Clock

    I've developed a clock gadget for the Vista Sidebar. I used the original clock.js, but how do I customize this file so the needle (seconds) moves without interuptions. I hope you understand my question. ...Show All

  • SQL Server Reading a variable in a script taks used as source

    Hi, I'm using a script task as source and I need to read a global variable. I tried stuff I found on the internet, but they all use Dts.VariableDispenser.LockForRead(varName) This gives an errero on 'Dts.' saying it can not resolve it. If you'd like, you can predict what variable you'd like to read or write to, you can use the ReadOnlyVariable or ReadWriteVariable properties to pass in the variable to your script. At that point, you won't need the variable dispenser. Then, you could read the variable by using code as easy as this: LocalVariable = DTS.Variables("VariableName").Value This video may help you as well: http://www.jumpstarttv.com/Media.aspx vid=6 -- Brian Knight ...Show All

  • .NET Development Network Stream Read Progessive Slow Down Issue

    I have an issue with reading a byte stream from a NetworkStream created from a TcpClient. The client application is sending and recieving information from the server app, however as each communication occurs, the time needed to read the first byte from the server slows down exponentially. I have used a loop that continues checking the NetworkStream object's DataAvailable property, and that is where the slow down is occuring; it takes longer and longer for the stream to become available. The server app does not have any slowing to its code causing this error. It loads an .net XmlDocment object and saves it to the network stream, and then writes a 0 byte to the stream. The time growth is exponential, which leads me to believe it has someth ...Show All

  • SQL Server How can I Remove the Screwed-up AdventureWorksDB in SQL Server Management Studio Express?

    Hi all, I downloaded AdventureWorksDB.msi Microsoft and struggled to install it in my SQL Server Management Studio Express 8 months ago. I forgot the AdventureWorks examples and other stuff were in my C:\ drive. Recently, I downloaded a new AdventureWork.msi and executed it to install without removing the old stuff from the "Add and Remove" of Control Panel. Now my AdventureWorks database is screwed-up in my termical PC that is linked with Microsoft NT 4 LAN System!!! Please kindly help and tell me how I can revome the scewed-up AdventureWorksDB in my terminal PC. Thanks in advance, Scott Chang Hi Buck, Thanks for your response. I following your instructions and I got the following: Database to detach: ...Show All

  • Visual Basic Input Data into DB from Windows forms

    Hi there, I have tons of simple troubles here. Simply, because I can't get the data on the textboxes control to feed my data base. I am developing a simple program on VB.NET 2003, using SQL Server 2000 as my database manager. As far as I understand I just have to bound the boxes to the SQLDataAdapter through the dataset. Next I just have to execute the update method of the SQLDataAdapter and there it should work. Now I know for a fact that this works perfectly if I use DataGrid, no problem there. However when I get to the TextBox. Nothing happens, I've tried other methods. Using the properties of DataTable too, the program has trouble with object. I tried to assign values to the parameter generated by the adapter through some of the events ...Show All

  • SQL Server Install SSRS on different IIS server??

    I am trying to keep my production SQL server very pure, and would like to install the SSRS IIS portion on my production IIS server. 1. Does this make sense to decouple the locations (keeping the servers dedicated to a single function) 2. Will MS let me do it I was thinking that I could install just the SSRS portion on the IIS box, but am looking to see if anyone else has experience with this. If I'll be bucking this decision forever... let me know your thoughts... Thanks! Dan I'll answer this myself from most recent experience.... My environment looks like this: SQL Server 2005 Standard x64 in Windows Server 2003 (Box 1) IIS Server x64 on Windows Server 2003 (Box 2) ...Show All

  • .NET Development XML - DataSet 101 Please

    I'm just starting up a project that really is suitable for a little XML datastore. I'm familiar with SQL Server from VB & VBscript. But this project is only my second in C#. I'm using Express. Although the help file mentions adding an XML Schema to the project that isn't actually available in the IDE. I looked through the documentation but can't find anything connecting XML to a DataSet. So herewith some questions: Is it necessary to have an XML file initially or can a design time datatable be sufficient If I have an XML file, how to I get it connected to some kind of data access scheme in C# Can I treat it roughly as I might a dataset from a database or must I access it via the XML DOM A pointer to a tutorial wou ...Show All

  • Visual Studio Express Editions how did u learn to program with C#?

    well title says it all, with what, what was your first program or so maybe too :) cos atm i want to try and program things i totally cant, so im wondering how u learned C# HI, If your quite new to pragramming, understand the basics of programming. Its the foundations of your learning that would help you understand how to approach a problem in programming... For me, my first program in C# was to create a Password Manager. It enabled me to learn ADO.Net and other stuff from C# that would let you understand how C# works... So I suggest to let yourself have to finish a single program. You choose it, make a program that might be usable with your friends. With that you would be learning things in th ...Show All

©2008 Software Development Network