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

Software Development Network >> Paulson Abraham's Q&A profile

Paulson Abraham

Member List

Bob Reinke
FlyinBrian
Gess Man
Rafael Leonhardt
Rob Davis38041
Samer Selo
lkshikoh
LiamD
Jim_B
smartpi
__ButterFly__
PhilipHaugaard
Kamen
MHenke
adorer
Chris Honcoop
AlexReg
Kestutis
Edentheguy
mahima
Only Title

Paulson Abraham's Q&A profile

  • Windows Forms C# syntex for adding IE menu bar and address bar into system. windows. forms webBrowswer

    Well, the topic pretty much said it. How do I let the system.windowns.forms webBrowser class to show the IE menu bar and address bar. Is it doable I would really appreciate if somebody could give me the C# syntex for that or give me a hint of where I can find it. Thx! http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=969968&SiteID=1 ...Show All

  • Visual Studio Team System Multiple projects in Version Control

    Can somebody help me to clarify one thing We have few separate projects which use one framework. For those separate projects I will create Team Project - that's OK. But what I do with that framework I've got feeling that Version Control manages code on per-Team Project basis. In this case this framework doesn't belong to any particular Team Project but used in all of them. Should I create separate Team Project for that framework Can I create solutions within a Team Project which will use projects from different Team Projects Hello, in TFS Version Control Team Projects are seen as top level directories, but nothing stops you to map 2 Team Projects (framework and project) into one common root on the lo ...Show All

  • Visual C++ LNK2005 (VC8)

    Hi! I'm getting following linker error (using /verbose): 2> Searching C:\Programme\Microsoft Visual Studio 8\VC\lib\uuid.lib: 2> Searching C:\Programme\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbc32.lib: 2> Searching C:\Programme\Microsoft Visual Studio 8\VC\PlatformSDK\lib\odbccp32.lib: 2> Searching ..\debug\polling.lib: 2> Found "public: __thiscall polling::Poller_SurfAce112_E1::Poller_SurfAce112_E1(void)" ( 0Poller_SurfAce112_E1@polling@@QAE@XZ ) 2> Referenced in init.lib(SA112Init.obj) 2> Loaded polling.lib(Poller_SurfAce112_E1.obj) 2>polling.lib(Poller_SurfAce112_E1.obj) : error LNK2005: "char const * __cdecl std::_Find(char const *,char const *,int)" ( _Find@std@ ...Show All

  • Audio and Video Development JavaScript on protected and non-protected disk

    Hello, I visited this forum already some time ago and I did read a thread that said that not all JavaScript commands do work on a non-protected disk (so a disk without AACS). I searched the forum, but was not able to find it back. Can anybody shed some light on this Is it true and if so, which commands are affected Thanks in advance for any info ! " I did read that binary files must be AACS protected if the disc is AACS protected in order to receive them from a network location. This is a major hurdle Studios, and for the rest of the world, it makes "dynamic" disc really difficult. "  - No, it is just a case where the original author has to maintain the remote file system since he is the one who ...Show All

  • Smart Device Development Killing Processes - CF1 SP3

    If I want to kill a process (if and only if it is running), how can I do this using CF1 PInvoke Thanks again! (as always) Please see this: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/ProcessManager.asp ...Show All

  • Windows Forms Implementing ComboBox filter on window form .NET 1.1 Framework

    Hi, I am currently using .net framework1.1 and window forms. In one form i got two combo boxes in which values are coming from two different tables. I want to make it such that if a user selects item from the first combo box it filters the values and shows only relavent ones in the second combo box. Please give some idea or option to do it. thanks Hi On the SelectedValueChanged event of the 1st combo box, call a method which will populate the data for the 2nd combo box, according to the value selected in the 1st combo box. Hope this helps. ...Show All

  • SQL Server sql server lockup after strange error in log, help please.

    Can anyone help me solve why my server is locking up. We're running sql server 2005 ent on a 2 cpu dual core server. With 3gig. Once each the last couple weeks, the machine has hung and the only thing I can find that's suspicious is on the sql server log.  It's below.  After the excerpt is about 50 more different memory errors.  As far as I know there's no ssl configured for log in, it mostly uses private lan cards for security between it and the web/application server. 05/31/2006 14:39:48,spid2s,Unknown,MEMORYCLERK_SQLQUERYEXEC (Total) <nl/> VM Reserved = 0 KB <nl/> VM Committed = 0 KB <nl/> AWE Allocated = 0 KB <nl/> SM Reserved = 0 KB <nl/> SM Committe ...Show All

  • Visual C# How to go through a list of increasing variable names.

    My problem is that have 20+ controls of my form. Lets call them digitalPanel1, digitalPanel2, .... and so on until 20. they all get their values from a an array stored in a class called mySensor for .... mySensor.iTemps[x]; I cant use the x index because digitalPanel1....20 is not an array. there must be another way to do this instead of typing digitalPanel1 =.... digitalPanel2 =.. . ..................20 Anyone Thanks, but i cant get it to work. this.Controls[bNTEPanel + x.ToString()]. Value = 50; where value in an property of this control. basically bNTEPanel1...20 are instances of custom control ( ChartFX gauges ) called digitalPanel. What else can be wrong Edit: this is the declaration of ...Show All

  • .NET Development call stored procedure in C#

    This is as far as i could get but i am trying to call a stored procedure from my C# application and use a textbox to pass the parameter to then i want to click the button and it uses whats in the textbox as the @OrderID which is the parameter i need to pass it then i want to add the items it returns based on what i enter in the textbox to my listBox1.Items.Add("data".ToString());....any help where i should go     string connect = System.Configuration. ConfigurationManager .AppSettings[ "conn" ]; SqlConnection scn = new SqlConnection (connect); SqlCommand spcmd = new SqlCommand ( "CustOrdersDetail" , scn); spcmd.CommandType = System.Data. CommandType .StoredProcedure; spcmd.CommandText = "Cu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Wrapping a model with a repeated texture

    I have a large, nearly flat cube which represents the ground in my 3d world. I'm trying to apply a grass texture to this cube. Because of the size of the cube any applied texture stretches. Is there an easy way to repeat the texture being applied to eliminate the stretching problem I have it looking really nice in Maya, but when I export it to .x it continues to stretch a single copy of the texture across the surface. Does an operation like this require the use of HLSL I could just create a bunch of smaller cubes that are closer to the texture size and piece the ground together, but that seems like a messy way to go about it. I'm new to this, so anything to point me in the right direction would be helpful. ...Show All

  • Visual C# How to write Registry key value for logged in user thru Windows services?

    Hi, I am developing one windows service, which takes the file from network server, copied to the local folder and that file name and path should be updated in current user's registry. By doing this in windows services its giving file not found exception. What Account to use for this and how to set the registry for the current user who logged in Can we run windows service that run under the current user and update his registry settings Thanks in advance, Jagad You can either run the Windows Service under the Local System Account or under the security context of a specified user. You can retrieve the name of the logged on user from your service by for example getting the owner of the explo ...Show All

  • Windows Search Technologies WDS won't index my Outlook files

    WDS was working fine - no problems - and then stopped indexing my Outlook files - about 2-3 weeks ago ( ). I am on XP Pro x64 edition - MS Outlook 2003 (SP2) - and WDS 3.0 ( which I believe is required for x64). I have noticed the following errors in my application event log: Event Type: Error Event Source: Windows Search Service Event Category: Gatherer Event ID: 3102 User: N/A Description: The per-user filter pool for session 0 could not be added. Details: The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. (0x800704dd) and then... Event Type: Error Event Source: Windows Search Service Event Category: Gatherer Event ID: 3083 User: N/ ...Show All

  • .NET Development ProcessStartInfo to execute vb script with certain user

    I tried to use ProcessStartInfo to execute a vb script with certain user name. My Code: --------- ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = fileName; psi.UserName = userName; psi.Password = password; psi.Domain = domain; psi.UseShellExecute = true; Process.Start(psi); The Problem: ---------------- When I set UseShellExecute to true --> the error is "The Process object must have the UseShellExecute property set to false in order to start a process as a user." When I set UseShellExecute to false --> the error is "The specified executable is not a valid Win32 application." Any Help please Bishoy here is a silly Q, is the .NET Framework al ...Show All

  • Commerce Server Removing items using custom pipeline component.

    In our model, we use a soft delete of products to indicate a product is no longer being sold. Our custom property is currently not checked by the Basket Pipeline, so what I did was create a custom component that checked this property and if set, it gives a custom error message and then adds the Item["delete"] = 1 line. This component was put in the basket pipeline after QueryProdInfo and Before RequiredProdInfo. The problem is that I don't want the RequiredProdInfo to display it's message saying "Items in your order have been removed because they are no longer sold" on top of my custom error messages. Can someone tell me how I can remove the line item myself as RequiredProdInfo does instead of setting the "delete&q ...Show All

  • .NET Development Re-usable data adapter classes ?

    Hi all, I'm defining a web service which will take data and pass it safely into database stored procedures. It seems odd to create, define, use and then dispose of DataAdapter, DataTable, Command, etc classes only to do it all again in the other methods and I was looking for advice on the best way of doing this (and the pitfalls others have found). I know the connection will be reused from the connection pool. Do the associated Adapter etc objects have to be reinstantiated if a Connection is closed and reopened Does a WebService have a constructor entry point or is it simply a collection of callable methods If so I guess I could define a Singleton class with appropriate methods and reuse that, in which case I guess it would make ...Show All

©2008 Software Development Network