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

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

rgalgon

Member List

Chirag Patel
Jessica Alba
AlanKohl
Flecko1
Ranier
joe.hamilton
Joe2005
Radu Carlan
seiden
Onur Ozcelik
Can-Ann
MNDANG
matlock85
white2grey
Henrik Skak Pedersen
citygirl
John Lieurance
xyzt
domfos
xeondev
Only Title

rgalgon's Q&A profile

  • Visual C++ Microsoft Visual C++ Debugger

    Hi friends! Excuse me i have a question! How can i do a program in Visual C++ 6.0 or 2005 using assambler Microsoft Visual C++ Debugger is a tool or component or what How create a new project in VC++ 6.0 or 2005 to start program in assambler thanks! I think this section of docs may answer all your questions, http://msdn2.microsoft.com/ko-kr/library/afzk3475.aspx Nikola ...Show All

  • Visual C++ RegSvr32 and global data and extern problem

    Im having a strange problem with regsvr32 when registering a DLL. Get the following error message: Linking... Creating library C:\DEV8\cbwbCalculator\Debug\cbwbCalculator.lib and object C:\DEV8\cbwbCalculator\Debug\cbwbCalculator.exp Embedding manifest... Registering output... Project : error PRJ0050: Failed to register output. Please ensure you have the appropriate permissions to modify the registry. It seems if i start commenting out some global data references that use extern then problem seems to go away - but i have lots of externs. extern BOOL bIsOLE; I dont understand why global extern references would cause a problem with regsvr32... Can you just not use global data references with a COM DLL Can ...Show All

  • SQL Server Execute Package Task always fails.

    I have a package (i.e. child package) which runs itself perfectly fine without displaying any error. However when I embeded this package inside another package (i.e. parent package) using Execute Package Task. The task always fails. It seems strange enough. The child package has two variables that need to be passed in from parent package. Can any expert here please help out Thanks. - Steve Perhaps you should look at making some packages re-usable if you do so much copy and paste. It is often easier said than done, but since you say you do it so much and you find this such an issue I'd be surprised if you could not get some reuse. The benefit of the current behaviour is the ability to rename connections withou ...Show All

  • .NET Development Is it possible make new thread with return value???

    Hi , I want to make new tread but to return data set. IS it possible public static DataTable fillAvailableEquipments() { getData=new ThreadStart(fillAvailableEquipmentsByTread); getDataThread=new Thread(getData); getDataThread.IsBackground=true; if(Defaults.Lenguage == Language.English) getDataThread.CurrentUICulture = Defaults.enCultureInfo; else getDataThread.CurrentUICulture = Defaults.ruCultureInfo; frmHead.MyTread=getDataThread; getDataThread.Start(); } private static void fillAvailableEquipmentsByTread() { DataTable dt = some method that return DATA TABLE; } It give me error becouse thred has to be VOID ...can it be done in some other way HELP.... ...Show All

  • Smart Device Development help with bluetooth support

    Hi Guys, Have a problem and i've been racking my brain for the past little while. I'm trying to get my phone application to have bluetooth support. OS: Windows Mobile 5 Problems:ask I'm able to answer incoming calls via the bluetooth headset however if I answer the call pressing the green button on the phone I'm still getting ringing on the bluetooth headset device. Is there something I should be doing, possibly to the Audio Gateway for this to stop. I know that on Windows CE there are APIs to post network component messages (i.e. BthAGOnNetworkEvent) to the Audio Gateway however these methods are absent within my Windows Mobile SDK Any help would greatly be appreciated Thanks Q. Hi , ...Show All

  • Windows Forms VB background image properties

    Hi, A real beginner's question I'm afraid. I've been working my way through the Learn Visual Basic lessons (via the link on the front page of Visual Studio) and am at the Images/Picturebox lesson. At the end of the lesson, it gives you some code to paste to change the background image property when you click on the background (note that in the sample below I have changed this to clicking on a button as a test to see if it made any difference). Anyway, nothing happens. I have checked and double checked that I did everything right - all the rest of the lesson works but my background image property does not change. Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Clic ...Show All

  • SQL Server SMO BulkCopy

    We have a SQLServer 2000 stored procedure, which imports data from files using SQL-DMO BulkCopy object(sp_OACreate are used to create objects). We also use Format files to aide the import. Now, we are planning to convert this stored procedure to .NET application using Visual Studio 2005. Books Online says I have to use SMO Transfer object. But I could not find any information/examples how to BulkCopy using this object. Any guidance in this regard would be helpful. Thanks For 2005 the bulk copy functionality you require has been moved to the .Net framework. SqlBulkCopy Class Note: This class is new in the .NET Framework version 2.0. Lets you efficiently bulk load a SQL Server table with data from an ...Show All

  • SQL Server Saving Query Result to new file

    Hi Gurus, Can u help me out in the following two scenario/problems. 1. I want to save the query results (which is generated within execute sql task) to file (which does not exists & should be created at run time). is it possible 2. Can I define the file name, in Flat File connection Manager, dynamically (by using some variable) Your support and help will be appreciated... regards, Anas Zadoras wrote: Hi Gurus, Can u help me out in the following two scenario/problems. 1. I want to save the query results (which is generated within execute sql task) to file (which does not exists & should be created at run time). is it possible It is, in theory, possible yes. But you will need more ...Show All

  • SQL Server salt vs. Initialization Vector

    I have seen these terms used but don't understand exactly what they are and how they differ. Could I use one without the other or are they a "linked" pair TIA, Barkingdog Salt is a generic term referring to the addition of some random data to an algorithm, to randomize its output (a process also referred to as "salting"). You can salt encryption or hashing, for example. IV stands for initialization vector and is a specific way in which block encryption algorithms are salted - the IV is a random first block that is used to initialize the feedback register of the encryption algorithm. So, you don't need to use these terms together - it all depends on the context. Also ...Show All

  • Audio and Video Development Hidden Buttons still in default navigation

    I have several hidden buttons that are hidden (parent container is set to style:display="none") but are still cycled through with the default navigation. Is there a way to prevent this Lol, hidden buttons that are hidden. Try adding style:navIndex="none" . Greets. ...Show All

  • Visual C++ Find all bad explicit pointer cast

    Hi, I try to migrate my software in 64-bit. I want to know how can I find all bad explicit pointer cast. Is there an option in VS2005 that can find all explicit cast with possible information lost. Thanks Eric A better option than the using the /Wp64 switch (which is based on heuristics) is to use the one of the 64-bit cross-compilers - these will issue a diagnostic if a pointer is ever truncated. ...Show All

  • Visual C# Iterations through a Dataset/datagrid

    I am new to C# and dataset/datagrid processing. When saving any changes, I need to know how to iterate through changed rows to evaluate column contents for validation. The information I have at my disposal does not show any examples. Any help would be greatly appreciated. I found the problem. It was something I had hidden in the code. Thanks so much for your patience and help. ...Show All

  • Windows Forms WYSIWYG Web Editor

    Hi All I'm looking to create an application which enables the user to create PHP/MySQL (and eventually ASP/MSSQL) driven websites with just a few simple steps. Part of the application will obviously be some kind of WYSIWYG Editor for the look and feel of the website. I know there are already quite a few open-source HTML editors out there, but I need to customise this quite a bit, and I also feel it would be a good exercise for me to improve my programming skills if I program it myself. What I need is someone to tell me roughly how to start off and what steps to take. I'm not asking for detailed descriptions of every little step (and I'm sure most of you out there don't have the time to give them). I'm assuming to write the c ...Show All

  • Windows Live Developer Forums JS Alert box with clickable links

    In the Interactive SDK there are many examples that show a yellow alert box containing clickable links. How is this done I need to pop up a box of clickable links in my custom disambiguity function and I can't work out how this is done. any help would be appreciated. thanks heaps for this Derek... it appeared that they were using something other than a standard alert box and I couldn't figure out what it was. I will play with this over the weekend and hopefully I can work it out as the code I have written needs this type of alert box to work the way I want it to. ...Show All

  • Visual Studio 2008 (Pre-release) Raising an event when a Storyboard hits a certain time value

    Hello- I have declared a Storyboard in XAML and would like to fire an event when the Clock hits a certain time value. For example, to use a sample from the Microsoft documentation, this animates a Rectangle across the screen: < Rectangle Width = " 50 " Height = " 50 " Fill = " Blue " Name = " myRect " > < Rectangle.RenderTransform > < TranslateTransform x:Name = " TranslateTransform01 " X = " 10 " Y = " 30 " /> </ Rectangle.RenderTransform > < Rectangle.Triggers > < EventTrigger RoutedEvent = " Rectangle.Loaded " > < BeginStoryboard > < Storyboard Na ...Show All

©2008 Software Development Network