Software Development Network Logo
  • Smart Devicet
  • Game Technologies
  • Visual FoxPro
  • Microsoft ISV
  • SQL Server
  • Visual C++
  • IE Development
  • Visual Studio
  • Audio and Video
  • SharePoint Products
  • VS Team System
  • Visual Basic
  • .NET Development
  • Visual C#
  • Windows Forms

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

Aliaa

Member List

vtortola
KentaroM
kkoston
laker2000
M. Abraham
stephane - Montpellier
NJCoughlan
rbennet8
Sajjad Akhter
t_hayata
Xanthius
eison
Beorne
vasudupe
Aaron128
TinaSC
nrkhokalay
Jelena
Chester03
josericardo_jr
Only Title

Aliaa's Q&A profile

  • Visual Studio Express Editions Combobox and Datagridview

    HI, I apologize if this has been covered. I'm sure there is a quick solution for this. I'm want to be able to take a selection from 2 comboboxes and display this data in a DataGridView. The Comboboxes are filled with data from a Database. Also I only want the GridView window to display data from the selection not everything in the table, so it would remain blank until a selection is made. One last thing, how do I stop duplicate data from being displayed in the comboboxes. Should I setup separate tables and make the tables relational Thanks in advance. Peter I think were making some head way, but I must be missing something. 1. I added a button so that the user after sel ...Show All

  • Visual Studio Express Editions changing a picture into acii characters

    how would i change a picture into its ACII equivalent so it would look like a picture made out or letters and symbols DMan wrote: To create an ASCII visual representation would be a very complex task that would include mapping pixels to characters... You may wish to start looking into the Imaging namespace: Namespace System.Drawing.Imaging Member of: System.Drawing Summary: The System.Drawing.Imaging namespace provides advanced GDI+ imaging functionality. Basic graphics functionality is provided by the System.Drawing namespace. ...Show All

  • Visual Studio Microsoft Document Explorer Index

    I installed Visual Studio Team 2005 on my WinXP with no problems. For some reason (perhaps the order of my installation) my help index in the Microsoft Document Explorer only has SQL server help in it. I have gone to the control panel and tried to reinstall and add new products but everything is already installed and there is no section for install VS help that I could see. The problem with this is all errors for any language (like C#) in VS usually have a link associated like "Click here for more help on this error" and when you click on it the document explorer says No help was found for this error. When I start document explorer the "index" window "Filtered By:" drop down only has SQL Server 2005 stuff list ...Show All

  • SQL Server How to compose the connection String of a SSIS package that execute another package?

    Dear All, I now have two SSIS package, "TESTING" and "LOADING". The "TESTING" package have an execute package task that call the "LOADING" package. When I want to execute the TESTING package, how can I setup the connection string so that I can edit the password of the database connected by the "LOADING" package Regards, Strike You can pass values into a package via the command-line using the /SET option of dtexec . If the package that you call is a parent package then you can pass the value through to the child using a parent package configuration. -Jamie ...Show All

  • SQL Server ability to use variables in package configurations and set their values at runtime

    Hi, My scenario: I am using a FTP Connection Manager and the configuration setting for it is being set in the package configuration xml file. So the xml file contains the Ftpserver, FTp server username and password. The package is picking up the values from the xml file and is executing successfully. I have to do this because I was not able to provide an expression to the Connection Manager Server Password property. Now, I want to pick up the ftp details from a database table and set it in the xml file during runtime. Is this possible OR something like using the <Configuration ConfiguredType="Property" Path="\Package.Connections[FTP Connection Manager].Properties[ServerPassword]" ValueType=" Variable "><ConfiguredValue ...Show All

  • Visual Studio Tools for Office CommandBar Button Images when disabled...

    Hello All, I have an addin (Outlook specifically) that creates a command bar with buttons that have images. I am using VSTO 2005 in C# for this addin. The problem I have is that when I create these buttons and images, when the buttons are disabled, the mask looks pretty bad. I couldn't find a way when the buttons are disabled to show a better greyed out image than using the mask. How can I get my buttons to have a good disabled image (similar to the 'Reply', 'Reply All', 'Forward' buttons) when they are disabled Currently I set the buttons like the following: m_btnTBRefresh.Picture = ImageToPictureConverter .Convert( TeamlookRes .refresh_16); m_btnTBRefresh.Mask = ImageToPictureConverter .Convert( TeamlookRes .refresh_16ma ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Removal of ID3D10Device::CheckVertexCache()

    Hi, I've had a bit of a break from Vista/D3D10 and just recently got a Beta-2/June SDK setup running and am getting back into D3D10 programming again. I noticed that the ID3D10Device::CheckVertexCache() method got removed between April'06 and June'06 SDK's - why ! The release notes nor the documentation seems to suggest an alternative (that is, its not just a syntactic change). Hopefully I'm not being blind and missing an equivalent way of getting this info I found the cache size information to be extremely useful in D3D9 (even if ATi hardware never exposed it) - I wrote about one particular use in my developer journal ( here and here ). I know that D3DX9 has various optimizing functions (I presume it has cache information) ...Show All

  • .NET Development Exception: An established connection was aborted by the software in your host machine

    I get following exception each time i try communicate: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to write data to the transport connection: An established connection was aborted by the software in your host machine. ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine I have very simple flow: 1. Send synchronized HTTP request 2. Call WEB service API in block mode 3. Send asynchronous HTTP request. The third request always fails no matter what i do. All requests are sent to same host though different servlets. Host machine is running Tomcat WEB service within J ...Show All

  • SQL Server How to show running totals

    I have a cube with many dimensions including one called WorkDate YMD. I also have a measure called Hours. At the moment I can see hours against any level of the WorkDate dimension, but I have a requirement now for running totals. For example, the data at the moment is this Jan 4 hours, Feb 5 hours March 6 Hours As well as the actual Hours the users now want to see the running totals. So the data will be Jan 4 hours, Feb 9 hours March 15 hours I know this should be easy as a calculated member in the cube using MDX and therefore visible in excel pivot tables but I cannot see how to accomplish this correctly ans easily. TIA Thanks guys, After all this help, I've been able to get what I'm after, the mdx for ...Show All

  • SQL Server How to for date is not null or nothing condition

    How can i write a condition for like isdate(Fields!DueDate.value) I tried isdate but i am getting an error message. what is the equivalent for isdate in sql server reporting services formula fields or calculated fields expression. Thank you very much for the information. ********************************************* =IIF(isdate(Fields!DueDate.Value), ................ ******************************************** Reddy, Try =IIf(IsDate(Fields!DueDate.value), "True" , "false" ) This should work for you. Ham ...Show All

  • Visual C++ My PE Loader cannot load EXE file which bulit with VS2005.

    I need to write a Simple Loader which can run simple EXE(PE Format) file. My loader can parse PE header: IMPORT,EXPORT,RELOC...... I bulit AP.exe with VS2005, and AP.exe imported msvcr80d.dll. So when my loader parse AP.exe's import table and call LoadLibrary to load msvcr80d.dll, but it return NULL. I have searched some information on internet, and known the "manifest" file's effect. I have read http://msdn2.microsoft.com/en-us/library/ms235342.aspx Troubleshooting C/C++ Isolated Applications and Side-by-side Assemblies and related information. And I try some method to let my loader load msvcr80d.dll successful. For example: Before call LoadLibrary, I do open AP.ex ...Show All

  • Visual C# How To iterate Through array 2 dimension

    how to eterate through array which have 2 dimensions from 0 to 255 and the result of looping must be array also 2 dimension the the first number is to represented number and the column the number represented how this number repeated in the array .... for example [ 0 0 0 1 1 8 8 5 ] [1 2 1 5 5 5 6 6 ] the target array from this array must be as follow : [0 3] [1 2] [8 2] [5 1] and [1 2] [2 1] [5 3] [6 2] Please help me for this problem just for i'm still fresh graduates what about this line result[input[x, y]]++; The array result which contain or what store in it just to i want to be more familiar with this operation and where line of code which calculate the times which each nu ...Show All

  • .NET Development what s an efficient way to get a subset of a datatable based on a query put in another table

    Hi, Let s say I have a datatable  tbl1. What if I want all the rows that have the column myCol start with a letter    'D' for example. I want the result put in a new table called tbl2  Are there several ways to achieve this, what s a good practice pls Thanks a lot you could use a DataView to filter it then get the results back in a datatable and insert it into a dataset. Example: //we have our dataset filled with data in table[0] (table 1) //now filter! DataView theView = new DataView(theDataSet.Tables[0]); theView.RowFilter = "myCol LIKE 'D%'"; DataTable theFilteredTable = theView.ToTable(); theDataSet.Tables.Add(theFilteredTable); this will now filter your data ...Show All

  • Smart Device Development Socket Error in HttpWebRequest using .NET CF

    Hi all, My PDA application is currently encountering an "An operation was attempted on something that is not a socket" error when uploading large files (22 mb) to a webserver using HttpWebRequest with its property SendChunked = true and AllowWriteStreamBuffering = False. I tested it with SendChunked = false and AllowWriteStreamBuffering = true and get an OutOfMemory exception instead. Do you guys know what are the possible causes of this Might it be that the Socket error and the out of memory exception have the same cause A little background: The program memory allocated to the PDA is about 50mb, more than twice of the uploaded file, thus i was wondering what might cause of this "OutOfMemory" exc ...Show All

  • Smart Device Development Delete myself :)

    Is it possible to flag a file to be deleted next time the system is booting I'm trying to make a .exe file that deletes it self after it has been executed.... If I try to delete my self I get a IOException.... Oystein This should probably apply to WinCE as well http://groups.google.com/group/comp.os.ms-windows.programmer.win32/browse_thread/thread/1518db68a9ae87dd/30ad07272ff23f69 lnk=st&q=FILE_FLAG_DELETE_ON_CLOSE+windows+ce&rnum=1#30ad07272ff23f69 Also see http://www.catch22.net/tuts/selfdel.asp (interesting discussion though it almost surely won't work on WinCE) ...Show All

©2008 Software Development Network