heavenlycharmus's Q&A profile
Community Chat Secure Data Organizer - A Free Password Manager Written in .NET 2.0
Hi all, I've been working in .NET ever since the pre-RTM 1.0 release for my Master's Thesis. I continue to code in many languages but have been working on a pet project on the side called Secure Data Organizer. This is a free program that marks the culmination of several years of design and effort .It is a Password Manager but was designed to be the best one out there. Ease of use (even at the expense of developer pain) was a driving development principle, as was native and intuitive GUI, human-readable XML file format, and public disclosure of encryption algorithms and techniques. I released it as freeware to the web back in late November. Since then, we've grown to over 1,300 registered users--a nice starting userbase! Our big b ...Show All
SQL Server Will MS address SSIS?
Whoever implemented this... needs fired. If its not done fine. But its still pretty much unusable. I have a simple 5 text files I need to import... no brainer, they are all comma delimeted. Works great in 2000 DTS. I import the package it blows up, will take me hours to get right "Converting" all the columns. These are simple text fields, ive learned not to even attempt anything else. Are they basically "done" with SSIS And just letting us wade through the horror that is SSIS I am pondering creating a dw but with all my diverse data sources I couldnt dream of the endless hours upon hours i would have to spend to get it to work with SSIS. Or maybe someone can explain to me how to easily turn off these s ...Show All
.NET Development Embedding Windows Form Control DLL
Hi, I embed the windows form control dll and tested out on IIS. It is working at first. But after I update .NET Framework to 2.0 it doesn't really work anymore. And I am just still experimenting with this .dll embedding. I got some security error when I am actually trying to access File I/O on the client computer. How can I resolve this issue Leo The problem you are facing is not the problem of .Net 1.X or 2.0, its related to Machine Serity Policy, Any Assembly downloaded from internet or Intranet by default is not allowed to use System Resources like File, Registry etc. All you need to Add your url to Trusted Sites or add it to allowed sites from .Net Security Congiguration on your Machine1 ...Show All
Visual Basic Fonts
How do you get the settings in "FontDialog1" to apply to "RichTextbox1" Set the richtext box poperty Font to that of the fontDialog's Font property if the user selects ok. This is written in C# but you should be able to quickly convert if (fontDialog1.ShowDialog() == DialogResult.OK) richTextBox1.Font = fontDialog1.Font; ...Show All
Visual Studio How to Create events in Vb.net or VC++.
Please clarify the above. thanks & regards P.Veerakondalu Hello This forum is for handing issues around the new class designer that ships with VS 2005. You should post your questions on events to one of the programming newsgroups. http://msdn.microsoft.com/newsgroups/ You can start learning about events by looking at the follwoing articles: Managed code: http://msdn.microsoft.com/library/ url=/library/en-us/dndotnet/html/raiserespeven.asp Native Code (C++): http://msdn2.microsoft.com/en-us/library/6f01ek09.aspx Thanks Brian [MSFT] Microsoft Developer Support This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All
.NET Development check user input data exist in database
hi, In a combobox ,i have list of dates for course training.If a user select a date ,it will get stored in sql database,but before storing i want to check whether tha date is exist in database.If exist then we instruct the user to select another date,if not then ok to insert.how can i validate this input Any code snippet or samples,blogs.please send me.I am using vs 2005 vb.net thanks Hi Paul, Greetings! Thanks for the reply, I already explored from the web, and I have this function created: // function to identify if record already exist (string data type) // if true meaning record exist, false means no record private bool recordStringExist( string tableName, string field, ...Show All
Smart Device Development ToolBoxItem(false)-attribute for CF user controls
Hi! In VS2005, when I create CF user controls, it is not possible to specify the ToolBoxItem(false)-atttribute in the DesignAttributes.xmta-file. Trying to do so results in a compilation error. Therefore, it is not possible to hide a CF user control from the toolbox. I know that there exists some workaround for this, where you disassemble the dll and manually edit the IL-file and set this attribute. However, this is not a good solution for us. Is this issue fixed in some service-pack for VS2005 If so, where can I find the service pack //Andreas ...Show All
Visual Studio Team System Same Transition but different Users
Hello, I am currently customizing a work Item and I would like to have the reason, for a transition, to be dependant of the user group. I.e. The transition from state "A" to "B" is available for MyGroupA with reason "reasonA" and "reasonB". The same transition is available for the remaning user with reason "reasonC". I have tried the following solution : <TRANSITION from="A" to="B" for="[project]\MyGroupA"> <REASONS> <DEFAULTREASON value="reasonA"/> <REASON value="reasonB"/> </REASONS> ... </TRANSITION> <TRANSITION from="A" to="B"> <REASONS> ...Show All
Visual Basic Timer and ArrayList
Hi, I have an array list which I would like an event to be triggered for each item in the list at a timed interval. eg; item(a) item(b) item(c) after 5 seconds a message box with item(a) will appear after 5 seconds a message box with item(b) will appear after 5 seconds a message box with item(c) will appear Is there a simple way of doing this with VB .Net well you would have to know the last position that was used to get the item from the array, so perhaps make this a global scoped variable, something like "lastPosition" and declare it as an integer. Then on the timer interval tick event simply get that last position, + 1 and show it. Example: Drag and drop the timer control on ...Show All
SQL Server Conflict table cleanup interval
What replication parameter sets the interval in which data in the conflict tables is deleted in SQL Server 2000 SP4 If I have data in the conflict tables and then execute the snapshot SQL Agent job the conflict tables are cleaned out. I have the @conflict_retention value set to 90 days. The publication is a filtered merge publication. ...Show All
SQL Server Tutorials on MDX Querries
Hi, I am requesting you for MDX and XMLA online reading materials. Thanx You can start here :http://www.databasejournal.com/features/article.php/3593466. Look for articles by William E. Pearson. Regards Thomas Ivarsson ...Show All
Silverlight (formerly WPF/E) Problem with FF and inline XAML
I am using hte AGhost to host WPF/E on FireFox and it works great. I am working on a server-based solution and I can emit it and work on IE fine, but in FireFox I can't it to work with inline XAML. (Just to be clear, it works with AGHost.js, but not if I use embed tags directly). I am using FireFox 2.0.0.1. My embed tag looks like: < embed SourceElement = "WPFE1_SOURCEXAML" width = "479" OnError = "aghost_errorhandler" height = "319" id = "theHost" pluginspage = "http://go.microsoft.com/fwlink/ LinkID=77793&clcid=0x409" type = "application/ag-plugin" MaxFrameRate = "30" BackgroundColor = "Black" WindowlessMode = "false&qu ...Show All
Visual C# Implementing Single Sign On??
Hi.. What does single sign on refers to How to implement single sign on functionality using c# Musafir wrote: Thank you for your reply. Now i am able to understand what to do . I will post comment, after trying out. Thanks a ton Did you tried out ...Show All
SQL Server Create Time dimension Year, Week, day problem
Hi, I have a problem when creation a Time dimension Year, Week, day , The week does not start on the correct date eg. Week 42-2006 should start on 16 th. october and end on 22 th october, but in this case it starts on the 15th october and ends on the 21 october. So what happens is that it starts 1 day before it actually should. This is my Time Dimension: DatePart(year,"dbo"."fCapacityLedgerEntry"."Posting Date") DatePart(week,"dbo"."fCapacityLedgerEntry"."Posting Date") 'Week ' + convert(CHAR, DateName(week, "dbo"."fCapacityLedgerEntry"."Posting Date")) convert(CHAR,"dbo"."fCapacityLedgerEntry"."Posting Date&quo ...Show All
Visual Basic using hyper link in richtextbox.
I'm sorry, I'm independantly studying VB and I want to be able to click a hyperlink on my richtextbox and have it open form two and go to the web page hyper linked. I've looked through F1 and every other resource I could find. I would appreciate help. I tryed something like; if Richtextbox1.text = Everything I've put after this shows up as an error Hi, Is FORM 2 to show the web page If so i'm not sure how to do that. As a start put a button instead on the richtextbox labelled VISIT SITE or similiar. Then in the FORM 2 Load Sub put in>> System.Diagnostics.Process.Start( http://www.w3schools.com/css/css_colornames.asp ) and edit the site link. Regards, S_DS ...Show All
