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

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

SavitaG

Member List

Gary RUsh
don_net_user
DTMartin
VICAllen
Jim Lux
CSved
Ted Lee - MSFT
Luc Morin
Gekon
drtom
jonam
Jay Frankland
tpickett
Schenz74
Michael Hamilton
RPKJBP
Monkletx1
jchen
Kharkov Alexander
Johann
Only Title

SavitaG's Q&A profile

  • Windows Forms Terrarium Server [Beta1] installed !!

    I've finaly installed the terrarium server without problems but..... When I install the terrarium client 1.2 and change the terrarium server in the settings, it won't connect. Example:                changed http://www.terrariumgame.net/terrarium into http://localhost/terrarium                 in I.E. the URL (localhost) works. Can  ...Show All

  • SQL Server Data integration challenge. Will SSIS help?

    Hi, We have a requirement to do ETL on large EDI batch files into SQL Server. For this we have to map several X12 schemas - which are fairly complex - into relational schema. Right now they use Biztalk but that is not a good option for batch processing of large EDI files. Performance is really bad. Is this possible using SSIS Are there any 3rd party tools which might integrate with SSIS to make this easier or can do this as a stand-alone I know Mapforce 2005 from Altova supports X12 mapping and even generates C# code for the mapping. Anyone has experience in using Mapforce generated C# code in SSIS Looking forward to any insigh ...Show All

  • Visual Studio Express Editions Can Anyone Relate To This???

    Hi There http://www.geocities.com/tablizer/oopbad.htm Cheers Bronco Billy "Beer and Fast Women are Ok... No Cigarettes or Hard Liquor Allowed" Hi, we live in a free world where erveryone can express his opnion. I know I like OOP. You should try both worlds and see whats best for you to use. ...Show All

  • Visual Basic How to write smart application VB 2005/.NET

    Hi, I am a new programmer in VB basically I want to write a database programm in visual basic 2005/.Net managed by a central server(the user will be login from remote locations) means user does not need to install a whole programm on its PC only some runtime files, is it possible in VB 2005/.NET. waiting for reply. Khawar Hi, I am a new programmer in VB 2005/.NET, I want to write a database programe in 2005/.NET like Oracle Forms 9i (which runs in browser and doesn't require installation on user's PC except Java Initiator or runtime) is it possible to write a programm in VB 2005/.NET which doesn't require full installation on user's PC ...Show All

  • Smart Device Development How to get vga device emulation

    none of the shortcuts emulate a hidpi device, i.e. vga. i created my own shortcut using the command line args, set video to 480x640x16 and it gave a vga screen, but it was not 'hidpi', it was the same as running sevga on a true vga device, i.e. not what the user normally sees. anyone got proper emulation of a wm2003se vga device I was using the 2.0 version, but I tried the 1.0 too, didn't work. I'm using a shortcut: target: "C:\Program Files\Microsoft Device Emulator\1.0\DeviceEmulator.exe" Pocket_PC_PE_Emulator_VGA.bin /language 2055 /memsize 128 /video 480x640x16 start in: C:\Program Files\WM03R ...Show All

  • Microsoft ISV Community Center Forums Send Outlook message via VBA Macro in Excel

    I have some macro code in an Excel workbook. It has been working fine for several years under various combinations of Excel 97, Excel 2000, Excel 2002(XP) and Excel 2003 along with Outlook 97, Outlook 2000, Outlook 2002(XP) and Outlook 2003. We have one new computer that has Office 2003 (SP2) that was recently setup and the macro generates the following error: Run-time error '-2147024770(8007007e)': Automation error The specified module could not be found. Here is the VBA code in the Excel Macro.  The error happens when it reaches the line that reads: Set theApp = CreateObject("Outlook.Application") .  I tried to ...Show All

  • Visual Studio Express Editions Searching for e-books

    Can someone please direct me to the benefits area of the express editions.  I am trying to find the ebooks that they say are available and have been through the portal. Hi, It should be in your e-mail. The mail that you used to register your product. In case you deleted it here's a quoute on the FAQ. 12. I received my registration benefits e-mail, but I deleted it by mistake. Can I get another copy of this e-mail If your copy of Express does not require a registration key, you may simply repeat the registration process; a new benefit mail will be sent to you. If you have a downloaded copy of Express and lost your registration be ...Show All

  • SQL Server Making use of RGDI output

    According to the Reporting Services feature matrix, the image output that Report Server Express has is something called RGDI.  From what I've gathered, RGDI stands for Remote GDI. What is the RGDI file format useful for   I don't know the proper file extension to give the file, nor do I know what viewer can view it. Is there some way to convert the RGDI format to a more universally accepted file format such as .tif, .gif, .jpg, etc...   I'm hoping that I can just capture the binary stream, and convert the stream to a different image format before saving the file. Thanks! Brian, I would like to save the results of a Rende ...Show All

  • Visual Studio 2008 (Pre-release) How to make a TextBox to AutoSize in a Grid?

    When I put a TextBox into a StackPanel it automatically sets its height to ensure that you can read the current font. How can I get this behaviour in a Grid ATM: I have the problem that the text looks different on Vista (Segoe UI, 9pt) and XP (Tahoma 8pt). I can't read the text on XP systems but can read it on vista ... Now I always use independent values for Size, Width and Height (not pt, px or something like that) but still I have to assign a manual height to all TextBoxes (26,4 on XP). are you using RowDefinition in your grid   if so, try setting the row's height to "Auto". also, whatever container your Grid is in might have ...Show All

  • Visual Studio 2008 (Pre-release) Canvas, Rectangles, ClipToBounds slowness

    We are thinking about starting a new moderately complex graphical application in WPF. But before committing to the platform, we are testing features to see if WPF can handle it. >:) One test application so far has a Canvas with ~800 Rectangles (added with C# using “canvas.Children.Add(..)”. These rectangles are movable by dragging them… implemented with Canvas.SetLeft(rect, newLeft) and Canvas.SetTop(..) from the MouseMove handler. I need some tips on how to speed this up. Currently dragging a single rectangle around causes 100% utilization with 20 FPS on a Xeon 2.8GHz… even turning down to 50 rectangles seems ...Show All

  • SQL Server Reporting Services Parameters

    I have a report set up in SQL reporting services which I need to pass two values: fundingRef and mRef from another aspx page which I have managed to get working using the following code: string param = "&fundingRef=2" + "&mRef=25"; ReportViewer1.ReportPath = Global.ReportPath + reportPath + param;   Both the parameters have been set up in the SQL report designer in VS2003.NET and will contain several values using the SQL IN statement. My sql statement is to a structure as follows: SELECT [field names] FROM [table] WHERE (fundingRef  in(@fundingRef )) AND (mastercourseRef in(@mRef)) When I pa ...Show All

  • Windows Forms dynamically creating a ContextMenuStrip

    ok, I am wanting to dynamically create a context menu strip using an existing menustripitem from the form, I used to do this by creating a context menu and merging the differant main menu item i need to the context menu then when the user click the context menu it just fired the main menu item code. The problem I am having is that if I use context .Items.Add( this .child2ToolStripMenuItem); then the main menu strip item is removed from the main menu strip. Is there a way around this or do I just need to do this a differant way I'd create the ContextMenuStrip, then share it with your menustrip assig ...Show All

  • Visual C# Accessibility level?

    public class x { internal struct y { } protected internal x(y param) {} } This gives the error that the type y is less accessible than the constructor. But I believe that internal is more accessible than protected internal. If I make the constructor internal only, it compiles. I'd think it's trivial that adding protected to it makes it less accessible, so why the error That struct really needs to be internal and that constructor really needs to be protected, is there a way to do it or is this a compiler bug No protected internal is more accessible. With PI you are allowing any type in the current assembl ...Show All

  • Visual C# .NET 2.0 Windows Service

    Does anyone have experience creating a windows service using Visual C# Express Beta 2   I cannot find the VS2003 Windows Service type template anywhere or any sort of documentation.  All help is appreciated! Jerry Well I figured it out.....DUH!!! I'd forgotten since it had been awhile since I'd last worked with services, but you need to create the installers for the service.  Be sure to give it sufficient priviledges for what you need it to do.  Then use installutil. Brent ...Show All

  • Windows Forms DataGridView get columns order

    Hi, I have a DataGridView and reorder columns manually. I was wondering how to get the ordered columns of the DataGridView The columns list only holds them the way they were added. Thanks The DataGridViewColumn class also exposes a DisplayIndex property which indicates the order of appearance of the columns in the grid. If you have 10 columns in your grid, each column has a DisplayIndex property between 0 and 9. Each columnhas a unique DisplayIndex value. Hope this helps. -regis ...Show All

©2008 Software Development Network