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

Software Development Network >> haitham hamed housin's Q&A profile

haitham hamed housin

Member List

Bobbyboy
MSDev23
Lalaa
DannySmurf
Shai Raiten
Kelmen
Norman Hadfield
Alistair Peterson
sudeepunnikrishnan
Rich Preston
RajST
James Xiao
Highrad
Joe Bilbro
Dhanhamsan Gunalan
Gurpreet Singh Kohad
rexian
Keith Rains
jagxx
xgbnow
Only Title

haitham hamed housin's Q&A profile

  • Visual Basic I get "this Application requires your system to be updated to ADODB Version"

    I have a project that was converted from .NET 2003 to 2005 and it runs fine on the PC I have Interdev 2005 installed on but one the three PC's (all XP sp2) I install it on I get the message "this Application requires your system to be updated to ADODB Version". I use ADODB in one of the classes of the project and the DLL is C:\Program Files\Microsoft.NET\Primary Interop Assemblies\ADODB.DLL date: 03/19/2003  02:49 AM Size: 110,592 I tried coping this file to the \windows\system32 directory on the target PC's but I still get the error. Any help would be great Chris Hi, You need to check from y ...Show All

  • SQL Server Creating a credential

    Hi All, I am attempting to do a "two hop" report using Reporting Services. I created a credential on the reporting server and created a user on the data server with the same name and password as the credential. When I try to run the report I get an error that says logon failed. Is there a step by step document on creating and implementing credentials I really would like to get this running. Thanks to all, Roy The type is sqlClient; persit security info = true. Type of credentials I created a credential under security > credentials. This was done on the Reporting Services Server. I created a data source and ...Show All

  • Windows Forms Problem in using ADODB in .net

    hi, I've just encountered a problem while filling a DataTable from recordset using the OleDBDataAdapter.fill method.Once a table is filled ,no more tables can be filled by the same method and same recordset. The recordset is intact and I can get the data by its methods,but the fill method returns no rows in the next calls. nothing seems to be wrong ,and thi ...Show All

  • Visual C# Typedef in C#

    How can the same effect as of C++'s typedef be achieved in C# For instance, I want my assembly to be able to compile either with float or with double data types for the real number calculations, as a means of finding the correct tradeoff of memory consumption/speed and accuracy. I guess I probably can't without deriving a type from System.ValueType and whenever I want to change the actual variable I have to replace everything in that class - Or - making the classes generic. Correct System.ValueType (amongst a few others) can not be derived from directly. Even if you could it wouldn't have the result you wan ...Show All

  • .NET Development How to make Debug.Assert work?

    I remember it works long before, but it never works now. I have defined DEBUG symbol, build in Debug configuration, turn on "break when any Exception throw" option, but the Debug.Assert never assert even the condition is false. I am using Whidbey Beta2. Is there anything wrong in my settings Thanks! I think I got the same problem: - Debug.Assert() does not work in a specific c# class library; - It works correctly in other class libraries and console applications; - DEBUG is defined and build/run are done in DEBUG mode; - The Assert message is printed out in the output, for failed asserts in this class library; - The Assert is ign ...Show All

  • Visual Basic Loading drive into a variable

    I have this little segment of code that I plan on using in a listbox. I want to be able to select the drive in the listbox pulldown, load that to a variable and use it. I've included the basic code below. Dim getInfo As System.IO.DriveInfo() getInfo = System.IO.DriveInfo.GetDrives For Each info As System.IO.DriveInfo In getInfo ListBox23.Items.Add(info.Name) Next Also, does anyone know how to get rid of the double spacing in here Thanks I dont see any double spacing. What version of product are you using and where are you seeing the double spacing Please elabor ...Show All

  • SQL Server Failed to access IIS metabase???

    Please help! All of sudden, I cannot connect to the reporting services through MS SQL Server management studio. error message is "Failed to access IIS metabase". As I checked the system: 1. reporting services is working properly (status is "started") 2. cannot access http://localhost/ReportServer$SQL2005  , the same error 3. Run:"C:\>cscript metaacl.vbs IIS://localhost/w3svc", it shows: Microsoft (R) Windows Script Host Version 5.6 Copyright (C) Microsoft Corporation 1996-2001. All rights reserved. XP\ASPNET     Access: R   E BUILTIN\Administrators     Access: RWSUED Ever ...Show All

  • Visual Studio Team System Stored procedures for reports

    Hi there,     Where are the stored procedures for reports located in database Thanks, Anu             The reports generally go against the OLAP cubes so they end up being mdx queries.  data is pulled into the warehouse on an interval.  The operational stores typically do not get accessed by reporting. ...Show All

  • Visual C++ Problem with x64 hello world app...

    Hi all, I've been trying to port a 32bit app to 64bit these past days, and finally got the thing to compile and link after a long struggle. needless to say, the thing refuses to run on my x64 XP machine, it's missing a number of libraries (assemblies, or whatever the term en vogue these days may be. God, does anybody remember the days when code was just code Sigh.) Anyhow.... I thus am now trying to create the simplest of all apps, a hello world app built to the x64 target. Same thing happens though. Now interestingly I ran 64bit dependency walker, and on my (big) application it finds that MSJAVA.DLL is missing (what a load of bollocks. ...Show All

  • Visual C++ typedef Definition Help w/C Program

    Hi everyone, I'm very new VS. I hope this is the proper group to post to. I have a C program with a size_t variable declaration. When I hover the mouse over 'size_t' I see a tooltip that indicates size_t is a 'typedef unsigned int'. When I right-click on 'size_t' and select 'Go To Definition', however, I get a dialog popup that says, "The symbol 'size_t' is not defined". The 'Code Definition Window' also has the text, "No definition selected". So, my question is, how is it the tooltip can correctly report the size_t typedef but VS is unable to show me the definition of the typedef This seems to be inconsistent. size_t must be defin ...Show All

  • Windows Forms Code conversion help (C# .NETto VB .NET)

    Here is the code that was posted earlier for how to perform a click event.  I need help changeing it to VB .Net code.  I understand most of it but from "void PerformClick()"  on I'm stumped.  Please help! using  System;  using  System.Windows.Forms;  using  System.Runtime.InteropServices;  using  System.Diagnostics; class  MyForm: Form  {  Process notepadProcess; public  MyForm()  {  ProcessStartInfo startInfo =  new  ProcessStartInfo("notepad.exe"); startInfo.WindowStyle = ProcessWindowStyle.Maximize ...Show All

  • Windows Forms more memory usage...

    Hi, Can anyone explain to me why a windows forms app that only consists of a maximized window, done entirely with the Vc#.net designed, uses almost the triple of memory that an app like MS Access does Is this the price to pay for .NET Thanks Largly I think and this is just a guess by the way is becasue when you run an Assem ...Show All

  • SQL Server How to remove ALL as a dimension member

    Is there a way to remove the ALL member that Analysis Services adds to each dimension thanks. In Analysis Services 2000 you can change AllLevel property of the dimension from Yes to No. In AS2005 you to navigate to the highest level in the hierarchy in your dimension and for the corresponding attribute you change IsAggregatable property from True to False. Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Visual Studio Express Editions Microsoft Visual Web Developer 2005 Express Edition: Build a Web Site Now!

    Is this title still available for download I have downloaded and registered VB Express, C# Express, WebDeveloper Express, and SQL Server 2005 Express, but I don't see a link at the Registration Benefits Portal for this title. Thanks Hi! I'm not sure, but someone on the ASP.NET forums might know. The best place for asking ASP.NET questions is on the ASP.NET community site, and in the forums there. Check out http://www.asp.net/welcome.aspx tabindex=1&tabid=39 . HTH, PEte ...Show All

  • Microsoft ISV Community Center Forums Access data source question

    I have a table. Name of the table is tbltest1. Looks like that. CoSip Driver 111 222245 111 2222345 111 222223 222 2342 What I want to do is to create a dropdown box that in this dropdown I will be selecting CoSip 111 in the list box I will see all the drivers that are assocciated with this CoSip. For example if I will be choosing CoSip 111 I will see in the listbox field 222245,2222345,222223. Please advise. Write the answer to : bteitelbaum@gmail.com Sincerely, B Here's how you'd do it for people who have a similar query and find this post. The controls used sh ...Show All

©2008 Software Development Network