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

Software Development Network >> Basel Alnachef's Q&A profile

Basel Alnachef

Member List

Rance Downer
AaronYoung
peetie
G.G.
talitore
HarryHdf
Raj83475454
Boise83716
dakhili
andrewbelcher
YorkshireTony
GeoffUnique
DanGecko
TFC
Anubhav Singh Rawat
VirGin
herowukong
Zep--
nimi
Mark Blackburn
Only Title

Basel Alnachef's Q&A profile

  • Visual Studio Express Editions Am I missing something on Install

    Bought VB 2005 express edition and started install, it installed Net framework,Web developer MSDN 2005, But never Visual Basic!! How many disks are there in the package I have three, the install disk, a getting started disk, and a Cobis image disk.. I am A total loss on how to install the VB Part. Help!!! Dave Are you sure its VB Express It looks like it might be the Visual Web Developer edition. What's the exact name of the product on the install disks ...Show All

  • Windows Forms DataBindings TabIndex DataTable Modified Problem

    I have come across a very bizarre problem with data binding a windows form controls Tag property, let me explain. 1. Bind the tag property of a textbox to a column in a datatable. 2. Set the tabindex of the control to be 0. 3. Call the EndEdit method on the current datarow of the datatable. 4. Call the GetChanges method of the datatable and it&nbs ...Show All

  • Visual C# Things I would like to see in C# 3.0

    Hi all. Over the last few months while working on projects, I have become... Frustrated, if you will, at a lack of some features from other languages, that can be put into C#. The My feature from VB. This is one handy little feature ;) The union keyword. Creating unions through attributes is just plain tedious. Default parameters. These save writing extra functions, especially when you have more than five or so default parameters. Other than that, C# is a very sexy language :D Is the My-features the MyBase and MyClass I never used VB myself. Doesen't base and typeof(this) do the same thing ...Show All

  • SQL Server Excel Destination Error: Column"xx" cannot convert between unicode and non-unicode string data types

    Good afternoon Trying out the Excel Destination in SSIS, I ran into the above error. I did try to ignore my 2 varchar fields and then it works fine. Thanks for any inputs. I'm jumping into this thread rather late, but I've had an experience with this problem that might be helpful to others. I've been trying to dump SQL query results into an EXCEL spreadsheet using SSIS, and that's when I first got this error message. After reading through the entries in this thread (and several others), I thought that the most direct method would be to edit the SQL Task that contained the query so that it would convert all o ...Show All

  • Visual Studio Checkbox list as property type which is created dynamically at runtime

    hi, i have two classes in my designer: A and B . In my diagram there is A1 a instance of class A and B1 , B2 and B3 who are instances of class B. A1 should have a property whose type is a checkbox list and the checkbox list items should be B1 , B2 , B3 . So the items of the checkboxlist should be filled with name of the instances of class B that exist in the diagram. Is there a checkbox list type for a class property I know that there is the enum type, but this wont solve my problem since the enums are not created at runtime and you can only select one item. Or is it possible to select servel items of a enum property Any ot ...Show All

  • Visual C++ Error 2001 with delete and new

    Hello EveryBody ,in this code segment generate these Errors: LinkedList error LNK2001: unresolved external symbol "void __cdecl operator delete(void *)" ( 3@$$FYAXPAX@Z ) LinkedList error LNK2001: unresolved external symbol "void * __cdecl operator new(unsigned int)" ( 2@$$FYAPAXI@Z ) LinkedList error LNK2001: unresolved external symbol "void __cdecl __CxxCallUnwindDtor(void (__thiscall*)(void *),void *)" ( __CxxCallUnwindDtor@@$$J0YAXP6EXPAX@Z0@Z ) class Detailes ; class a {   gcroot<String *>bookname ;  a *link ;  Detailes * detailes ; public:  a ( String * ,String * ,String*) ;   ...Show All

  • Windows Forms Populating DataSets

    Hi, If I create a data-bound form by dragging a data source onto my form, the code to populate the underlying dataset is not generated. Obiously it is a simply line of code, but is it the plan to make this automatic as well Regards Allen Jones Beta1 adds the following lines to the myForm.Load     'TODO: Delete this line of code& ...Show All

  • Visual C++ what is the difference between #include "header.h" and #include <header.h>?

    I'm sorry for what sounds like a dumb question! include "" searches your local directories first, it's for files in your project. include <> searches your external include dirs first, it's for including library stuff like iostream, list, vector, etc. I believe either will work, but in theory you should get in the habit of using "" for local files and <> for library files. ...Show All

  • SQL Server How to Turn ON the Log

    My users have created reports using Report Builder. I as an administrator would want to see the queries which was generated. Please could some body tell me how I could turn ON the log. Thank you, You have a couple of options: 1. use sql profiler on the database server instance 2. change the logging level for the SemanticQuery component within the ReportServer instance - Program Files\Microsoft SQL Server 2005\instance\Reporting Services\ReportServer\web.config In the RSTrace element, change the SemanticQueryEngine logging level to 4 = verbose. It will output the queries (among other information) in Program Files\M ...Show All

  • Visual Studio Tools for Office XMLNodes Confusion

    Hi, This is the first time I have posted on MSDN. I saw many of the other posts and gathered answers to many of my questions except this one. I have a simple schema attached to my Word 2003 document: <details> <system></system> <Function></Function> <type></type> <name></name> </details> these are all of the type XMLNodes and appear in a word table to be replicated by the end user. I have setup ContextEnter and ContextLeave events for each of them and set text to all of them based on the node entered. This is e.newXMLnode. My question is this. When I enter a node, ...Show All

  • Smart Device Development How to persist form control selected value between application session?

    I am new to the compact framework and I'm I have to get an application put together quickly, I hope someone can help me with a basic question..... I need to persist between application sessions the selections made in combo boxes. In the compact framework what is the best way to do this Thanks in advance for any help, C there is no 'best' way, but there are plenty of options... write the selected indices to a database/textfile/xml file, and when the app loads, have it read these values ...Show All

  • Visual C++ Implementation for _aligned_malloc?

    Hi. I'd like to see the implementation for _aligned_malloc, in order to make a version with further capabilities. This function is part of MS C stdlib. Hmm, it just occurred to me that Microsoft's implementation of stdlib may be secret. Is that why I can't find stdlib's source Thanks from a new arrival from the PPC/CodeWarrior world... Thanks for the names of the correct source files. I had tried stepping into _aligned_malloc. VC++ Express asks me to find dbgheap.c and shows execution in some random non-code area, clearly misaligned with the actual source. Any clues how to fix that ...Show All

  • Visual C# FxCop problem at compile time

    Hi My compilations crash with the following message. Does anybody have an idea Thanks (probably simple, but I did not find where I have checked "run fxcop after compile") ------ Build started: Project: IO, Configuration: Debug Any CPU ------ IO -> C:\NosDocuments\Autres\Programmation\CSharp\Vinny\Libraries\IO\bin\Debug\Vinny.Libraries.IO.dll C:\WINDOWS\Microsoft.NET\Framework\v2.0.50110\Microsoft.Common.targets(1771,7): error MSB4018: The "FxCop" task failed unexpectedly. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50110\Microsoft.Common.targets(1771,7): error MSB4018: System.NullReferenceException: Object reference not set to an instan ...Show All

  • Visual C++ Negtive zero valid?

    Hello, I hope I am in correct forum. I am testing Visual Studio 8 RC1, and found a negative zero. Here is a C example: {    double val = 0.0;    val = -val;    printf("%g\n", val); } Output is: -0 The result is "0" with .net 2003 version. Is this a expected behavior If this is expected, could somebody point me to the documents describing new double behaviors. Thanks! Thanks for the repy Eugene, Yep, I accept that, but end users don't understand -0.0 So having printf generate it is just painfull. I know from looking at the Microsoft C runtime ...Show All

  • Visual Studio Team System 28100 Error during installation

    I am experiencing an 'Error 28100. Error loading Event web service.' problem with the Beta 3 refresh. I've tried everything I can think of a and all the suggestions made in other threads and the MSDN Product Feedback Centre regarding this error but to no avail. My setup scenario is this: Clean install on dual-CPU Dell server, Windows 2003 Standard edition with SP1, all other software as defined by the installation guide. I've been using SQL 2005 Enterprise edition as a post on Rob Caron's (I think) blog suggested that there is a problem running the beta 3 refresh on SQL 2005 Standard edition. The server is a member of our ...Show All

©2008 Software Development Network