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

Software Development Network >> Ltl Hawk's Q&A profile

Ltl Hawk

Member List

THE RAZI
dacore
Wong Shao Voon
TheQuietShadow
SCRunner
Milesw
Sparklight
test345443
Stefano_Azzi
TR Materene
Ian Jagger
Dennis Mulder - dennismulder.net
mreitano
Don 216
BLytt
ropley
JLuv3k7
Lee Hudson
MikeHNatti
the_kid
Only Title

Ltl Hawk's Q&A profile

  • Visual Studio Can't Find Crystal Reports

    Hello, we have Visual Studio Team Edition installed on a machine. We're trying to use Crystal reports, but we can't find it. I checked the installation, and it claims to be installed. It doesn't appear in the new file list anywhere. Thank you for your help! It could be the way that you are attempting to create a new Crystal Report file. There are at least three different windows that list the 'Installed Templates', each with different content. Crystal Reports is only listed in two of the three windows. If you select File >> New >> File you will not see a Crystal Report listed as one of the installed template. If you select File >> New >> Project you should see an option fo ...Show All

  • Visual Studio 2008 (Pre-release) PasswordBox Databind or TextBox mask

    Hi all I know we can’t bind Password property of PasswordBox because security reasons But how can i Mask a databind TextBox , (llike we do with Windows forms textBox) if don’t needed this kind of security There is no PasswordChar property (like in Winforms TextBox) to mask the textbox and hence no simple way to achieve the above. You probably have to inherit from TextBox and customize it. ...Show All

  • Visual Basic Problem installing a Wndows Service

    Hi peeps I've been following these instructions for creating and installing a Windows Service. http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbconintroductiontontserviceapplications.asp I've created a service, added an installer to it (whatever that actually does) created and ran a setup project for it, ran the setup.msi, ran installutil.exe and excitedly opened up Services to start my service... it's not there, I must have done something wrong, re-boot, still not there, do it all again, extra careful this time. It's still not there. I'm sure I did this all right, below are the contents of the InstallUtilLog, and pallexsvc.InstallLog... InstallUtilLog ========= Running a transacted installati ...Show All

  • SQL Server Disappearing Precedence Constraints

    Has anyone seen precedence constraints disappear in a package after closing and opening again In this case, it's not package-wide. Only constraints inside one Foreach Loop container disappeared. Any idea what causes this to happen p.s: Yes, I did Save All. Most of these contraints were saved in the package for more than a week anyway. Jamie, those guys must not realize how much progress these products have made in terms of functionality, stability, performance and ease-of-use features (although overall complexity is an unavoidable companion of added functionality). Add to this  a world-class  customer feedback/ support infrastructure (including newsgroups like this one). We all ha ...Show All

  • SQL Server Sharepoint integration

    Hi all, I've tried 3 times to integrate RS in Sharepoint and I always have the same result. I can't see the new section in sharepoint central administration under application management. I didn't get any errors while installing any of the components. RS and Sharepoint are on the same machine and I carefully followed the step to integrate RS in Sharepoint Can someone help me on this thx Fred Got you beat > I'm on my FOURTH attempt at installing the Add-in and still have this error in the log. This is a clean install of MOSS and SSRS side-by-side with a remote database. The SSRS install and configure in Integrated mode was a snap. Here's what I've tried so far, any other su ...Show All

  • SQL Server configure web synchronization pb

    hi, First, sorry for my english, I'm french When i try to configure web synchronization, I get the following err " success Hresult 0x8007000"(!!!) for the step : setting the snapshot share permission I really don't understand : my folder have all the rights for the user agent... I don't know what to do. Config . SQL Server SP4,Microsoft SQL Server 2005 Mobile Edition It had worked but I had to reinstall the system and now, it does not work anymore Thans for your help, Eric thank you for your help but I'm sorry for the answer the agent have the rights as wall as its folders I work now (i thought it wouls be better) with sql server 2005 (sqlexpress) but it's the same I spent 2 days on it and I don' ...Show All

  • Windows Forms Sudoku help needed

    Hi, I am trying to make a sudoku game but have run into a problem. basically i have a function to create the game view: private void createView() { Table1.Rows.Clear(); for (int rowIndex = 0; rowIndex < State.Board.GetLength(0); rowIndex++) { TableRow row = new TableRow(); Table1.Rows.Add(row); for (int columnIndex = 0; columnIndex < State.Board.GetLength(1); columnIndex++) { TableCell cell = new TableCell(); int value = State.Board[columnIndex, rowIndex]; if ((ActiveCell == null) || (ActiveCell.Row != columnIndex) || (ActiveCell.Column != rowIndex)) { string id = String.Format("BoardButton_{0}_{1}", columnIndex, rowIndex); if (value >= 10) { Image image = new Image(); ...Show All

  • SQL Server Trasfer of data through XML Mapping

    Hi, Can any one tell the best approach for XML to XML Mapping and Data Validation with out using Tools I am using XML mapping for Data transfer from Source database to Destination Database. How can I map the table column and constraints How can I validate the Data - shashikumar ...Show All

  • Software Development for Windows Vista New Browser Windows when calling IWebBrowser2::Navigate

    EDIT: See my last post for more information about specifically what's happening (in regards to the IInternetSecurityManager not being queried for). I have a dialog in my code with an embedded browser control.  Previously (XP and IE6), it worked correctly, the embedded control could display web pages properly inside itself.  On Vista, I am having a strange issue that instead of loading the page on itself, it creates a new browser window and loads the page there instead.  I have tracked it all down to IWebBrowser2::Navigate.  As soon as I call this, the new browser window is created and the page loaded there. There is another thread with this same issue, but no solution was ever posted.  Has anyone else encounter ...Show All

  • .NET Development Config File

    I want to make a config file but i dont know how to look at the file and lets say look at a setting like backup=1 and then if it is 1 then do an action i know how to make it do the action i just dont know how to tell it to look at the config file and a certain setting in the config file. A snipit would be really helpfull. I like working with config files because they let me encrypt information like connection strings. Also, I have three environments - Dev, QA, and Production. I can create a config for each environment so that each can have its own set of connection strings. Here's a code snippet for reading from a config file: //get login info from the config file Configuration cm = ConfigurationManager .OpenExeConfiguration( Co ...Show All

  • SQL Server Log file cant acquire connection while working offline

    hi As I trun Work offline - true, my connection manager for log file says-it cant acquire connection while work offline is true.Where as other oledb connections work fine. Even it tried to get around by putting DelayValidation as true, but didnt work. Is there is anyother setting that has be set. Thanks and Regards Rahul Kumar I think this thread is related... I think the error is received while executing the package: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1005760&SiteID=1 ...Show All

  • SQL Server Date parameter format incorrectly interpreted

    Hi, I am using SQL Server 2005 Reporting Services. I have a report with a Startdate and Enddate parameters setup through the report parameters box. The datatype is datetime, so I have the date pickers. My machine regional settings are set to Ireland for datetime format dd/mm/yyyy. The database field being queried is storing the date as dd/mm/yyyy. My problem is when I type in the values Startdate = 01 aug 2005 and Enddate = 31 aug 2005. The report runs correctly, but it refreshes the parameter boxes and if I try to run it again I get the following message "An error occured during local report processing. The value provided for the report parameter "Enddate" is not valid for its type" If I choose the same dates from the datepickers I get t ...Show All

  • Visual Studio Express Editions Pass Object to EventHandler?

    In a console application, is there any way to pass an object/variable to an EventHandler   I'm trying to do this with a ctrl-c and the ConsoleCancelEventHandler, but I don't have to do so.. if this is not possible with ctrl-c being a special case, I can use another key. The goal is that I have an object called SyncExit which provides several different events upon which several threads await to exit gracefully.  I wanted my ctrl-c to have the event handler call this, which means I either have to pass the instantiated object (preferred) or make the object global to the class, not just the Main method (not preferred).  I also don't want to just shut down the thread because I have cleanup to do once ctrl-c is pressed, so I ju ...Show All

  • Windows Forms Do I need a Binding Source? Why?

    This has always kind of confused me. usualy, when I want to bind a DataTable to a DataGridView, I just say: somDataGridView.DataSource = dtSomeDataTable; that's it... works great. So my question is, why would I want to complicate things and bind my Datatable to a BindingSource, then Bind that to the DataGridView Thanks... This article will give you more information ...Show All

  • SQL Server Convert seconds (INT) to mm:ss in Reporting Services

    Hello, I have been trying for a while now to convert seconds which are obtainted from the database into the format mm:ss . Typically in Excel, I convert my time in integer values divided by 86400 (24/60/60) and then format the cell to "mm:ss" and everything is fine. Now, I am have been trying to reproduce that same logic using Reporting Services (2000) without any success. I saw on previous post that you can use the format property in RS but if I put in the code "mm:ss" I get the value in text "mm:ss" (i.e.: not the numbers converted). Any ideas ...Show All

©2008 Software Development Network