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

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

jaxrpc

Member List

VenkataS
Paps
xmart2k
itskarthik1983
MMMSobo
Paul Menefee
avic
Tindy413
Vinny from the blue
Bhupati
aldone
Asher David
LCasselle
Rovshan
King Nerd
Mo Han
Tom Gillespie
Aaron Feng
udooz
BJW
Only Title

jaxrpc's Q&A profile

  • SQL Server recover deleted data

    I want to learn that if my query deleted all data in the table by mistake, is it possible recovery and how Hi Sinem, If you did taht in a transaction: BEGIN TRANSACTION <DELETQuery> --YOu Can do a ROLLBACK Here If not or you commited it’, you need a backup to restore. If you have a Full backup and kept the transaction log backups you can do a Point in time recovery to the second where you deleted it. No backup, no data. HTH, Jens Suessmeyer. ...Show All

  • Windows Forms Custom menu items serialization ...

    Hy! I have build in VB .NET a custom menu which displays icons to each menu item. The StyleMainMenu inherits MainMenu and StyleMenuItem inherits MenuItem. For StyleMainMenu I have a toolboxbitmap and I can choose to insert directly from toolbar a style menu to the form. But, at design time, when I add menu items, they are made as "new MenuItem", not as "new StyleMenuItem". Question: how can I make that, by design time, the menu items to be as StyleMenuItem Thanks.   Insert this into StyleMainMenu: [Editor(typeof(StyleMenuItemCollectionEditor), typeof(UIEditor))] public new Menu ...Show All

  • Visual FoxPro FoxPro v9 vs Visual dBASE Plus 2.01 BDE 5.2.02

    Hi there. I just installed a Visual FoxPro 9.0 and started "playing" with it. Tried to create a table - it is straightforward and then a form. It seems to be a rich platform. Something puzzles me though. I do have extensive experience with Visual dBASE PLUS and previous versions in terms of OO language and form/table designer. Thus I am trying to compare. I am attempting to migrate to MS software/platforms wholesale since the dBASE is offering limited options as compared to MS's tools. I am doing C# and Visual FoxPro at the same time. Anyway, So far, after about two hours of playing with FoxPro Form designer I encountered some problems. They ...Show All

  • Visual Basic Adding an array of controls to a form

    Hello all, I'm trying the followig to add several labels to a form at runtime, but it only is adding the very first label. Any ideas why Dim numberOfItemsToCreate As Integer numberOfItemsToCreate = txtNumOfItems.Text Dim lblArray(numberOfItemsToCreate - 1) As Label Dim index, locX, locY As Integer locX = 10 locY = 50 For index = 0 To numberOfItemsToCreate - 1 lblArray(index) = New Label lblArray(index).Name = String .Concat("lbl", index.ToString) lblArray(index).Text = lblArray(index).Name.ToString lblArray(index).Location = New System.Drawing.Point(locX, locY) M ...Show All

  • Windows Forms regarding windows forms layout

    Dear All, Is there any design guidlines to implement standard layout in windows form, I want to implement resizing/relocation of controls according to the form size. I'v tried few solutions my self but its preety difficult to control them, i'v tried using infragistic's layout managers. Plz advise regards faraz Salam Do you mean that you want management of controls, i think you can manage controls by using Panels ...Show All

  • Visual C# Inserting multiple lines in textbox

    I have textbox with multilne parameter set to true How do i add multiple lines of text I guess i have to use array somehow Hi, You can use Environment.NewLine;   to add a new line (by code) HTH. Bye. ...Show All

  • Visual C++ Error C2757 in VC2005

    // Following compiled in VC2003 but gives  Error C2757 in VC2005 namespace A {     namespace B    {        namespace C       {           int i1;       }    } } namespace ABC = ::A::B::C ; namespace ABC {    int i2; } The bug lies in VS2003, not VS2005.  It took some reading of the C++ spec (not something I do often).  According to the C++ grammar, namespace aliases are not to be used in ...Show All

  • SQL Server Problem converting VS2003 code to VS2005

    Hi: I am trying to convert my VS2003 project to VS2005 beta 2. The actual conversion has gone fine, but some code that was working fine under to old IDE is now giving me an exception when run under the VS2005 generated code. The code is: using ( SqlConnection conn = new SqlConnection ("Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=GestionNET00001;Data Source=localhost" ) {   ... } And the error I'm getting is: {"The type initializer for 'System.Data.SqlClient.SqlConnection' threw an exception."} Has anyone any idea why this is happening TIA, MartinH. It's not a bug -- the confusing thing was w ...Show All

  • Visual J# How do I create an exe file or a jar file from J#?

    I need to provide someone (a science teacher) with just an exe that they can run. The program prompt for some values, perform calcuations and produces a table of outputs.  They do not have Visual Studio NET installed on their computer.  How do I make an executable in J# Thanks! Mrs. Bellacera If you build your project, an exe will be created in the bin\debug or bin\release folder. You can run this directly, but you will need to have the .NET framework (redist) installed (not the SDK or Visual Studio)... ...Show All

  • Visual Studio 2008 (Pre-release) Locbaml strange behaviour

    Hi Guys, While i am using locBaml to generate resource file from csv file, i had the folowing error: Each row must have the 2nd column as the key to the resource. My command for generation is: locbaml /generate AuthoringMain.resource.dll /trans:c:\resource\text1.csv /out:c:\ /cul:zh-CN I do not find anything worng with it Any ideads Thanks! Based on the error message, 2nd column of your CSV file does not contain resource key. When you do locbaml.exe /parse , all the correct keys should appear in the 2nd column of the CSV file. You shouldn't change them in translation. Pl ...Show All

  • Windows Forms UserControl and Collections

    Hi I create a UserControl with a ComboBox. I want to pre-set some items in the combo box so i put this after InitializeComponents(): comboBox1.Items.Add( "aaa"); comboBox1.Items.Add( "bbb"); comboBox1.Items.Add( "ccc"); I expose the items collection with a property like this: [System.ComponentModel.DesignerSerializationVisibility( DesignerSerializationVisibility.Content )] public ComboBox.ObjectCollection ComboBoxItems {  &nb ...Show All

  • Visual C++ cliext::map in stl.net

    wrote in message news:88b90d39-670f-4567-aab7-cec032c66ae0@discussions.microsoft.com... Why do I get C2385 with this code hdp. #include "stdafx.h" #include using namespace System; int main(array ^args) { cliext::map m; //m[0] = 10; //m[5] = 50; return 0; } Because the stl stuff in this beta is not finished, you better stay away from it. Willy wrote in message news:fb5d2e5c-c59c-4288-b729-8863c960c0ab@discussions.microsoft.com... Thanks Willy. I don't understand why they decided to include an imcomplete implementation of stl. With the current impl ...Show All

  • Architecture Window Foundation Vs Biztalk

    I am doing research on workflow engines and framework available for .net applications. I came across a website ( http://blogs.ineta.org/bloesgen/archive/2005/10/09/56481.aspx ) which says that Biztalk handles transactional integrity and scalibility automatically while in windows workflow foundation(WWF) , developer has to implement it. I could not understand how scalibility and transaction has to handled manually from developer. It also says that workflow can be changed at runtime in WWF while in case of biztalk ,it can only be done at compile time. What is meant by this statement. Please illustrate the above two points Tic ...Show All

  • Smart Device Development pcmcia / compact flash interface

    Hi All, I'm trying to find example VC++ code to access the pcmcia/CF interface on a pocket pc. I've developed an add on card for analogue sampling, but now need to access the card. I would like to access the card in memory mode or IO mode (not ATA mode as per a flash disk) I've had a good look around but can't finding anything. Does anyone know where I can find this information. I'm using embedded VC++ v4.0 Thanks, Stephen Please read one of the announcements on this forum http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=481505&SiteID=1 Thanks Srikanth ...Show All

  • Visual Studio How to Add a button in a work-item and scripting for that control (in Team System)

    There are possibilities to add a input controls (text boxes, drop-down lists, etc.,)  in the Team system work items like (bug, task, etc.). I want to add a button in the window and script it for emailing the content to a recepient. How to achieve this. Thanks. You can customize the work item form to add custom controls. Check ou the documentation here: http://msdn2.microsoft.com/en-us/library/ms243782(VS.80).aspx Also download the TFS SDK (part of VS SDK) and check out the samples. Do let me know if this documentation helps! ...Show All

©2008 Software Development Network