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

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

BuffaloUS

Member List

hhampa
TimFitzpatrickmsdn
yaakov
Ron Moses
Im Greatest
atreat
Ulzii
OSIGeoff
Christian Gram
Jie Chen
Denny B
BobTheBuild
Bernd VanSkiver
Svante Moren
Wickermoon
Stanik
phradecky
Samuel D. Colak
DoomBringer
WN
Only Title

BuffaloUS's Q&A profile

  • Visual C# Anyone used Visual SourceSafe with C# ?

    Hi guys, i am relatively new to C# and the VS.NET 2003 enviroment.I am currently developing a web-based application for my team onsite to allow programmers to rebuild applications into dlls based on the labels they specified on their sourcecode found within the Visual Source Safe DB. The primary flow can summed up like this; 1) user select csproj that they wish to rebuild 2) webpage display a list of all C# files and ALL instances  lab ...Show All

  • Visual C# Type.IsInstanceOfType not returning expected value for Int32[] vs UInt32[] structures

    I'm working on converting an application from VS 2003 to VS 2005 and discovered that IsInstanceOfType is not returning the same answer between the two platforms when an array of any of the signed vs unsigned integer structures is passed. Was the behavior on this changed for VS 2005 Is this a bug Is there something I'm doing here that I should not Here is a sample that demonstrates the issue that I am seeing: int intVal = 5; uint uin ...Show All

  • Visual Basic Questions?

       HELLO! I AM NITESH MENON AND I HAVE SOME QUESTIONS. I HAVE BEEN USING VB FOR 3 DAYS AND NEED HELP. QUESTION 1- When using a web browser is there a way to go back to the previous page in VB (like back in internet explorer) QUESTION 2- When using a web browser is there a way to go back to the next page in VB (like forward in internet explorer) QUESTION 3- How can I display another form other than the main one. QUESTION 4- How do ...Show All

  • SQL Server SQL Beginner

    What is the best way to go about learning SQL   Where should I start This is a great question.  There are many ways you can start learning SQL Server. I find I learn better by doing, others find they learn better by reading. You could start with any one of the following, or even a combination depending on how you learn most effectively. Go take some of the free elearning online at http://www.micr ...Show All

  • Smart Device Development Updated images for Windows Mobile 5?

    Does anyone know when or if the Windows Mobile 5 images included in the Pocket PC or Smartphone SDKs will be updated I suspect the versions in the SDKs are not the same as the versions included with WM5 devices. Thanks, Frank I agree. I would like some sort of information on new downloads or when the updates will become available! ...Show All

  • Visual Studio 2008 (Pre-release) WSE client for WCF service

    Hi, I have a WCF service. I have installed WSE on the same system where WCF is there. Now I generated client proxy for using WSDL.exe for WCF service I am getting the following error: System.Net.WebException: The request failed with HTTP status 415: Unsupported Media Type. with WSE generated client. So can't we use the WCF service from WSE client Thanks, Venkat Pablo has sample on WSE->WCF interop,This may help ...Show All

  • Visual Studio Express Editions want Visual Studia .NET 2005 Express

      Hello   This is Ayan Debnath from INDIA.   Can you, please, send me a copy of - Visual Studio .NET 2005 Express (which includes VB, VC++, C#, WebDev etc.)   They are all available FREE in the website. But, I don't have Broadband service, nor my friends, I couldn't able to download them (every single of them is of 500MB), nor any credit card to buy it from net.   I will be thankful to you, if you ...Show All

  • Visual Basic spectra credit card device prints out the credit amount of previous transaction

    dear all, rarely spectra credit card device prints out the credit amount of previous transaction. generally, spectra run smoothly. Do you have this experience I am not sure this is the spectra error or the POS system passing a wrong value to spectra. my platform are vb6, (win98 or winXp), and access. alex I'm not sure your in the right place for this question. There are a few things which indicat ...Show All

  • Visual C# save a image from the form into .jpeg format

    Hi Using Microsoft.ink...I have to draw a image in the form and save that image in .jpeg format.....So i haveto install Microsoft Tablet pc..... so finally I installed ... and i did a program with 2 buttons in the form namely SAVE and EXIT...... so now when i run this program..i can able to draw a image of my own in the form..now when i click save button...i should be able to save the image in .jpeg format.. BUT I couldnt save.. when i click the ...Show All

  • Visual Studio Team System problems with shared checkout - merge tool is not available

    I am having a significant problem with TFS version control that is making it very unusable in our development environment. We are allowing multiple checkouts. When two developers work on a file and check it in, the Merge option is unavailable and the auto-merge functionality is failing. This makes the product practically useless for projects that have more than one developer. Here is the scenario: TFS set to allow for multiple checkouts. 2 ...Show All

  • SQL Server Putting reusable code into SSIS components....

    If I have standard code for logging, event handling, error handling, etc...How to do you get the standard SSIS components to include this code... I would hate to have to add this standard code, each time I add a component to my package...especialy if I have to build hundreds of them... Thx in advance... RC You have a few options. The 2 worth considering are: 1) Write a custom log provider 2) Build your custom lo ...Show All

  • Smart Device Development Get Image Data of Pocket PC Camera

    Hello... I'm a newbie! I want to know if it is possible to capture the data of a pocket pc camera Maybe with C#... or another language Can you help me Regards, Jacqueline. You should contact Pretec and ask for a camera API. Unfortunately, without an API you can't even get a single pixel from this camera programmatically. ...Show All

  • Visual Studio Uninstalling Add-ins - removing toolbars

    Hi all, I have an addin for VS.NET which I've recently altered to work with vs2005.  I'm having an issue with uninstallation though.  When my uninstaller runs, it runs 'devenv /setup' to remove the toolbars for each of the Visual Studio versions installed.  This works (albeit with ugly consequences) on VS2003, but on 2005 my add-in's toolbar and commands are still present. Some searching around yielded the /resetaddin command, whi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to specify multiple tex coords using D3DVERTEXELEMENT9

    Hi, I'm trying to map a D3DVERTEXELEMENT9 structure to my vertex shader. The shader input struct is: float3 pos : POSITION; float4 texcoord : TEXCOORD0; float4 detRow1 : TEXCOORD1; float4 detRow2 : TEXCOORD2; float4 detRow3 : TEXCOORD3; float4 detRow4 : TEXCOORD4; what I'm trying to do is something like this: D3DVERTEXELEMENT9 vertex[7] = { { 0, 0, D3DDECLTYPE_FLOAT3, 0, D3DDECLUSAGE_POSITION, 0 }, { ...Show All

  • Windows Forms Help with Timer control

    I want to make my program wait half a second until it will continue and I don't know how can I do it. I managed to stop it for a second but I can't stop it for a shorter time. Please help Thanks vbasics and feline&nb ...Show All

©2008 Software Development Network

powered by phorum