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

Software Development Network >> Jason Fransella's Q&A profile

Jason Fransella

Member List

Kenneth Yang
Shawn K.
Doug Svacina
namlow
Jamey Maxwell
Coenie
Rocky101
Xavy
taotor
Ryno1234
rogermk
Heydar
Peter Cwik
AmR EiSa
allez
Jason Maronge
kundalani
Icesniper789
carterwjeff
checkity
Only Title

Jason Fransella's Q&A profile

  • Visual Studio Express Editions C++ Express winodws 32 applications Problems ??

    When i install Visual studio express i can not find the way to create winodws 32 applications. i can only create counsel applications. did i miss something. i downloaded the PSDK. and i tried running my code in a counsel nothing is working. for the main problem it does not seem to reconize windows.h tell me what my stupid mastake is please You probably need to add the PSDK directories to VC++ options. Go to meny Tools-Options Under Environment->Project and Solutions->VC++ Directories you need to add the path to platform SDK Make sure you add it under the correct directory type, you choose it i ...Show All

  • Visual C# get the EXE directory from C#

    From my code, I want to get the directory where the program is located. All I could find is the current working directory: string path = Directory.GetCurrentDirectory(); which is not quite the same thing. Nevermind, I found it: Application .StartupPath ...Show All

  • SQL Server SQL 2005 Installation

    Hello everyone, Please I need some help installing SQL 2005. I once installed VS.NET 2005 which also installed sql 2005 express edition, but I had trouble restoring my database which was backed up from sql 2000, so I reinstalled sql 2000. Now I've removed both of them sql 2000 and 2005 and I can't install 2005 anymore. Here is one log 03/13/06,09:42:25] Microsoft SQL Server 2005 Express Edition x86: [2] Setup Failed on component Microsoft SQL Server 2005 Express Edition x86 [03/13/06,09:42:33] VS70pgui: [2] DepCheck indicates Microsoft SQL Server 2005 Express Edition x86 is not installed. [03/13/06,16:36:30] Microsoft SQL Server 200 ...Show All

  • SQL Server Remove/Hide Export options in MRS

    When we deploy reports, there are many options for exporting that we do not wish to support for every report.  Is there a setting or configuration file where we can deselect or hide some of these options TIA, Beth Yep, there is a config file but it will change the options on all of your projects which is what we wanted.  the file is RSReportServer.config.  Here is an article explaining the details: http://www.sqljunkies.com/WebLog/roman/archive/2004/12/12/5506.aspx Thanks to my co-worker Brian for finding this.  Hope this is useful for you as well. Beth ...Show All

  • Visual J# Difficulty of porting to J# from Sun Java?

    I asked the same question in Sun's web site, which got me some cold faces. I hope folks here would be nice. i m only seeking an advice. my app was originaly developed under Sun's JDK 1.1.4, but as i kept adding more fetures on it, it has been optimised to a 1.4.2 app, and some parts of the code are using 1.5's. Due to the fact that my clients mainly use windows and they only like Word(no open office), and i find it's really hard to deal with Word using java, so i m thinking of building a native app for windows and by using the .net library, let me generate word document more easily. we are just small company, we dont have enough man power ...Show All

  • SQL Server error in execution time

    hi all i am working in sql reporting 2000. In my report i have included field to display the execution time. That time is not changing if i am running the report again & again. Its only showing the time at which report was run first time in current Internet Explorer window. how can i get current time in report plz help me. The reports might have been cached on the server if you specifically have set it to keep the last run report. So it may not be running the report, but instead getting the last cached report. I haven't tinkered with the settings, but it's an idea. You might want to ...Show All

  • Smart Device Development Which lib is _DllMainCRTStartup found in?

    Converting a project from eVC++ to VS 2005 caused me to begin having the problem: unresloved external symbol _DllMainCRTStartup I am purposely referencing the symbol, but it wasn't a problem before. Has the lib where this is included changed Thanks, Zack Thanks. That's all helpful information. My (hopefully) last question regarding this issue, then, is this: Is there a smooth way to put the libraries in the appropriate order on the command line using the built-in tools in the VS 2005 IDE The only way that I have found is to list them out in order under Linker->input->additional dependencies, and that ...Show All

  • Visual FoxPro Main Window Default Size/Location

    I would like to know what determines where the compiled EXE application window opens and what size it is. I would like to have the window: - remember if it was maximized or - remember last size and position Right now it is always starting in the top/left corner and I'm not sure what I did to get it that way. Thanks I would like to have the window: - remember if it was maximized or - remember last size and position You will have to write some code to remember the settings of _Screen when your application shuts down (perhaps in an ini file or in a dbf). Then, in your main startup program, you read the ...Show All

  • Visual FoxPro Need help on a small open table code

    Hi, I m trying to make a general opentable function that I will use with all my apps in the future. Now I need someone to explain to me a few things to see things more clear. Here is my code: function OPENTABLE(TABLENAME)  LOCAL TABLETOOPEN *Ok this is just a full path I make for the dbf file. I do not know if it the right way.what it gives is  eg. c:\program files\my app\data\mytable.dbf  TABLETOOPEN=TOSTRING(checkpathforslash(GETCONFIGVALUE("DBF_PATH"),.t.))+TOSTRING(RTRIM(LTRIM(TABLENAME)))   IF !USED(TABLETOOPEN)   USE (TABLETOOPEN) IN 0 SHARED    RETURN .t.   ELSE    RETUR ...Show All

  • Visual C++ online download

    I'm using VS 2003 Pro so I think the code should be just about the same as 2005. You guys dont have a forum for older versions! Now in my program I want my users to be able to type in a url of a picture and have the program download it and put it in there 'My Pictures' folder. I don't know if there is a control needed or if I add a reference or if it just code. But I know it can't be to hard. zbc wrote: I'm using VS 2003 Pro so I think the code should be just about the same as 2005. You guys dont have a forum for older versions! Now in my program I want my users to be able to type in a url of ...Show All

  • Visual Studio Express Editions Database search

    Hi there, I am new to VB Express. I have a project that requires finding 2 fields in a mdb database. The search key is a variant rather than a text box. In the project I modify input from a text box. The resulted variant is the search key for retrieving 2 fields in the variant record. The database is structured as follows: Location Identifier Field1 Field2 Alocation ABC 123 456 Blocation DEF 789 987 Clocation GHI 654 321 The search key is the identifier variant which is processed from a text field. I watched the tutorial but they automatically associate database fr ...Show All

  • .NET Development Server currupt when Client close.

    I have made a "Hello world" Remoting example. The Client works fine when connecting with the Server. While I close the Client, a message comes out as below, and the Server close. Server has encountered a problem and needs to close. We are sorry for the inconvenience. The debug information is as below: System.AccessViolationException was unhandled   Message="Attempted to read or write protected memory. This is often an indication that other memory is corrupt." I think the code has no error, because the same solution I have test in VS2003 without problem. While used in VS2005, it encountered an error. Th ...Show All

  • Visual Studio Tools for Office VSTO 2005 Infopath project template missing

    I have installed Visual Studio 2005 Team Edition (release version), Visual Studio Tools for the Microsoft Office 2005 and Office (and Infopath) 2003.  In the "Visual Studio installed Templates" for Office, I have templates for Excel, Outlook, and Word (and they are all working fine), but I do not have a template for Infopath.  Do I need to install something else to get the Infopath templates and be able to create Infopath projects in Visual Studio 2005 After all those products, you need to also install: Microsoft Office InfoPath 2003 Toolkit for Visual Studio 2005 This is available as a separate ...Show All

  • Windows Forms This is what i mean....

    What i did is a CLASS file with all my functions and methods in to it, but i was looking a way to add comments or a brief descriptions just like VB.NET do when you create a instance to a object and using is method or properties. you know if you have 3 times a method with the same name inside a class but with diffirent paramete ...Show All

  • Windows Forms Issue Vision Expandable List Control

    First, I want to say how helpful your sample applications are for me an my current projects. Second, I would like to give back to the team, in the form of what added functionality I have added. I have modified the original Issue Vision ExpandableList and SectionControl controls with the  following new functionality: - Drag & Drop functionality - HitTest methods (similar to DataGrid) - Section Controls maintains current selection, focus & expanded state on refreshs, add, and remove of base group items. - Dynamic SectionControl grouping - GroupItem takes advantage of the sorted list for its items. - Sectio ...Show All

©2008 Software Development Network