hoobler's Q&A profile
SQL Server I want make table 4 like this one in SQL server 2005
I Have 3 table Like this: Table 1: Name = Tbl_Mian_code M_Code Master_Code Master_Name Main_Type Main_Gruop Main_Txt 1001 1001 Bank 01 01 1002 1002 Cash 01 02 1003 1003 Good's 02 01 Table 2: Name = Tbl_Mian_code Id_2 Main_Code Sub_Code Master_Code Master_Name Sub_Txt 1 1001 0001 1001 0001 Bank_Visa 4 1001 0002 1001 0002 Bank_234 5 1002 0001 1002 0001 Cash_1 6 1002 0002 1002 0002 Cash_2 7 1003 0001 1003 0001 Nokia 9 ...Show All
Visual Basic Having trouble getting a correct value of textbox3
Hi Im using VIsualbasic2005 Express (its .net of course ) Dim intText1 As Double Dim intText2 As Integer Dim intText3 As Double intText1 = Val(Frm3.TextBox1. Text) 'Here is says Conversion from string "" to type 'Long' is not valid. intText2 = Val(Frm3.TextBox2. Text) intText3 = CDbl(Val(Frm3.TextBox2. Text) * Val(Frm3.TextBox1. Text)) Frm3.TextBox3.Text = intText3 Textbox3 is still 0 When textbox1 = 0.04 and textbox2 = 456 the problem is the Third teextbox3 is just givine me 3 and not the value of Textbox1(0.04) * Textbox2(400) Actually, what my other reply did not a ...Show All
Software Development for Windows Vista how to customize workflow in web page
how to customize workflow in web page If you mean that you want to be able to create / modify workflow within and ASP.NET web project You need to do this on your own. Take a look at Jon's blog for an example. ...Show All
Visual C# 'Exclude Files From Project' - Beta 2
How do I 'Exclude Files From Project' in VS 2005 I have a solution that requires files to exists in the directory structure but not be compiled. Where has this functionality moved to Also, what happened to the 'Show All Files' option Regards, I am having the same problem with the same tools. please let me know if you find a work around ...Show All
Windows Forms Designer Verbs for Forms
Is it possible to add designer verbs to forms I see lost of examples of adding designer verbs to other kinds of controls but not to a form. Thanks. Hello N!Is, I couldn't find any solution too. Because derriving from DocumentDesigner is not a complete one. Thus I did some research and with some time effort I got a clue. Just look at first example here: http://msdn2.microsoft.com/en-us/library/system.componentmodel.designerattribute.aspx As you can see there, they're messing w ...Show All
Software Development for Windows Vista MenuStrip is still missing from UISpy
Hi! My problem is that MenuStrip does not appear in UISpy. I generated a simple WinForms application (not using WinFx), then put a menu strip at the bottom of the Form. The menu lookes like this: | File | Help | . Clicking on the File, a drop-down menu appears with Exit1 and Exit2 items in it. There is nothing else on the Form. Running this sample application, in UISpy the menu does net appear, just this AutomationElement: "pane" "menuStrip1", but no control pattern is allowed on this pane. If I click on the item File (with the CTRL key), a new element appears in the UISpy treeview: "window" & ...Show All
Visual FoxPro what is the maximum field VFP9 can handle
Good day to everybody... just a little problem with my update at VFP interface with my back-end database I dont have this problem updating my employees table in SQL2000 with 35 columns at my VFP interface, but recently I add another 3 columns at my table, that's where I encounter this problem. Inserting a new record or deleting there's no problem, but when i edit a particular record then saved the changes,the update is OK.. but after I close the form and open it again, that particular record I edited does not really saving the changes. why is there a limit in field column use by VFP Just asking.. or there's i miss... but I already m ...Show All
Visual Studio Team System Recursively files that aren't latest?
Hi, I am wondering how someone can click on the root of a source tree and be able to recursively generate a list of files that are either checked out to me, or another person, or if they are not the latest. I would like this feature so that I can quickly see what is out of date on my machine compared to what is on the server. Cheers, Clint Print all out of date files, except those checked out to you: tf get /preview Print all files checked out to you: tf status (When you don't give them a filespec, both commands iterate over your entire workspace.) Print all files checked out by John: tf status /user:JDoe ...Show All
.NET Development list of files from another web server?
Hi. I was wondering if there is a way to retrieve a list of files given a specific url from another web server I know I could use the FTP classes in .NET 2.0 but this is for .NET 1.1. I also know I could have used the http web request classes however that will not work. I get a 501 error (Not implemented error) the running server will have .NET 1.1 but as for the files, such as images etc... it will be stored on another server somewhere else, not running .NET unfortunatly. Thanks! Hi! There isn't a direct way of doing this, but one interesting way could be to write a webservice that you r ...Show All
Smart Device Development Can't open Windows Mobile 5.0 PocketPC CPP win32 projects in 2005
I am unable to load the sample projects that come with the Windows Mobile 5.0 PocketPC SDK in Visual Studio 2005 All I get is an empty error dialog with an OK buttom. Has anyone else seem this behaviour I can open the C# SDK projects with out a problem. Thanks We did have Windows Mobile 5 SDK intalled and still go this error. I realized that we had the Standard Edition of Studio installed and not the Professional Edition. Looks like Professional Edition resolved this issue. Thanks ...Show All
Windows Forms Pls help me? How to Use Dhtml Control for IE inwindows Form
In Have set a Dhtml Control for windows Form How to set forecolor and Style in this control pls hep me with code AxDHTMLEdit1.ExecCommand(DHTMLEDLib.DHTMLEDITCMDID.DECMD_SETFORECOLOR, DHTMLEDLib.OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT, ) ...Show All
Visual Studio Team System Installing Team Foundation Server Beta 2
I just completed downloading Team Foundation Server Beta 2. The Installation Guide notes that Microsoft SQL Server 2005 in a prerequisite and that only the April CTP is supported. However, I haven't seen an April CTP of SQL Server available on MSDN. Will it be posted shortly or am I just missing its location in the tree MadHur - the post above was for the April 2005 CTP of SQL Server 2005. TFS has RTM'd -- as far as I know, you can no longer deploy Beta2. The RC and/or December CTP may still be available (I think they both use the RTM version of SQL Server 2005). ...Show All
Visual Studio Team System SourceControl Project backup/restore/archival
Does anyone know how to backup/restore a single project in a single TFS SourceControl database containing multiple projects without touching the other projects In VSS you could archive part of a project based on a label, how would you do that in SourceControl TIA, Gert Same thing. You could define label in TF Version Control too. At command line it will be "tf label <label name> <ProjectFolderName> /r In UI, just right click project folder name in Sorce Control Explorer, select "Apply Label", select version and define label name. Hope that helps, Bhavik ...Show All
SQL Server Authentication Problem x64
Win 2003 Server x64, .Net 2.0 x64 Reporting Services 2005. RS Database is a remote SQL 2005 on the same Domain in the same room. I can only get the report manager to authenticate local users; it will not authenticate Domain users. If I set up a local user and add a New Role Assignment all works OK. I have no problem adding a Domain user to a New Role Assignment, it allows this, but it will not authenticate the user. Adding the Domain user to the Windows Administrators group also has no effect. Am I missing something simple I doubt this has anything to do with the x64-ness of your HW. When ...Show All
.NET Development Writing a SOAP client over SSL
Hi All, I want to write in C#, a SOAP client over an SSL connection to a server which supports SOAP requests and gives back SOAP responses. The way i am currently doing it is 1) I use a open source .NET SSL library to connect to the server. 2) I manually create SOAP requests(in the form of strings stored as resource and in XML files) and send these request over the connection created in 1. 3) I get back the response over the SSL connection and then parse it to get the response. Now my question is, Can i a use .NET framework class library which provides all these features, so that i can just create a SOAP web service client(which would w ...Show All
