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

Software Development Network >> Henri Hein's Q&A profile

Henri Hein

Member List

Yuhang
Jose76
loulou296
raatey
GMan5309
ShawnMullen
wenxincao
black dove
ranadheer mac
A.Arora
Diango
R.Tutus
satya999
cdolor
Gar Mac Críosta
WV John
MoniDD
Milzit
Mathew1972
charlestek
Only Title

Henri Hein's Q&A profile

  • Visual Studio Express Editions connectionstrings path problem?

    hi good day ppolz... i have a problem regarding installing my program to another computer. when i install my program it seems well ok but when it interact with the database it say's 'C:\Documents and Setting\Administrator\Desktop\login.mdb' is not a valid path'. what's the problem with that and also the database login.mdb i need to copy and paste it where the 'C:\Documents and Setting\Administrator\Desktop\login.mdb is thx in advance............ pinoyz, According to your problem, I guess you are using the Publish function and deployment your project with a setup file. I suggest you to use the same path with the whole project in order that when you install your published project, the mdb file will be in the same folder wit ...Show All

  • SQL Server Triggering a subscription in Reporting Services

    I've read through several threads concerning the triggering of a subscription in RS by the use of a FireEvent. I have made this work using the following... C:> rs.exe -i MyScriptFile.rss -s "MyReportServer/ReportServer" where MyScriptFile contains the subscription/schedule ids. This works if I am signed on to the ReportServer C:> drive and execute the command line. What I need to do is create a trigger based on data changing in an SQL database on one server and execute this line of code on the ReportServer on another server. Do I need to use a stored procedure, extended stored procedure, or WHAT to execute this command Thanks! Wanda I am looking for scripting a subscriptio ...Show All

  • Software Development for Windows Vista SetupIterateCabinet failing from Custom Action .dll

    I use Visual Studio 2005 to deploy my application. I have a Custom Action .dll that's called during the Install phase. (The entry point is the standard Install( MSIHANDLE ).) I'm installing a .CAB file and am calling SetupIterateCabinet() from this Custom Action .dll and it is returning ERROR_ACCESS_DENIED. Appears as though Custom Action .dll's are not run with the UAC elevated privileges of the .msi file. I tried adding a .manifest to give the .dll elevated privileges, but then Windows XP barks that there is an unrecognized token. I need this .msi file to run under both Windows XP, Windows 2000, and Windows Vista. Because this is a Custom Action .dll there is no way I can wrap the function in a COM object and call it with ...Show All

  • .NET Development Convert DateTime between different TimeZone

    Hey, We need find a way to convert DateTime between two different TimeZone regard what TimeZone you chosed in your local machine. We found all TimeZone information are stored under HKEY_LOCAL_MACHINE\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Time Zones . We want make sure this registry key are same in vary windows os, such as 9x, 2000, NT, XP, 2003 server and Vistra. If you have can help us verify this, that will be great. Thanks, I can confirm 2000, XP and 2003 server. I would expect NT also but doubtful about 9x. ...Show All

  • Gadgets wav/mp3 in gadgets

    I want to expand the clock.gadget, that it plays a mp3 or wavfile. Could you give me a tip how to this how can I play soundfiles Thank you Sophen Ok, I tried it, but I always get the message: "The file you are attempting to play has an extension that does not match the fileformat. Playingthe file may result in unexpected behavior. Do you want the player to play this content " If I click yes, nothing happens. This happens with mp3 and wav. If I start the file directly (doubleclick in explorer), WMP plays the files without problems. What could be the problem here CU Sophen ...Show All

  • Visual C++ C2059?

    Okay, i have a questiong about an error i am getting i am a new sorta to this programming and the error is error C2059: syntax error : 'constant' So if you can help me i would love it because the program im doing seems really cool to me so once again please help me Take a look at http://msdn2.microsoft.com/en-US/library/t8xe60cf.aspx If you need more details, please unmark my post then reply back with a sample reproducing the error. Thanks, Ayman Shoukry VC++ Team ...Show All

  • SQL Server how to control the distance between the two matrix? or (matirx and table )

    hi everyone: the report show two tables two matrixs how can i control the distance between them I want to set the same distance between the table and matrix or (table and table ) Younger, You could possible place your tables and Matrix each inside of a rectangle and then maintain the distance between your rectangle should get you to your desired results. Ham ...Show All

  • Visual Studio Team System Trying to Incorporate a coded web test class in another application

    Here's the situation: I have a coded webtest and I want to use this in another (forms) application so that I hand this app out to my testers whenever they want to run the functionality embedded in the code webtest. (The test creates new data entries for them by using the actual application.) So far I have not been able to get this to work. Here's what I did: I copied the webtest code in the form code area Then I created a button click action that instantiates the class and creates an object. Here's the code: Dim a As test.WebTest1Coded = New test.WebTest1Coded TextBox1.Text = a.strHi a.Run() The a.strHi which is in the class is used to find out if I instantiated this correctly and it does work. But the ...Show All

  • Windows Forms Dynamically created Registry Keys in .NET Installer

    Hi, I have written a Windows Forms Application in Visual Studio 2005 (VC++). I have created a Setup Project in my solution and am configuring it. My application uses registry values, and so I am entering the Registry Keys and Values needed by my app in the deployment Registry Editor within Visual Studio 2005. I use several Values whose data is a filename or path, but that path depends on the selected install folder the user chooses while installing the program (using this Setup program I am creating.) My question is, is it possible to use some sort of variable while specifiying the value for a Registry Value in the Registry Editor And if it is, how do I get the Root Target Folder for the installed application Thanks - Samy PS. It occurs to ...Show All

  • Visual Studio Express Editions They've Vanished?

    All of my menu items and toolbar items have vanished, all the code is still there, all the references to them are still there in each of the properties windows it's just that the icons are not there. Is there any way to get them back Perhaps that what did it. I do remember deleting on of the icons from my "Resources" folder. If that's the case, it doesn't make me feel all that confident about the IDE. ...Show All

  • SQL Server Open query error: Invalid data for type "numeric".

    Hi guys.... I am upgrading from SQL Server 2000 to 2005 x64. I have made a connection to an oracle database.  In one of the Oracle tables, there is a field named "numID", which is Number(8). So, when I run this query: select numID from   Openquery(myConnection, 'select numID from OracleTable where numID > 100 and numID < 1000'); I get this message: Msg 9803, Level 16, State 1, Line 1 Invalid data for type "numeric". (I do see some rows returned before the error.) However, this query works: select numID from   Openquery(myConnection, 'select numID from OracleTable where numID = 6991'); This query also works: select Convert(Int, numID) as numID from   Openquery(myConnection, ...Show All

  • Visual Studio Team System postbuild event

    Hi, Would it be possible to add a postbuild event feature to the database project I have a scenario where I would like to run aspnet_regsql.exe utility to install/merge the ASP.NET 2.0 services database into the database that I am building with VSTS-DB. I basically want to avoid creating the ASP.NET services db schema by hand (or even importing .sql files) -- I'd rather run their tool and point it at the database created by the build. The postbuild event could provide some macros (e.g. Target database name, connection string, etc) that I can then use as command-line switches to aspnet_reqsql.exe. Thanks, Vitaly We should be supporting SQL2k5 fully (other than some known issues) by v1 RTM. CTP5 ...Show All

  • Smart Device Development Masked Textbox

    is there a way to add the masked textbox control to a compat framework application. It doesn't appear in the toolbox and the page for masked textbox says that it is compaitable with win ce. so how do i go about adding it or do i have to create my own user control for this thanks, karthik MaskedTextBox is not implemented on .NETCF. The docs are in error on this point (I have alerted our doc writer). You will need to write your own custom control to get the behavior you desire. ...Show All

  • Visual Basic Can't close Excel with VisualBasic 2005

    I'm using excel.application in visualBasic 2005, and I don't manage to close it. I tried some solutions found on the net, and appart the one killing the processus "Excel" in the task manager, no solution seem to work. In this simple example, Excel disapear from the task manager, but with the line in comment activated, excel stays open. Launching the function a second time create a new Excel Process, but close it after (one is still staying in the task manager). Please, help me to close the processus. Dim xlsheet As Excel.Worksheet Dim xlBook As Excel.Workbook Dim xlapp As Excel.Application Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ...Show All

  • Windows Live Developer Forums Orange Icons in Live Search

    I'm not very fond of the red pushpins but the orange markers look perfect! The orange markers appear in Live Search when you do a search for businesses. Does anyone know where I can find the image source Also, I remember reading threads on how to print numbers on the markers but I couldn't pull it up from Search. Can someone point me in the right direction Thanks! hi john, sorry for my ignorance in .net, but i truly appreciate your help. here's what i have so far. i have my app on a web server with IIS on MS advanced server 2003. .net 2.0 is installed. i have then created a pushpin.aspx file and pushpin.aspx.vb file as directed. my question is, what goes in the pushpin.aspx file i am guessing t ...Show All

©2008 Software Development Network