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

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

yibeltalisme

Member List

Srinivas Gudimella
newbied
zeeshan_ahmad
lmaster
Nick V
Peter S Antal - MSFT
vijji
Steph Wilson
Ray Barley
Krobar
MaryJaneF
sharc
azmath76
Uri Kluk
ISV Buddy Team
Arshad Syed
aaron222
KVS
Drak Swordsman
Robert Q
Only Title

yibeltalisme's Q&A profile

  • Visual Studio Tools for Office Smart Tag in a range

    Is posible to have a Smart Tag with different behavior in different ranges For example, the Smart Tag shows actions "Delete", "Insert" in the first page and shows only the action "Delete" in all other pages of a document. Thanks Yes. It is possible, but it requires a little more work. To get you started, you could use this.Application.Selection.Range.get_Information(Word.ActiveEndPageNumber) to determine the page the selection ends on. Next, you could use the BeforeShow event on the SmartTag Actions to check the page number with the call above. Then, depending on what page you're on, you c ...Show All

  • Windows Forms Save datagrid layout to file

    Hi, I want to save a datagrid layout to a file. Not the data - just the columns, their formatting and the fields they are bound to. Can this be done (and how!) Paul. ...Show All

  • Visual Basic CutePDF Writer,eDocPrinter PDF Pro..etc...How can i handle thease object properties...please reply....

    Hi, I have created a word document using bookmarks and other things in VB. When i want to finish my document, I can only save it in .doc. Are there some libraries to pass to PDF Thanks! There is nothing built into Microsoft Word, but you can use one of the many PDF print drivers available to generate a PDF file: http://www.cutepdf.com/Products/CutePDF/writer.asp ...Show All

  • SQL Server Attach an aspnet or sql2005 database on a sql2000 server

    Hello I want to attach an ASPNETDB database (generated by the asp.net login wizard system), which is a sql2005 .mdf database I think, to our SQL2000 server. I tried to attach the file directly ; then to attach it to a sql2005 express server, "turning it" into a sql2000 database via the properties, then make a backup, then restore the backup on the 2000 server ; nothing worked out ! One of the method I tried (I don't remember which one) told me it could'nt read the sysindexes table ; of course, because there isn't such table on sql2005 databases. So, is there a way to attach a SQL2005 database (so with no or few system tables) to a ...Show All

  • Visual C++ How do I convert a long variable to const Int ?

    I get back numOfContext as a long (req. by this call). I then want to create 2 arrays based on this size but I need const int for array declaration. How can I do this Thanks. pSYContextContainer->get_Count(&numOfContext); AlphaDavis wrote: I get back numOfContext as a long (req. by this call). I then want to create 2 arrays based on this size but I need const int for array declaration. How can I do this Thanks. pSYContextContainer->get_Count(&numOfContext); Is this managed code or native code Here's some code showing you how to do this for a native as well as for a managed array : int ...Show All

  • Smart Device Development Help with Capture/disable the Back Key

    Hi, I'm trying to disable the back  key.  I did the following  but it doesnt work: //in my form constructor added key handler public Constructor() { this.KeyPress += new KeyPressEventHandler(OnKeyPress); }     .     . //function defined private void OnKeyPress(object sender, KeyPressEventArgs ke)         {             // Determine if ESC key value is pressed.             if (ke.KeyChar == (Char)Keys.Escape)             {    ...Show All

  • Visual Studio Team System Testing Policies for Check in with SourceSafe

    I can create a testing policy that uses one test list that I have created. If I try to create a Policy with two test lists only the second test list is used. I understand that it should be possible to do this, here is the Config String that I have tried: /testmetadata:"C:\Team Systems\Unit Testing\AuthCode Algorithm.vsmdi" /testlist:Standardise Tests 1, 2 /testlist:Tests 1 to 14 Can anyone see what I am doing wrong or is this a bug Interesting. I've got a repro with the Beta2 build. However, in our current builds this issue is fixed implicitly because of the way you can now select test lists (It's no ...Show All

  • SQL Server I can't add a new Reporting Services server registration of a remote server.

    I need a help. This is the scenario: I have installed on my machine SQLServer 2005 Developer but not reporting services because I don't have IIS. Now there is server: W2003 + SQL Server 2005 Developer (Complete) + II6. From the SQL Server Management Studio I can connect to the DatabaseEngine on the server but I cannot connect to Reporting Services or Integrated Services. On particularly when I try to create a new Server Registration and I "Browse" for a server I can see only the local server!!! Is this a systemistic, configuration issue Some advice to solve it Thank you in advance. Marina B. ...Show All

  • Visual Basic Interop.Microsoft.Office.Core problem

    I have a project I made in VS 2003 and am converting it to VS2k5. The same library I use in 2k3 does not work in 2k5 it seems. It is runtime version 1.1.4322 and lib version 2.3. I get the following error: The type 'Microsoft.Office.Core.CommandBars' is defined in an assembly that is not referenced. You must add a reference to assembly 'office, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'. Anyone know if I need to use a new lib for .NET 2.0 or VS 2k5 Brandon ...Show All

  • Visual C++ Debug Assertion Failed

    Hi I have just got our main C appilcation which was developed under Visual Studio .Net 2003 ported/compiled/run successfuly as a release build under Visual Studio 2005. However when I try to run the debug build I get the following: Debug Assertion Failed Program : myapp.exe File : f:\rtm\vctools\crt_bld\self_x86\crt\fstat64.c Line 64 Expression (_osfile(fildes)&FOPEN) I have degugged it to the following function and the fstat call within it: int get_file_size( char *filename) { int fh; struct stat info; fh=open(filename,_O_RDONLY); if (fh==-1) { error_handler(10,TXTOPE, "" ); re ...Show All

  • Visual C# Windows-Service StartUP

    Hi folks, it is possible to change the Startup Option of a windows service for example from automatic to manuell like in the managment console Sven De Bont wrote: Please note that when using WMI, the WMI service must be running. It's running by default, so if you are 100% certain that the user won't stop op disable it, it will always work. If you need another service (here WMI) to be running, simply set it as a dependant service: ServiceInstaller.ServicesDependedOn Property Then Windows will start it, unless user has explicitly disabled it. Well, he/she ca ...Show All

  • .NET Development TableAdapters.....

    Is there a way to expose the SqlDataAdapter within a TableAdapter as a Public property even after re-generating the TableAdapter I can't use TableAdapters, because they don't expose the SqlDataAdapter as a Public property since I need to pass down the DataAdapter to a separate DB I/O method. Not a generated DB I/O method within the TableAdapter. I'm forced to use the Component Designer and create a SqlDataAdapter like I have been doing in VS.Net 2003. The following code is generated when creating a TableAdapter: <code> <System.Diagnostics.DebuggerNonUserCodeAttribute()> _ Private ReadOnly Property Adapter() As System ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Basic Help!

    Before going any futher with developing games and such.. Which SDK file do I have to download to start please link me up =) I'll go for the DirectX C++ I know nothing about DirectX, but I have good knowlage in C++. Thx You probably need to do an extensive search on DirectX 9/C++ tutorial but I don't want to take a lot of time doing it--can be hard for me to find for me. However, I'd recommend you learn Managed DirectX with C#.  Since you know C++ you can probably get over with the C#'s syntax very quickly. You can find it here . Please note: I'm not trying to get you away from C++ but I'm thinking that if you learn Managed Di ...Show All

  • Windows Forms A little confusion about typecasting.

    I have a form with three buttons and one textBox. On the clickevent of all the three buttons i have called the same eventHandler like this. this.button1.Click += new System.EventHandler(this.button1_Click); this.button2.Click += new System.EventHandler(this.button1_Click); this.button3.Click += new System.EventHandler(this.button1_Click); now private void button1_Click(object sender, System.EventArgs e) { this.textBox1.Clear(); this.textBox1.Text =  ...Show All

  • Smart Device Development Upgrading Soution to '05, probs with Data.SqlServerCE namespace

    Hi all, does the SQLServerCE namespace exist in the System.Data Namespace in .NET 2.0 Or has it been moved The reason I am asking is because I am now getting error messages relating to this in VS 2005 Thanks Tryst System.Data.SqlServerCe namespace is located in System.Data.SqlServerCe.dll, please make sure to add a reference to it. ...Show All

©2008 Software Development Network