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

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

abonefas22

Member List

Amit Nalla
Kenny Voon
cehlers
frank chen
MaksTretyak
Phuoc
joesucks
Dongliang Chen
Dasda
BrianSquibb
John_Cronan
sonj
Muhammad Imran afzal
alex_g_73
Julien74
Chakshu
freenetbox
Ciro Fonseca
Fadi Toutayo
subtile
Only Title

abonefas22's Q&A profile

  • Smart Device Development Creating Custom Controls for the Toolbox and .NET 2005

    Hello, I am currently working in Visual Studios 2005, C#. I am attempting to make a custom control that can be used through out many different programs in our mobile department. I have followed numerous on line examples on how to do this, and I can not get any of them to work. My biggest problem is that after the control is created, I add a project to my solution and reference the new control. At that point, the new control is not visible in the Toolbox. If I right click the toolbox and click Show All, I can find the new control, but it is disabled. I have ensured that I am in the new project, that I am on a form, and that other controls ar ...Show All

  • Visual C# Confused about some OOP concepts... good resources to learn?

    (I am sorry if this isn't the right forum for this sort of question, but there doesn't seem to be a "General Programming questions" forum here... feel free to move it or delete as necessary) Anyways, I have a lot of programming and C# concepts down, but I'm having a devil of a time coming to grasps with object-oriented programming (I've watched the C# Express videos that deal with it, and the VB.NET ones, and the other ones from LearnVisualStudio.net, but still no luck). I understand the concept of objects, and why it's a good idea to encapsulate methods and such in the object (code reuse ). I also understand about properties an ...Show All

  • Smart Device Development Question about System.Data.DataSet in CF 2.0

    Hi there, I'm currently working on an application for the PocketPC-Platform. My tools are VS2005 (C#) and CF 2.0. The input data for my app came as an XML-File from a server-host. We do not want to use SQL-Server Mobile resp. SQL Server Expess-Edition because of higher costs for our customers (client licenses for the server). I'm converting this file to a System.Data.DataSet via the ReadXml()-Method. After ReadXml() has finished my DataSet contains several System.Data.Table-objects. Now my problem: --------------- The data I have to process came from several of this tables (short said an SQL Join-Query). And here my "problem ...Show All

  • Smart Device Development 7 TabPages-There is a problem with them in the application.

    Hi All,         I am facing a problem regarding the Tab Page issue in PDA smart device application in VB.NET, the problem is that there are 7 TabPages in the application,It is basically a information filling form which has several type of info for several people,as i fill in the data for Say Person P1 and the last info i put in TAB PAGE 4 and save it and then next time when i open the application for another Person P2 the the TABPAGE control is on TABPAGE 4 only that is of last visit so my query for the above stated problem is that 1. How can the control be made on TabPage1 only on each time the form o ...Show All

  • Software Development for Windows Vista An error occurred while enlisting in a distributed transaction.

    I am trying to wrap some DB calls in a com transaction for testing purposes (make a bunch of calls to the DB, check if they look right, rollback any changes, move on to next test). So far it works fine running against a local SQL Server, but I can't get it to work against our actual development server. I have tried messing around with the Security area of DTC settings on both my machine and the server, allowed inbound and outbound connections, enabled network, turned off my firewall etc. Of course the only message I get when trying to open an ADO.NET connection against our sql server is: An error occurred while enlisting in a dis ...Show All

  • SQL Server Is SSIS slower than DTS????!!!!!!

    I am new to SSIS and probably doing some mistake while transferring data from oracle source to oracle destination.   Please guide me..   In our project we need to transfer nearly 80 GB data from old system (Oracle 9i) to new system (Oracle 10 G Release 2). To do this exercise we are testing and comparing performance and cost effectiveness between different tools like SSIS, DTS and SQL * Loader (oracle built in tool).   We have selected one table, which is having 40 fields with 3 million records. The destination table is also having same structure.     Surprisingly SSIS is giving slower performance ...Show All

  • Visual Basic Boolean Explanation Please!!!

    Private blnNoAction As Boolean = False Now i am declaring 'blnNoAction as a Boolean varible that is set to FALSE, but the thing is i do not know what that means........and i dont know how i should use this varible...can some send me a link or run me an explanation on how this works, i am fimiliar with the operators AND OR NOT but how does this tie in to declaring a varible as boolean Ok I understand access specifiers, it was just something about that bool logic that was giving me a migrane but i am already incorporating it in my classes thanks ...Show All

  • .NET Development DataFormatString for DateTime column

    I have a GridView with a sortable column bound to a SQL Server datetime field. I want to display the dates as month abbreviation and two digit day. For example, I have a datetime of 2/24/2006 3:25:45 PM and what I want to display instead is Feb 24 or if 2/24/2006 were TODAY 3:25pm Any suggestions A few ideas for you. #1. You could create a caculated column in your SQL statement to return these values, for example: select convert(varchar(max),getdate(),107) as calculatedDate See "cast and convert" help topic in MSDN for formats allowed. With this you could have your n ...Show All

  • Visual C# Objects stored in a hashtable - by reference?

    Hi, I'm writing an interpreter in c#. For variables I have a system where I have a class representing a variable: class  var { public  Hashtable Children; public   object  Value; }   When a variable is declared, I do something like this: var Temp =  new  var(); Temp.Value = something; VarIndex.Add("variable name",Temp);   However I've found adding the Temp object to the hashtable just adds a reference to the object - if I then use the same Temp object to store another variable in the hashtable, the first variable inherits these characteristics. Is ther ...Show All

  • Visual Basic vb6 to VB.Net upgrading Sub Main() error

    Hi everyone.. thanks for taking a peek on my thread. Im upgrading a VB6 application. On its sub main, after it finishes, keeps jumping to other control on different forms. Is there a way to make my project to still go through code just the way VB6 does Sup cgraus.. No.. thats not what I meant. What I tried to say its that in VB6, my application once it finishes the Sub main(), it keeps working with other forms. I understand that in VB6, all forms need to be destroyed so that the application can end. In vb.net after finishing the Sub main, it finishes automatically all the application. How can I handle my code in order to keep workin ...Show All

  • Visual C# C# & COM Interoperability

    I'm beginer in COM, but write some projects in C#. I have a Windows Service, COM object written on C# and 2 or more VBScripts to communicate with COM object. Situation: En example: VBScript 1 make some operation with COM-object but if I start new VBScript 2 - it create it's own example of COM class and make operations with it. Question: How can I use both VBScripts with the same instance of COM-class The data from COM class (specified list) should be destroyed only after Service stopping - how can I do it Each time you run a vbscript, it runs within a separate process - an instance of the scripting host (e.g., cscript or ws ...Show All

  • Visual Studio 2008 (Pre-release) how to create and view a 3D model of a "true" object in WPF?

    Suppose I have a car(not a model in computer). Now i want to view a true model of the car in an application, and hope I can view the model from 360 degree. How can I implenment this in WPF Thanks for your advice. P.S. As the starter of this thread, you may want to click the 'Mark as Answer' button near my first reply. This causes the icon in the thread listing to change so that MS and everyone else can know at a glance that your question (and the thread in general) has been resolved. ...Show All

  • Visual C++ PLease help

    I had been using Turbo C++ 16 bit app. And have recently upgraded to Visual C++ 2005 Express Edition, but i am having difficuties in using it. My use it educational. Actually my use is quite satisfied by using the Turbo C++. My my PC is 64 bit, and it does not run turbo C++ since it is a 16 bit app. Please help me as to how to use Visual C++.. VC2005 is a highly standards compliant compiler. If your problems are with standard C++, Turbo C was probably the one that was broken. If you're using non-standard libraries, that would be a problem. Either way, as has been said, you nee ...Show All

  • SQL Server for loop container to process all Excel files

       I'm having a problem getting the for loop container to process all excel files in a folder.  I set the collection folder to where my .xls files are, and i set a variable in the for loop container to the FileName.  I then changed my source connection and added expressions for ConnectionString: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + @[User::FileName] + ";Extended Properties=" +  @[User::ExtProperties] (the ExtProperties was necessary to get the double quotes in.  ) ServerName: @[User::FileName] It cannot connect.  I used a similar process to loop thru Access .mdb files, but did not set th ...Show All

  • Visual Studio Team System FxCop.Rules.Xml

    Hi, Im trying to create a custom rule but I don’t understand clearly this: protected BaseRule( string name) : base (name, "FxCop.Rules.Rules", typeof (BaseRule).Assembly) { } FxCop.Rules.Rules defines the Resource Name... but the resource Name is the XML documentation file generated FxCop.Rules.Xml Why FxCop.Rules.Rules To run this i have to add to FxCop Rules directory FxCop.Rules.dll and FxCop.Rules.Xml ... I dont understand what is FxCop.Rules.Rules Regards, I can run custom rules now but i have two problems: 1. the resource is for example FxCop.Rules.FxCop.Rules.Rules instead of FxCop.Rul ...Show All

©2008 Software Development Network