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

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

Shaymaa

Member List

Bay03
Per Broms
Tommy Vinson
Ruud Baars
Gennady Wexler
dotnetdumps
CajunReaper
Afr0
c_marius
TheAmiMan
Afsoon
Jd Williams
Lenn
Soccer8
matrixo
joerage
amila
Karol Rewera
Max Andre Bundchen
Nocsaron
Only Title

Shaymaa's Q&A profile

  • .NET Development >NET PaypalIpn

    Hi i am trying to develop a page that use's paypal's IPN my code is the following: Loads of variables declared as strings     Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Try             'Loads of variables picking params using request.params             strToSend = Request.Form.ToString()             'Create the string to post back to PayPal system to validate &nb ...Show All

  • Visual Studio Is there a way to get MSBuild to use .sln files but determine dependency order for builds?

    I was thrilled to start playing with MSBuild to automate building our projects.  We have several solutions which build anywhere from 1-2 projects up to 50-60 projects.  One problem I've noticed however is that MSBuild doesn't seem to respect the dependencies to provide the proper build order when an MSBuild task loads a solution.  This sort of defeats the purpose of allowing the MSBuild task to load a solution if the build order is not respected. Is there any way to tell MSBuild to respect the build order through project-to-project dependencies   I poked around in the assemblies and it doesn't look like there is any way t ...Show All

  • Visual Studio Express Editions Where's the Icon Designer?

    Is the Icon Designer (trumpeted in the Introduction to VB2005 book) unavailable in VB Express I can't find it anywhere :-(> Alternatively, where can I get hold of the standard Windows icons for opening files, printing etc Hi pete I am new to vb and I am glad I can be of help...... If you download ( Liberty Basic ) trial version......it includes an icon editor which does not expire after trial period cheers bronco ...Show All

  • Visual C# Icon

    Ok. I have no problem setting the icon I want for my program. But when I install the program on my machine, it has that box with a play button on it, as its icon. I do I change this Hello, Did you set the icon in the project properties (applications - resources) A single Icon can contain different sizes and color depths in one single ico file. On internet you can find applications that help you creating these icon's. ...Show All

  • Visual Basic graphics flicker

    Using VB2005, I am drawing a replica of a paper form on panel control, which is on a mdi child form. The graphics (lines and text) are complex and since there is no autoredraw property as in VB6, there is considerable flicker as the panel scrolls up and down or needs to be repainted. VB help references doublebuffered property (set to true on my form, but not a property of the panel control) and the SetStyles method (not a method of the panel control). These seem to be no help. Previous posts have suggested using an internal bitmap. I have implemented that. I do all drawing on the bitmap and in the paint event copy the bitmap to the pan ...Show All

  • .NET Development how to change the runtime version of an assembly

    suppose an assembly is required to have a runtime for v1.1.43xx of the .net framework. how exactly is it run in .net v.2.0.50727. can we target the 2.0 version natively without recompiling. what is the purpose of app_name.vhsot.exe file thanks for reading. This is a pretty good description of the VS hosting process: http://blogs.msdn.com/dtemp/archive/2004/08/17/215764.aspx If you want a 1.1 app to run with the 2.0 framework, look at config files and the requiredruntime documentation such as: http://msdn2.microsoft.com/en-us/library/w4atty68.aspx ...Show All

  • Windows Forms File to Image Conversion

    I want to convert any files in image format  and vice versa. Can Any one help me   You can't do any file, you need to write a converter foreach file type. For example a Textdocument, you need to write the text in the document to an image so it can be displayed. You can't just change the extension, because this won't effect the file format. ...Show All

  • Visual Studio Express Editions How do I remove items with certain characteristics from a ListBox?

    Hello all, I have a ListBox setup to pull the usernames of all of our users from our Novell eDirectory. It works perfectly. One thing I'd like to do though, is have a CheckBox that I could check and it would remove all of the users that are not logged in from the list. I already know how to check if I user is logged in, but I don't know how I can loop through each Item in the ListBox, check if the user is logged in, and then delete that list entry if they're not Here is my basic structure... Dim oNovell As New clsNovellAPINET 'A class that uses the Novell API.... For Each str As String In lstUsers.Items oNovell.BoundObject ...Show All

  • SQL Server Hierarchical XML import?

    Hello, Can anyone point me at a tutorial or sample that shows how to use IS for importing an xml file containing hierarchically arranged records I have a file which contains multiple orders , the orders contain multiple line items.. the file also contains an element with details of the file source etc... So, I want to make an insert in the FileLog table an then make inserts into the orders table .. then make inserts into the OrderItems table which will have the foreign key from the orders table in the records... if you get what I mean... But I have searched hign and low and can't see any info on how to load anythi ...Show All

  • SQL Server SQL Server Replication Problems, need help.

    I have two Windows 2003 Servers (Enterprise Edition) with SP1, trying to do a replication between the two servers. Both servers running SQL Server 2005 (Enterprise Edition) with a full installation, every component is installed, and with default configuration. Besides, both servers have Visual Studio 2005 (Team System) with almost every compoent installed, but without 64-bit compoents, since the both servers use only 32-bit CPUs. The both Servers are in Workgroup, not in a domain; and they are both connected with a hub. I name Server A as “HostA”, its Administrator’s password is “sapass”; Server B as “HostB”, its Administrat ...Show All

  • Windows Forms Splash Screen that runs code ... how to handle exception and eventually close the application!

    Hello everybody, I have an application that has a splash screen with perform inizializations (calling my assemblies etc..etc..) I created 2 forms one for the Splash Screen and the other is the MainForm. On MyProject I select properties ->Application ->startup form= MainForm. I checked "Enable Application Framework" because I need to check the "Make single instance Application" and Splash screen: startUpScreen. In the constructor of the startUpScreen form I perform all the initializations etc..etc.. I'd like to trap the possible exception and eventually close and exit from the application but if I close the startUpScreen form the ...Show All

  • Visual Studio 2008 (Pre-release) Use of ObjectDataProvider ?

    Hi, I want to use the ObjectDataProvider provider in a ListBox. I want to display informations from my C# class in a listbox. <Window x:Class="DataBindingProof.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:m="clr-namespace:DataBindingProof" Title="DataBindingProof" Height="700" Width="700" > <StackPanel Orientation="Vertical"> <StackPanel.Resources> <ObjectDataProvider ObjectType="{x:Type m:MyStrings}" x:Key="MyStringDa ...Show All

  • Visual Basic IPHostEntry = Dns.GetHostEntry(myIP) doesn't work in XP

    Here's the deal. I got this code to work on 2000, but not on XP here's the code: Dim client As New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp) Dim ipHostInfo As IPHostEntry = Dns.GetHostEntry( myIP ) Dim ipAddress As IPAddress = ipHostInfo.AddressList(0) Dim remote_ep As New IPEndPoint(myPort ) usually, the myIP is pointing to a different computer, and everything works fine. but on the occasion that the myIP points to the computer that the program is actually running on, I get an error saying No such host is known on the Dns.GetHostEntry Like I said, though, it is ...Show All

  • Visual Studio Express Editions VB Express Beta 2 Problem

    I am tryin to distribute an aplication to another computer in my home but always when I install it on the new computer appears an error. I dont understand why if in the new computer the .NET Framework 2.0, version beta already is installed, the new program instalator try to install it. When the instalator download the file n 2 of 4, the next error appear:  Instalation program detect that C:\Document..\User\Config...\Temp\VSD5.tmp\DotNetFX\WindowsInstaller-KB884016-v2-x86.exe has changed from the first time it was published.... Please, HELP me. Thanks. Yep.  Applications created with VB Express, C# Express and J# Express requi ...Show All

  • SQL Server install SQL Server Express

    when installing SQL Server Express on XP home edition it hangs wilst searching for IIS compnents I tried to install the just released (11/7) SQL Server Express 2005 on Windows XP Home with SP2.  It again stopped with message "detecting installed IIS".  The requirement says WinXP Home with SP2 is support.  What's wrong with this thing   ...Show All

©2008 Software Development Network