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

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

Sarguna

Member List

Clayton DuVall
seprice
user__2006
Paulustrious
magicalclick
FM2
cybertaz69
dakoris73
DavidP5
T.Vargek
ChristianBG
The Last Muskateer
YWLMB
Alessandro Camargo
mordred99
GlenAtMotorola
Karl Hulme
WolframW
qrli
dmouser
Only Title

Sarguna's Q&A profile

  • .NET Development Int64.Parse() and Hex Values

    Hello, I have a question regarding the way a hex string goes into an Int64. Does the Parse method assume that the string is in big endian format I have a problem I am trying to figure out and it basically comes down to, when I put a string of hex values into a Int64 and then use a bit converter to bet a byte array from it, it appears to be in reverse byte order when it comes out. Does anyone have any clues on why this is. Thanks Isaac -- Yes, makes sense that it trips you up. From seeing the bytes in the file to going to the hexadecimal representation to putting it back into an integer to seeing the bytes it produces is one mental jump too many for most of us. Grokking hex and byte order makes you a proud new member of the in-crowd. ...Show All

  • Software Development for Windows Vista Dual layer

    Does IMAPI support writing to DVD dual layer Are there any example clients for that for both files and ISO image burning (for ISO images there's a DVDburn tool at nt resource kit, but not sure if it supports vista) You are able to use Live UDF on DVD+/-R disks as long as you leave the session open. To eject the disc and still be able to continue adding content on DL discs, you need to disable session closing in the drive properties, Recording, Global Settings. If you leave the default option, Live UDF will work on blank media, but you will not be able to add data to DL discs after the first eject. ...Show All

  • SQL Server Is anyone using ActiveCipher by RedCraft Software?

    I am considering this third party encryption tool for use on SQL Server 2000 and would like to hear from someone who is using it in a production environment. Thank You There is none that I can find. I'm just looking for another SQL Server Professionals opinion on the software. Could you recommend another Microsoft Forum that might be more appropriate ...Show All

  • SQL Server Connecting to Oracle DB using SSIS

    Can anybody point me how to connect to an Oracle DB using SSIS I use the ole DB Connection Manager and pick the Microsoft OLE DB Provider for Oracle but it doesn't seem to work. Any suggestions are greatly apprecaited. Thanks. Sam. Hi Jamie, I have the same problem now in production environment. I have to connect to oracle db from production too and I downloaded the client tools on my 64 bit windows server 2003. I edited the tnsnames to have an entry. When I try to connect to oracle, it gives me an error saying client and networking tools not installed, but I did install them. Can you please help me Thanks. Sam. ...Show All

  • Visual Basic variable accessibility

    hi, i would like to know whether where should how declare a variable which can be use and accessible by all the windows forms and classes in the same project. hiw can i declare it is it just used the keyword "Public" that is true. You can also pass variables from one class to the other by declaring a public property and setting the variable via that for the calling class to use, or pass it via constructor of the calling class so it can set it in its on private global variable perhaps these will help you in some way: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=700821&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=835382&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx ...Show All

  • Visual Studio 2008 (Pre-release) type inference

    Theres been some comments in this forum about some interesting developments to come on the type inference front. Any chance of getting some information on what is being considered/done, and when we might expect to see it Hi there, We are looking at one problem with type inference of generic methods, which is that all inferences for a given type parameter currently have to agree completely. For the Join operator in LINQ, for instance that has some consequences: IEnumerable<V> Join<T,U,K,V>( this IEnumerable<T> outer, IEnumerable<U> inner, Func<T,K> outerKeySelector, Func<U,K> innerKeySelector, Func<T,U,V> resultSelector); Here the two key selector arguments have to have exactly the sa ...Show All

  • Visual C# How do you display a number in textbox as Hex value.

      I have 3 text boxes.  The user will enter hex numbers in textBox1 and textBox2.  I want to add them together and display the HEX sum in textBox3. This code ALMOST works.  It displays the answer in DECIMAL.  How can I display it in HEX   Thanks. int mynum1; int mynum2; int myanswer; mynum1 = Int32 .Parse(textBox1.Text, System.Globalization. NumberStyles .HexNumber); mynum2 = Int32 .Parse(textBox2.Text, System.Globalization. NumberStyles .HexNumber); myanswer = mynum1 + mynum2; textBox3.Text = myanswer.ToString();   //this displays in Decimal.  How to Display in hex textBox3.Text = myanswer.ToString("X") - or "x" for lower ...Show All

  • Visual Studio Tools for Office VSTO 2005 SE - Outlook 2003 Addin - Deployment problem

    I followed every point shown on: http://msdn2.microsoft.com/en-us/library/2ac08ee2(vs.80).aspx On my machine with WinXP prof, VS2005, addin works fine. But on the other machine (test machine, WinXp Prof, VSTOruntime, Office 2003 prof, O2003PIA, .NET FW.2.0) is didn't want to start. I used setup (created with VS05 O2003Addin solution) to install my plugin. I double checked every registry entry and they are fine to me. Could anybody tell me what's wrong Please give me any idea where to start. Hello, If you are using the default Setup project that is automatically created with your add-in solution, be aware that the setup package built from this project does not grant full trust to the add-in assembly. Y ...Show All

  • SQL Server where can i put my stored procedure

    hello friends i am doing databases shrinking.i take connection as as admin of sql. every thing is write i need to shrink all my databases. i written one stored procedure ALTER PROCEDURE [dbo] . [SHRINK_SP] ( @TABLE varchar ( 15 )) AS SET NOCOUNT ON ; EXEC ( 'DBCC SHRINKFILE (' + @TABLE + ', 0)' ) EXEC ( 'DBCC SHRINKTABLE (' + @TABLE + ', 0)' ) but i dont know where to execute this stored procedure if i execute this stored procedure in one datbases its working remaing thigs its not working how to solve my problem anybody help me.. thanx thanx for your response joeydj i put this stored procedure in Master table right can i ask you some thing about stored procedure can i w ...Show All

  • Windows Forms Minimum Height for Form?

    I can't seem to get a form of mine to draw at a height of 16 pixels. It always seems to add on an extra 16, I have FormBorderStyle set to None, not sure what's causing this I took a look at this thread and it might give you some kind of answer.. It's in VB but it should work in the same way in C#. I use C# myself, not VB. :) http://forums.microsoft.com/msdn/showpost.aspx postid=127429&siteid=1 (Scroll in the bottom of the page to see the right ( ) answer) Regards, Timo ...Show All

  • Windows Live Developer Forums VE Map object as a user control

    Hi, I had created the VE Map object as a user control and had 2 instances running in the same page, the pushpins i created i had done it with unique ids ( var pin = new VEPushpin('<%=myMap.ClientID %>' + k, new VELatLong(lat, lng),imgPath,'', ((html))); ) still when i do the mouse hover on 1 map object both the objects refresh has anyone encountered this problem is there a fix ram Another question: 1) Are you trying to put up two user controls, and within each user control exists one instance of VE 2) What do you mean, "it stops working" 3) What exactly do you mean by: "both objects refresh when I hover over it" Both maps reload and populate themselves with pu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. question on creating custom background

    Hello all ^^ I was wondering if anyone would be so kind as to let me know how to create my own custom background into my game. I used The Gimp to make kind of a Space-looking .png file, but im not quite sure as to how to go about replacing the CornFlowerBlue color background with the picture. Any help would be much appreciated. Thankyou! ^_^ A correct way of doing it would be: Create a SpriteBatch, a Rectangle, and a Texture2D in your class. In the class constructor and the Window.ClientSizeChanged eventhandler, set the Rectangle to (0, 0, Window.ClientWidth, Window.ClientHeight). Load the Texture2D from the file, and create the new spritebatch in the class constructor. In the drawing part, aft ...Show All

  • .NET Development Acces Database

    Hi,   I'm trying to add some variables to an access database that has one table with three columns. The code doesn't produce any errors but when I open the database file there is no data. Here's my code "data" as an instance of a dataset called RDXInfoDataSet   data.Table1.AddTable1Row(type, extn, linetype) data.Table1.AcceptChanges() data.AcceptChanges()   Any ideas why it's not working There is an FAQ on this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=427451&SiteID=1 ...Show All

  • .NET Development Name conflict due to generic types and nested classes in web services

    Hi, I have a simple 2-tiers (client+database) application with simple Domain Model objects The Data Access Layer is abstracted via Data Mappers which use Data Transfer Objects to communicate with the Domain Model objects. My Domain Model objects are declared this way : public class City /* Inheritance removed for brevity...*/ { private string _Name; private string _ZipCode; public struct DataTransferObject { public string Name; public string ZipCode; } /* Constructors, methods, properties removed for brevity... */ } I have a generic class DomainModelDto<TDto> contains the actual data that is transfered between layers via DomainModelDto<City.DataTransferObject> . Everything is fine so far ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. exporting x and fbx files

    Hi there chaps - I'm fearful that this question has been asked before but lots of searching could not find it. In essence - if I export a model in 3D studio Max (version 7) in both x and fbx format, neither displays using the (excellent - thanks guys) 3D sample code. That's not entirely true - the x file displays but completely white, the texture barely visible. The fbx file has the right texturing but many of the polygons are linked incorrectly, or have wandering vertices. The fbx is in some sort of binary format incidentally. Now, my question after all that intro - what exporters do people recommend for 3dsMax - for either FBX or X files Or is there some very stupid option I'm not turning on (eg - X file exporter's hidden Tipp-Ex all ...Show All

©2008 Software Development Network