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

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

OldmanMarcin

Member List

no_and_fo
akin_l
Wayne Pfeffer
kendy
Ted.
Puspak
shaun_vb6
LucasPc
Blader
arro239
cipher2079
DavidSB
Ruchits
biopau
nerdyome
Bernie West
JenniferBMiller
Boulderdude
hwg
Kennon2005
Only Title

OldmanMarcin's Q&A profile

  • Visual C++ XP style for IE Toolbar

    Hello friends, I m creating a toolbar for internet explorer. My application is VC++ ATL DLL which attach a toolbar to IE. I m using VS-2005. Now i implemented XP style for the toolbar using manifest file. Its working fine, means my buutons on toolbar are looking in XP style, but now button size has been increased. Before XP style size was (22 , 81), but after XP style it becomes (30 , 87). Due to this reason my buttons are not fitting on the toolbar. Buttons bottom edge is hidden due to increased height. if someone know what is the prob then plz reply.... Thanks in advance. ###Harry### Did you manage to fix this problem I have the same problem with my MFC application (using VS2005), all the control become bigger when the xp theme ...Show All

  • Visual Studio Express Editions Best way to write video player

    I need advice on the above matter. 1. DirectX.AudioVideoPlayback The library didn't provide a function/method to clean up the screen. 2. Media Control Interface (MCI): if I set a playlist with 10 video files, when the player play the last video i notice the first image repeat twice. 3. Windows Media Player control I didn't try out this component as most of the forum suggest that the component is not stable when import into program. For my case, the player is most probably play more than 1 video so is not user friendly each time the user need to click the open button to select video files. The video will clean up the screen each time it finish the video. Do anyone know any other best way to solve the above matter. Please advice. Thank ...Show All

  • Visual Studio Sandcastle - MRefBuilder and .NET 3.0

    How should I go about documenting stuff using .NET 3.0 framework I tried changing the mrefbuilder.exe.config appropriately (both using Sandcastle Help File Builder and manually) but I keep getting "Unknown target platform '3.0'" If I set it to 2.0.50727 then it "works" but links to 3.0 specific things are obviously missing Is this a known issue Either way, can this be fixed as 3.0 now is officially released regards, Simon Anand, Many thanks for the hints. Don't want to be a pain but it would be helpful if you could include the build string, is this possible I had more success with the 'core' .NET 3.0 assemblies than I did when trying to include the WCF, WWF, and WPF assemblies. Was your team able to refl ...Show All

  • SQL Server Vista "Ultimate" and Sql 2005 Developer's Edition

    Is sql 2005 Developer's Edition\Vista Ultimate OS an officially supported combination Or not yet TIA, Barkingdog Yes, it is supported. If you check the lastest version of BOL, you will get confirmation. Vista is an client operating system, it cannot support SQL Server 2005 Enterprise but it support other editions. ...Show All

  • Visual Basic Suppressing events such as text change

    how do i or can i suppress events such as text changed. cos i want to set text in code and hence so not need it to be validated and stuff err, actually i thought of wanting the user to be able to set a default value to the text box depending on a combo box input, then he can change the text, (which then i want to validate). but i think this is extra and if it can't be done then its ok. after all i am just learning ...Show All

  • Visual Studio 2008 (Pre-release) Multiple Endpoints Sample Broken

    I am trying to run one of the WCF Samples illustrating how to configure multiple endpoints, (located at TechnologySamples\Basic\Service\MultipleEndpoints), however I receive the following error when it tries to reference the second endpoint: {"There was no endpoint listening at http://localhost/servicemodelsamples/service.svc/secure that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details."} I've tried for several days to get a simple example to work but I've noticed that the client is never able to find any of the non-default endpoints (those with relative addresses, 'secure' in the sample mentioned above). Here is a copy of the web.conf ...Show All

  • Visual C++ Memory leaks in managed classes that use dynamically-allocated native structures

    I apologize for the textbook question but I have spent enough already looking for the answer in the "textbook" (MSDN) not finding the answer that I decided to ask here, I hope you don't mind throwing in a quick answer. I am forced to use dynamically-allocated native data structures in managed classes and I am getting memory leaks because I am not properly freeing the allocated resources. I was hoping to add a destructor to the managed class but that didn't help - the destructor was never called when the object was destroyed. After reading the article "Changes in Destructor Semantics" in the Library, I still can't figure out why (note: VC++ 2005 is my first interaction with .Net – I skipped 2002 and 2003). I know there is more than one ...Show All

  • SQL Server Variable/Expression/Property Confusion

    First and foremost, I'm officially and thoroughly confused between Variable, Expression and settings. I need help clearify this up for me. I'm going to use the Flat File Connection as an example. I have: > A global variable named: FileToImportFullPath (string) that stores the full path of the file I want to import. Note: the file path will change has the package executes (the location of the file depends on a number of conditions, namely the Date and Time of the package execution) > A Flat File Connection Manager used by a Flat File source in the package's main Data Flow So ideally, I want the Flat File Connection Manager's ConnectionString to be set to whatever the value of FileToImportFullPath variable is at the ...Show All

  • Visual Studio Team System CTP7 Error: Create unit test fails

    When I right click a stored procedure in my project and select "Create Unit Tests...", the command fails with the error "The system cannot find the file specified. (Exception from HRESULT: 0x80070002)" I use CTP7 and this Visual Studio Version: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 I am running English VS and your workaround solved the problem. However, this makes the "create test units" not as easy as it should be. Thank you for your assistance. ...Show All

  • Visual Studio Custom painted Diagram background

    Hi, This is no question but just some info on a thing I tried to do. I was looking for a way to have a textured background just as with the dataset designer. It did not seem difficult at first were it not for the fact that the graphic routines implemented by default use inches as the unit. So the key was to temporarily switch to pixels. Here's an example: public partial class DALDesignerDiagram { public override void OnPaintShape( DiagramPaintEventArgs paintArgs) { paintArgs.Graphics.PageUnit = GraphicsUnit .Pixel; Bitmap bitmap = Sfx.Dsl.Designers.Properties. Resources .Pattern; // Adapt to point to your bitmap resource. TextureBrush textureBrush = new TextureBrush (bitmap, new Rectangle ( new Poi ...Show All

  • Windows Forms Problem in accessing data from DataGridView cells

    hello every one! well I got this query here, I'm really stuck in this error. I'm working oin a master detail form in .net 2.0 C# in Windows Forms. its a System.ArgumentException that I'm getting here. I've these dataGridview on the form. I've made a typed dataset for it. the tables are these PurchBill(PurchBillID, VendID, Bookno, BillDate) Purch(purchID,purchbillID,Serial, ModelID, PresentAt,PurchWarranty,PurchPrice) ProdLine ProdModel and vu_manNames thats a view I've set up seperate dataGridViews for Purch, ProdLine and ProdModel and for selecting the manufacturer name here. Look at this code private void saverecord() { try ...Show All

  • Visual Basic DataTable as parameter.

    Hello to everybody I have class with private DataTable member. I have function which initializes this member using another datatable as parameter. Like this. Class.InitTable(byval SourceTable) But if I clear SourceTable, table in the class is clear too. I'm passing SourceTable by value, not buy ref so question is how should I declare private member in my class or rewrite initializing function to separate source table and privaet member table ...Show All

  • SQL Server On error i want to send error description as mail

    I have create a SSIS package, for data export import process, but if my task get failed then i have to send a mail with proper error description as the SSIS generate in output window. Can any one sugget me to, how can i store that error desciption in my variable. Thanks in advance.  Hi..   1. In OnError Event Handler, Add a Script Task.. 2. Define ReadWriteVariables  value  in ScriptTask Properties like this           ReadWriteVariables  |    User::vName,System::ErrorDescription   3. In VSA, edit your script like this..       Dts.Variables("vName").Value = Dts.Variables("ErrorDescri ...Show All

  • SQL Server Manual validation of external metadata

    Hi, is there a way to start validation of external metadata manual My problem is this: The package uses a variable as connectionstring for flatfile source, and another variable for the destination table. Running the package gives a warning about external metadata that needs to be updated. Normally I update this data by just opening the data flow, and answering the question for updating with yes. This time that deosnt work, I think because the variable is not set, so there can not be any conflicts with external metadata. I dont want do disable validation, but just validate one time and then save the package. Any ideas Regards, Jan Hi Jan, I dont want do disable validation, but ju ...Show All

  • Visual Basic Is VB2005 and VB.NET are same?

    Hi, I am new to VB2005 programming and i know it is a bit stupid question to most of you people. But i am unable to get a comprehensive answer to this question on different site. So i am confirming from you people that "when someone is referring to VB2005, does this mean that he is talking about VB.NET as well" in short, is VB.NET and VB2005 are same thing or not cheers, Using VS2005 you can create application which will require DOT NET 2.0 on the deploying machine. While creating application you can use any language (VB, C# etc.) Using VS2003 you can create application which will require DOT NET 1.1 on the target machine. again, while creating the application you can use any language of your choice. ...Show All

©2008 Software Development Network