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

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

eric02

Member List

tornin2
Aaron Anderson
Ignatius V Ignatius
RiotAct
neogortex
Dan Cremer
Sumit Bhatnagar
MunishGupta
Captain Baz
Carel Greaves
Jake H
Mr_White
kevinwebster83
Quirk
TA123
SankaraNarayanan Nagalingam
chaza
yanyee
m.eisenstein
Leon Mayne
Only Title

eric02's Q&A profile

  • Visual Studio Visual Studio Information

    Hi Community: I need to know if Visual Studio are compatible with MAC OS Tiger, I have several computers MAC’s and i want install Visual Studio in this S.O., is this possible Regards Do you want it to run natively on MAC OS Or is Tiger a virtual machine to run Windows in Native I would say: No. VM might work. What is S.O. -- SvenC ...Show All

  • Visual C# Button's Transparancy problem

    Hi, I have a problem when i set a button's backcolor to transparent,and the button flatstyle to flat,and setting my form to transparent ,the text on the button looks funny, please help ...Show All

  • Visual Basic Displaying hexadecimal data as float. What sort of result are you after?

    My setup is: SQL Server 2005, Visual Web Developer 2005 Express (VB) I have a SQL Server database that gets a large C++ data structure that contains longs and floats serialized as an ASCII string where all bytes were converted to hex. The bytes have to be reversed because of endieness. I have been tasked with creating a page to dispaly the parsed data. I know that I can extract the data in groups of 4 (for the longs) and 8 (for the floats). I can convert the hex to decimal, but it is converting to a very large integer type value instead of the expected decimal. I have tried to search the web, but have found very little to aid. The closest used a function similar to the C++ memcpy. This did not seem to be available in my case. A sample of t ...Show All

  • Visual Studio Express Editions Log view application

    I'm working on a little program called LOG View in Visual Studio Express. I have a couple of questions 1. How can I get another dialog to open up when I click on the "About" button in the " " menu 2. How do I get a open file dialog and when the file is selected and I click open it will load into the RichTextBox field I created I also want to know how to get it to select the file type as *.log. Thanks for you help, I'm new to Visual Basic. Looks like you pasted some code from somewhere and have a blank line after the first part of the sub code. Get rid of the blank line after: Private Sub button1_Click( ByVal sender As Object , _ ...Show All

  • SQL Server Getting aggregate returns with single parameter(matrix)

    I want do a comparison with 2 years worth of data: IE: I have a column that is either calendar year, quarter or month. Only one parameter must be passed for this but the preceding year must also be called. Like when Qauter1 2004 is selected it must return: Q1 2003 Q1 2004 Field!Value Field!Value I can only get it to show all the years or one. Any help much appreciated. This works great! Thanks for taking tha time to help me. I dearly appreciate it. My Thanks Gerhard Davids (South Africa) ...Show All

  • Microsoft ISV Community Center Forums VBA Outlook - File Stream issues

    I am trying to write a script triggered from an Outlook email to parse the email (as a text file) and then update an excel spreadsheet with specific data extracted from the email. The email is a form email delineated by a "/" for field breaks and "//" for end of line. However, when I create a text stream to read in the data, the returned string does not include these delineations. Here is a copy of the code I am currently using to open and read the file. I don't want to open the entire email as a new workbook, so I can't use the workbook function. Set fs = CreateObject("Scripting.FileSystemObject") Set ts = fs.OpenTextFile("file.txt", ForReading, TristateTrue) check = True Do s = ts.Readline endlinepos = InStr(s, "//") Do While en ...Show All

  • Windows Forms Custom Controls with Visual C++ .NET

    Who knows where can i get detailed information about create Winforms and Custom Controls with Visual C++ .NET Thanks for you help ...Show All

  • Visual C++ VS C++ Forms Designer

    I'm having a few problems with the C++ windows form designer. I love being able to create forms in C++ by dragging and dropping controls, etc. but it seems very easy to break this functionality. The current problem or issue is this: If you create a new form in a project (Add New Item -> Windows Form) you are shown the form in designer view. You can then make changes, add controls, save it etc. You can of course also view the code i.e. everything is hunky dory. However if you then at some point (and after saving it) choose to exclude it from the project and then add it back to the project you lose the ability to view the form with the designer. You can't right click on the file in the solution explorer window and choose the view de ...Show All

  • SQL Server How to generate reports from SSIS

    Hi All, I want to know how to generate a report from SSIS, for example, a report telling what has changed to a table. Thanks, TPK TPK1216 wrote: Hi All, I want to know how to generate a report from SSIS, for example, a report telling what has changed to a table. Thanks, TPK Phil is right, this is nothing to do with SSIS. If you want to audit change to a table then look to utilise DML & DDL triggers. If you want to *really* get into auditing changes to tables then check out Japer Smith's DDL Audit apps: http://www.sqldbatips.com/showarticle.asp ID=113 Really really good stuff. Good luck. -Jamie ...Show All

  • Software Development for Windows Vista mouse cursor is not tracked properly in fullscreen application

    Hi, The game I'm working on has worked fine on Xp. Only problem now in vista is that it won't track mouse cursor at startup and screen is overlapped with other windows which were opened before running the game. Both problems go away after alt-tabbing. What could be the cause and fix Will be very appreciated. Thank you This is a good question for general Vista development. Details about what your code language is, the API's you are calling, etc are necessary to look into this issue. Try looking into your code that does painting to the screen and/or handling of messages related to screen painting. ...Show All

  • SQL Server How to edit a asp.net2.0/C# project in VS2005, Plz HELP

    Hi, How can i run or edit my ASP.NET 2.0/C# project in VS2005. I have source code files (including database) but it doesn't have .sln file. Please guide me how can i edit or run this in VS2005 Every file except *user files as they store user specific information. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Basic How can you set variables to Nothing when using Return?

    Here's a hum dinger.... It's my understanding that it's good programming practice to set variables to nothing when you are done using them, however, how are you supposed to do this when a return statement is involved.  It's a catch 22... you cannot set the variable to nothing before you return it, and you cannot set the variable to nothing after you return it because no statements after "return" run. e.g. Public Function ReturnSomeCrap() As Crapola Dim SomeCrap As Crapola SomeCrap = New Crapola("100 lbs") Return SomeCrap End Function So, where and how do I set SomeCrap = Nothing, since I have to have it to return, and I cannot do it after the return In the examples, he is disposing the resources (someC ...Show All

  • Microsoft ISV Community Center Forums error in formula

    Hi, This is a formula that I am creating for a cell. The system complains that there is an error on ISDATE (where I have indicated with below) : How can this be solved please Thanks =IF(LOWER(E20)="ia-q",IF(ISDATE(D62),"YES",IF(LOWER(E20)="ia-r-q",IF(ISDATE(D62),"YES",IF(LOWER(E20)="ia-st",IF(ISDATE(D62),"YES",IF(LOWER(E20)="ia-lm",IF( ISDATE (D62),"YES", "NO")))))))) I believe the cause is the IF function, instead of ISDATE function. See below extracts from MS Excel help: "Up to seven IF functions can be nested as value_if_true and value_if_false arguments to construct more elaborate tests. If you ...Show All

  • SharePoint Products and Technologies moving documents

    Hi All, 1st a great thank you to Lawrence for his competent presentations on the European SharePoint Conference! My question: how to move documents from one (i.e. personal) doc library to an other (i.e. public location). Found only a context menu entry for copy, where I have to know the target URL. Which "standard" user knows the target URL Is there any possibility for browsing Thanks in advance, Jens Are you trying to move docs within the same site collection In that case you can move using the content and structure page (If you have MOSS, you should see a link in settings.aspx). When you choose move in the context menu, you will get a target picker to pick the target doc lib. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Model Position Problem

    I have this code that creates a model at the position of the mouse click but the model never shows up at that position. Maybe someone out there knows why the models seem to be offset. If I click in the top left corner of the screen, the model shows up in the center of the window. Here is the code: #region Using Statements using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; using System.Collections; #endregion namespace Commander { /// <summary> /// This is the main type for your game /// </summary> ...Show All

©2008 Software Development Network