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

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

BilalShouman

Member List

yjacket2006
Minherz
LamptonWorm
Trevor E Hilder
Coritani
prodonjs
No-spam Sam
Chedid Haddad
Polity4h
Xiao Feng
Jimmie Johnsson
Rajesh batchu
Jolly Jelly Bean
E Jensen
Ronaldlee Ejalu
Chidu
Pascal Frey
that_guy
Okugops
sureshv
Only Title

BilalShouman's Q&A profile

  • .NET Development Files inside dotnetfx3.exe

    Hi, I'm creating a .NET Framework 3.0 installation report and trying to figure out the impact it's going to have on our current environment. So far I've unzipped "dotnetfx3.exe" and tried to demystify the content of the installation package: 1. What is the vs_setup.msi file for Does it have anything to do with Visual Studio .NET 2. Does the .NET Framework 2.0 installation package contain the hot fixes Is there a difference between the .NET Framework 2.0 that is supplied by this package and the previous standalone version of the framework Thanks, Reza I found the answer to the first question in here: http://msdn2.microsoft.com/en-us/library/aa964979.aspx I'm going to run som ...Show All

  • Visual C++ Error messsage

    The version of SP is 20040803.231319. It has been suggested that I post my query in another forum. This I will do. Thanks for responses. I changed the following files: C:\ProgamFiles\BTBroadbandDesktopHelp\Smartbridge C:\ProgramFiles\BTBroadbandDesktophelp\classis\bin C:\ProgramFiles\BTBroadbandDesktophelt\de\jsharp\bin C:\ProgramFiles\Motive\Common I didn't touch any of the files in Document\Settings What does BTW stand for ...Show All

  • SQL Server Execute Package Task: setting child variables

    Hi, Let's say I have a package taking as parameter "InvoiceID". I want to execute this package as a child in another package. The parent package gets the list of invoices to produce and calls the child package for each entry of the list. How do I pass the InvoiceID to the child I know I can use the parent's variables from the child but I don't want the child package to be dependant on the parent package. For example, I might want to execute the "child" package as a stand-alone in development (providing it with a predefined InvoiceID). I might also want to call the same child package from another parent package with other variable names. What I would like to do is "push" the value instead of "pulli ...Show All

  • Internet Explorer Development window handle for active tab

    hi folks, when a document completes loading in a new tab, my bho gets notified via DISPID_DOCUMENTCOMPLETE. how can i get the window handle for the tab window i've tried the EnumChildWindows/IsWindowVisible combo but it's not always reliable. it would seem IE7 has the handle but how to get it any ideas answering myself as well as to john... Internet Explorer_Server class is the child of Shell DocObject View, which itself is a child of TabWindowClass. So tracking down this is not bad, but the my real problem is this.... when i receive DISPID_DOCUMENTCOMPLETE event as i open new tabs, once in a while, the Internet Explorer_Server window does not exist yet. i determine this via the ...Show All

  • Visual C++ Free Heap block modified after it was freed

    I have developed an MFC application usin VC6. In this application I am allocating about 4kb of memory using new operator and deleting it using delete operator. But when i again use the new operator to allocate some more memory than this error is coming. If i remove the delete operator code than this error does not come but i dont want this because than there would be memory leaks in my code. Please help me out................ Any kind of help would be appreciated. Searching the web to determine how a memory corruption occurred is a lot like searching the web to figure out how you tripped on the sidewalk. The debugger is your friend on this one. :) ...Show All

  • Windows Forms Creating image album/list

    Hi, I'm trying to create something like this: http://img390.imageshack.us/img390/6451/smilieshn6.gif Basically it would load all images from a folder I specify and create this image list. Should I dynamically create PictureBox elements or is there a better way to do this My second question is how to get Image format (jpeg, gif, png...) if I have image path but file extension does not match its type. For example: all files are named *.test. Thanks :) Load an image thus: System.Drawing.Image image = System.Drawing.Image.FromFile(fileName); It will load jpegs/bmps/gifs etc, regardless of the extension.  Once it's loaded it's basically 'typeless', ie. it's just a bitmap in memory.  You can sa ...Show All

  • Visual C++ Screenshot in Winlogon Desktop Problem

    Hi, I have a problem capturing the screen in Winlogon desktop, all i get is a black screen. I have an intreractive service and i can actually capture the screen in the default desktop, but as soon i press CTRL+ALT+DEL and the service captures the screen i get the black screenshot. I think i need to switch to the winlogon desktop. This is the actual code the service is running when i detect a ctr+alt+del /// CODE old_desktop = OpenDesktop("Winlogon",0, FALSE, DESKTOP_CREATEMENU | DESKTOP_CREATEWINDOW | DESKTOP_ENUMERATE | DESKTOP_HOOKCONTROL | DESKTOP_WRITEOBJECTS | DESKTOP_READOBJECTS | DESKTOP_SWITCHDESKTOP | GENERIC_WRITE); SwitchDesktop(old_desktop); ScreenShot("c:\\screen.bmp"); ///CODE-+ I've been looking all aro ...Show All

  • Visual C# How to create a macro language

    Hi I would like my application to have a macro language that among other things can execute small scripts at runtime to test certain conditions and set object attributes in my application. Any suggestions on how to achieve this Can C# be executed runtime or should I rely on the VB Script engine Any suggestions on how to approach this Rgds Bertrand There are basically two ways you can do this. Either you can create, compile, and run .NET code at runtime, or you can use an interpreted language. If you do the former, you'll have to package your runtime code into a static method or the like, compile it, load the resulting DLL into your application domain, and then use reflection to call t ...Show All

  • Visual Studio Express Editions Indexing tables in a ListBox

    I'm working on a program that displays the contents of a table. On my main form, I want to have a ListBox containing the names of all the tables in the database. So far as I know, the code below should do that, but every time I press F5, I get an InvalidOperation error with the code "An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object." Here is the code: Dim Customers As OleDb.OleDbConnection Dim CustomerList As New DataTable = Customers.GetSchema( "Tables" ) Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load For Each row As Data ...Show All

  • Visual Basic Search Results on Multiple Text Lines

    Hi, I am trying to create a Search form to display the requested information from an Access Database file. This is the code in Visual Basic 6.0:   Dim SearchString As String Data7.Recordset.MoveFirst Do    P = Data7.Recordset.Fields("LastName")    SearchString = Left(Text1.Text, Len(Text1.Text))    Q = Left(P, Len(Text1.Text))        If Q = SearchString Then           Text7.Text = P & ", " & Data7.Recordset.Fields("FirstName")           Text8.Text = Data7.Recordset.Fields("ID")           Text10.Text = Data7.Recordset.Fields ...Show All

  • Visual Studio 2008 (Pre-release) Changing ComboBoxItem Properties from a DataTemplate Hosted in the ComboBoxItem Container

    I'm trying to change the ComboBoxItem's IsEnabled property from a DataTemplate and I can't figure out how to do it. How can I change the property of a ComboBoxItem container from the DataTemplate that's hosted in the ComboBoxItem container Is it even possible Kevin Thinking of it, a binding of TwoWay will work just fine too but have different semantics, aka if the ComboBoxItem IsEnabled gets changed, so will your root element, whereas OneWayToSource will set the parent to whatever the child decides. ...Show All

  • Internet Explorer Development Form Submit event handling

    hi, I am able to capture OnSubmit event when it is submitted using Submit button( <INPUT type=submit> ). But i receive no submit event when form is submitted using javascript code. e.g. funciton:submitfor() { form.submit(); } How are you catching the OnSubmit event Is this in a BHO or extension Please provide some more details and we can try and help. -Reza ...Show All

  • SQL Server Query much slower on 2005 compared to 2000

    We have a database developed using SQL Server 2000. We are in the process of testing it on SQL Server 2005. So far i've not done much testing but it has become apparant quickly that quite a lot of queries are performing much slower in SQL Server 2005. I am currently trying to figure out why a particular query is not performing well. One SQL Server 2000 it runs in around 6 seconds. On SQL Server 2005 it takes around 50 seconds. The query is this... SELECT StartBase, StartPoint, PickupPoint, PickupInstructions, SingleJourney, Destination FROM vwJobs WHERE StartDateTime BETWEEN '2006-09-01' AND '2006-09-23' vwJobs is a view in our database. The view includes many UDF's and also has a UNION which combines two seperate table structures ...Show All

  • .NET Development Get AbsoluteRange of a NamedRange Using OLedb, Excel

    I am currently using OLEDB to read the data from excel using C#. I have a scenario in which i will pass a NamedRange and I need to get the data from the NamedRange and also I need to read the data from the cell adjacent to the NamedRange. What I was planning to do is to get all the data in a dataset and then if I have the absolute range information of a NamedRange, i can filter the dataset based on that and i can read the cell adjacent to it from the dataset. But now am not able to find any way to get the absolute range of a named range. I have tried using " GetOleDbSchemaTable", but it will provide the absolute range information only if there are header information in Excel.Else it will return default values F1, F2..etc. ...Show All

  • Visual Studio 2008 (Pre-release) Using another controls events

    Hey! This is a follow up on my last thread about Office 2007-like window frame . This is what I have done, pseudocode: Window window = new Window(); window.WindowStyle = none; and then in my app my visualtree looks something like this: Dockpanel main = new DockPanel(); WrapPanel wp = new WrapPanel(); main.Children.Add(wp); and "main" has "window" as parent. Everything is looking fine, however, I miss the feature to move the window, maximize/minimize it with the mouse. How can I do this To do this I have tried the following: I put a Label in the WrapPanel and then adds eventlisteners to them like this: lbl.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(lbl_MouseDoubleClick); And then we ...Show All

©2008 Software Development Network