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

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

haihtomy

Member List

stefciu
Tiarnan
AE_Cory
Stephen S.
bankit
basedissonance
Nirajk
Gurmeet
Nefer-Ra
L O
Senkwe Chanda
Kardi
divineleft
DCollins
SavasCilve
Chigrboy
ladycmac
David Tatton
Terry B
Sigge
Only Title

haihtomy's Q&A profile

  • Visual C++ Problem: "Placement new" does not compile in Visual Studio 2005...

    The following program: #include <malloc.h> class TestClass { public : TestClass() { }; ~TestClass() { }; }; void main( ) { void *pMem = malloc( sizeof (TestClass)); TestClass *pTest = new (pMem) (TestClass); } Generates the following error: 1>.\test.cpp(14) : error C2660: 'operator new' : function does not take 2 arguments Am I doing something wrong thanks, f- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Conecting my computer to Xbox 360

    What are the steps to do that because I typed in my conection key and everything but still it cant connect to my computer The only issue I had when trying to connect was distinguishing between a 0 and O in the connection key, especially when there wasn't a O and 0 in the same key as that makes it more difficult when you can't compare them. ...Show All

  • Visual Studio Guidance automation toolkit(February 2007 CTP) is unable to be installed

      I downloaded GAX(June 2006 CTP) and GAT(February 2007 CTP). GAX was successful to be installed, but GAT is failed. I searched the same problem on the net and someone said it's the old GAX version has been installed, however I have not installed any version before. I logined as a administrator to install them. Visual Studio.net 2005 version is: RTM 8.0.50727.42 . Window XP sp2. The prompt imfromation as follows: "Unable to get installer types in the D:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\MetaGuidancePackageInstaller.dll assembly. --> Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information". The installation log as ...Show All

  • Visual FoxPro Problem trying to create an Encryption Library

    I have followed the example for creating a C# Encryption Libary, but receive numerous errors with regard to no overload method ' ' requires 2 arguments, I have verified that my code is exactly as the example provided by microsoft and found no difference. Has anyone ever tried this code and had problems. Is there any other code to create an encryptoin library in C#. I would appreciate any and all assistance. I am responsible for figuring out how to encrypt the connection string for our web config files in Asp.net page. (we dont' have the .net 2.o framework, we are using Visual Studio 2003 with 1.x framework Thanks Heather Yes if have enc.IV = IV; in my Encryption Class. With the exception of yoru post outlining a ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Beta 2 sneak peak

    The XNA guys did a demo of the beta 2 bits at Code Camp Seattle today. See my notes here http://www.thezbuffer.com/articles/424.aspx Please honour my request not to ask follow up questions here until the beta releases - I wrote everything that was public so its unlikely that anyone will be able to answer any of your questions until then. See also pictures of the demo code: http://www.thezbuffer.com/articles/426.aspx http://www.thezbuffer.com/articles/427.aspx Thanks for the sneak peak! There are some very interesting changes. I'm very excited to get my hands on the new stuff. Also shows how much the dev team was listening. Hats of to them!! -Jeff ...Show All

  • .NET Development Socket transfer of TIF results in unreadable TIF file.

    Hi everyone, bare with me, this is my first post here. Currently, we have a program that connects to a server and retrieves three types of files (TXT, CSV, and TIF). The program now needs to be in VB .NET without changing the server code. In my code below, I can successfully receive textual files (TXT and CSV) files byte-for-byte without a problem. The resulting files work perfectly too. However, when I try to retrieve the TIF, my program outputs the correct number of bytes but the file is corrupt. I was wondering if anyone can point me in the correct direction. <CODE> Public Function readFile(ByVal strBuff As String, ByVal fileSize As Int32) As String Dim returnData As String = "" 'Holds returned data from s ...Show All

  • Visual Studio Can't install 90 day trial version VS 2005

    I have downloaded the trial version of Visual Studio 2005 twice. Each time it downloaded as an image file. Trying to open the file fails. There is no response at all. Do I need to download an installer According to the MS website, launching the file should bring up an installation wizard but this doesn't happen. What gives The problem at present is that simply attempting to download  results in a 1.13 KB (1,165 bytes) IMG file, instead of a 2Gig file. This is a problem with Microsoft's site...I've tried it on remote computers all over...same deal   Try downloading Visual Studio Pro 2005 90-day trial - you'll see ...Show All

  • SQL Server package index server

    I keep getting a message when I try to do a system update for my lenovo computer, which prevents me for using this utility. "the package index server is temporarily unavailabe, please try again later". Surprisingly, Lenovo could not provide me with any assistance in this matter. ...Show All

  • Visual Studio Express Editions How do I create a button to spell check a document?

    I need to create a spell checker button for my text editor. Oh, and it would help greatly if someone could tell me how to print a document It's a rich text box, so it needs to print formatting. "Tall Dude's approach works well if you have word installed on your machine as it is using the in built capability of word's spell checker." I'd never recommend it. ...Show All

  • Visual Basic Fax services in Windows

    Did .net enable to send fax through the Microsoft Fax services How is the concept look like,basically i would like to create a program which retrieve a data from SQL SERVER and fax it to the receiver. kangkang, The following Microsoft Visual Basic code example sends a fax. Note that if you were to convert this Visual Basic example to Visual Basic Scripting Edition (VBScript), you would have to use an enumeration constant instead of the value fptHigh. Private Sub Form_Load() Dim objFaxDocument As New FAXCOMEXLib.FaxDocument Dim objFaxServer As New FAXCOMEXLib.FaxServer Dim objSender As FaxSender Dim JobID As Object 'Error handling ...Show All

  • SQL Server Exporting Database Diagrams - SQL server 2005

    Hi, I'm trying to export my Database Diagrams to a new database. I've managed to do it by right clicking on the database->tasks>export data and followed the wizard instructions. The tables and Data Diagram show up fine on the new database however all the primary keys/relations/ are not present. Is there a way of copying the whole diagram to include all the primary keys and table relations Thanks :) There is more info here: http://msdn2.microsoft.com/en-us/library/ms171977(VS.80).aspx But it sounds like there may be some SSIS options you need to set. Which destination are you using And why export the diagram ...Show All

  • SQL Server Distributed Transactions between servers on different VLANs

    Hi there, I have two SQL servers, SERVERA and SERVERB. They are on two different VLAN's within our corporate network. They are physically only about 5 feet apart. SERVERA is SQL2005 while SERVERB is SQL2000. I am running a distruted transaction as a result of an insert on SERVERA which then causes a Stored procedure stored on SERVERA to insert a record on a table on SERVERB. I know my syntax is correct, 'cause I can get the Process to work between two servers (one SQL2000 and the other SQL2005) on the same VLAN. But when I run it in the problem environment, I get the following error message: SQL Execution Error Executed SQL Statement: INSERT INTO Tablea(recordid, recordtext) values(3, 'Testagain') Error source: .Net SQLClient D ...Show All

  • Visual Studio Tools for Office Is Visual Studio Tools for the Microsoft Office System Supports web applications

    Hi, This is Veeru, I need to catch the word application close event from the ASp.Net Is it possible. or else i need some functionality like submit child page to Parent page. i.e., submit the content in the word document to web page. And let me How to use Visual Studio Tools for the Microsoft Office System in webapplications. Please give some solution for my task..... Thanks & Regards, Veeruu There are a couple of ways you could do this: You could upload the documents and read cached data out of them using ServerDocument or you could write a smart client and have the client simply post data to the server. These two samples start to show you how you might do this in y ...Show All

  • Visual Studio Express Editions modules

    i have created a module to do something, as yet i dont have much code, but my question is this; do i have to make a reference to the module before i casn pass vaiables or uuse the module. the bit of code i have is this; Public Module savrec newart = addrec.TextBox1.Text newsong = addrec.TextBox2.Text newyr = addrec.TextBox3.Text MsgBox(newart) MsgBox(newsong) MsgBox(newyr) what i get is all the variable are givinh me " declaration expected". si the module does not know what they are. any clarifiocation on this issue please End Module Your best way to debug this is to step through it: put a break point on the first command on the button click, press the bu ...Show All

  • Smart Device Development Strange Issue with String.IndexOf()

    I am using Function(String b)//where b="FunGroup" { String Categories= Contact.Categories // Categories return "FunGroup" Categories.IndexOf(b) // returns -1 .. where as it shall return 0 } What can be the issue Airan wrote: Found the answer, i was reading categories from Contacts and it returns categories with a space before the category name ..Culprit found and fixed too :) good to hear ... if you wouldn't mind though, mark mine as answer, since I did bring up checking for spaces ... would appreciate the credit. ...Show All

©2008 Software Development Network