J.Suazo's Q&A profile
Windows Forms Table adapter user defined query possible ??
Is it possible to make with Tableadapter query that represents the password value of a user depends on the username which is entered by user during the run time Sorry, this thread disscused in thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=213928&SiteID=1 . And it solves my problem. ...Show All
SQL Server Insert Select
Hello all, Im trying to insert into a table INSERT INTO [SPIResConv5].[dbo].[TransactionsTemp] ([RESORT_ID] ,[TRANSTYPE_ID] ,[BILLCODE_ID] ,[MAINTENANCE_ID] ,[CONTACT_ID] ,[POSTED] ,[DATE] ,[USER_ID] ,[BATCH] ,[TYPE] ,[AMOUNT] ,[PAYMENTCODE_ID] ,[BANKCODE_ID] ,[DOCNO] ,[Shift4Trx] ) Select Resort_ID. '' as TRANSTYPE_ID, '' as BILLCODE_ID, '' as MAINTENANCE_ID, Contact_ID, 'False' as Posted, Date = getdate(), 'Hwells' as [USER_ID], 3000 as BATCH, 2 as Type, Amount, ' ...Show All
SQL Server Need Tutorial for SQL Server Reporting Tool
Hi I need good tutorial for Sql Server Reporting Service . I m a beginner ...... Regards Niroshan Free training CD ROMs http://www.appdev.com/promo/freecd.asp PC=SN00031 Videos http://content.ricksql.com/content/ Google http://www.google.ca/search q=reporting+services+filetype%3Adoc+rendering&hl=en http://www.google.ca/search hl=en&q=reporting+services+filetype%3Adoc+handson&meta = cheers, Andrew ...Show All
Visual FoxPro Multiple Child table
What can i do in add button if i have a lot of multiple child table what is the best solution also how to append blank in child table please help me... There is not a best solution because generally child tables do not need an immediate addition of records. If you mean you want to insert a record in child tables whenever you insert a record into parent then you could do that like: insert into myChild1 (foreignKeyField) values (parentPK) insert into myChild2 (foreignKeyField) values (parentPK) Prefer insert into as it does both append blank-replace in a single shot. With Append blank there is a slim chance that someone else could modify the record before you do (unless buffered). ...Show All
Visual C# XML Reading
Hi, can anyone help me i am trying to read a xml file with multiple sections, my xml layout is like this <downloads> <1> <name></name> <description></description> <link></link> </1> <2> <name></name> <description></description> <link></link> </2> </downloads> thats pretty much what its layout is like just wondering if anyone can help me to read this Would it be possible for you to change the format of your XML layout Something like this would be better for the Framework: <downloads> <download> <name></name> <description& ...Show All
Visual Basic Irritating effect from combo
I have got a form that I open, in the forms load event i do the following Me .EDF1TableAdapter.Fill( Me .DataSet1.EDF1) Me .ENameComboBox.Text = "" Me .ENameComboBox.DroppedDown = True Me .ENameComboBox.Focus() when the form loads, the combobox is dropdown and does have focus, but its got a mouse cursor showing wait it does go away after you click in the combobox if you dont dropdown the combo it does do it, why Davids Learning TableAdapter.Fill is probably a bad thing to call in the a form's Load event handler. The Load event is invoked via the windows message queue. Fill could take a long time (i.e. more than a few hundred milliseconds) to complete, causing the ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DreamBuildPlay is up!!!
Now go register!! Actual contest details to come the week of Feb 5th I'm not speaking for Microsoft, but if you want to enter you can always enter a US State and Zip code and phone number for now until they get that addressed. I'm assuming that you can edit your information later once that's been corrected. Again, I don't speak for Microsoft on that, that's just what I would do in your shoes. ...Show All
.NET Development How to know when a remote object is no more available
Hello, Is it possible to know when a remote object is no more available. I mean something like the OnClose event of the MFC CAsyncSocket class. Marco Hi, I got the same problem with my remote object. The workaround I used was to create an empty method called void TestConnection(). I called that method in a try block, so if the object was not connected, it would throw an exception. It worked for me. If anyone got any better solution, please let me know. Jay Joshi, decyclone@gmail.com ...Show All
SQL Server setup error
i just installed and configured sql server 2005 reporting services i have the reporting services install part on a separate server than my database server when i try and go to the Reports URL, i get this error: Invalid URI: The format of the URI could not be determined. Can you look in the RSWebApplication.config file and see what is in the ReportServerUrl element This should have the url to the report server. Also, what happens if you browse to the ReportServer virtual directory instead of Reports ...Show All
Visual C++ ASSERT error on Visual Studio .NET 2003
I have a dialog mfc application with a main dialog. With a button in the main dialog I launch a second dialog. All the controls in this second dialog worked fine. But for some reason everything went wrong. I placed a list box for example on the dialog and I added a control variable for it and I called it NameList. Then I have a piece of code in the dialog NameList.ResetContent(); It compiles fine with no problem, then when I run my application and launch the second dialog it works great. But as soon as the NameList.ResetContent(); code executes I get the assertion error. Here is some details about the error: afxwin2.inl line 698 (The code on line 698 are given below) _AFXWIN_INLINE void CListBox::ResetContent() { ASSERT(::Is ...Show All
Smart Device Development Activesync on a headless Device Emulator OS design
Hello, I'm trying to get ActiveSync to connect to a headless (well, at least shell-less) OS image built atop the Device Emulator BSP that ships with Windows Embedded 6.0 Platform Builder. I've included SYSGEN_AS_BASE and run connmc.exe and the 'PC Connection' applet within control panel to generate the appropriate RASBOOK entry/selection within the registry. The RASBOOK entry (called `DMA) is setup to connect via Serial over DMA, using the default 19200, 8, N, 1, Hardware settings. I cradle my device emulator via the device emulator manager and then attempt to manually run repllog.exe from the target control shell. Note that I haven't hooked into an event to launch repllog.exe automatically yet (is this OK ). The typical ActiveSync connect ...Show All
SQL Server SQL Server Compact Edition is not in the list of DataSources
Hi everyone, I am using VS2005, just installed SP1, and the help -> about window reflects this. I have also installed the SQL Server Compact Edition SDK, but when i try to add a new data source connection (following the MANY tutorials on this), i do not see an option for SQL Server Compact Edition nor do i see an option for SQL Server Mobile. I am at my wits end and i just got started! Yikes... Any thoughts on how to proceed Ok, as a result of the RTFM you gave me, i now have a reference in my project for System.Data.SqlServerCe :-) I still do not have an option in the Choose Data Source dialog for SQL Server Compact Edition. :( Since i am now at the point where i can programatically work with the data, here's what my real goal i ...Show All
Visual C# will the bug fixes available for connect.microsoft.com users ?
Hi, I am one of the connect users of microsoft products. Will the bux fixes/ the service packs will be available for the connect users it will be very useful if we get intermediate fixes available. Thank You Mohan Raj K. Mohanraj_k wrote: I mentioned the hot fixes of the products like visual studio and it's service packs if any . Sorry. I thought this forum would be for all products also. I don't see where you mentioned Visual Studio. This forum is just about bug reports for this website. Are you interested in whether hot fixes and service packs will be available for Visual Studio If you're interested strictly in Visual Studio, I can move this thread to a different forum. Hot fixes aren't ge ...Show All
Visual Studio Team System Getting TFS Reports working again after deleting RS encryption key
Hi, Background - reinstalled sql and tfs but could not remember the password for the reporting services encryption key. I deleted the key and now am trying to add in all the bits that I am missing. I have added the datasources with connection string "Data source=TFS;initial catalog=TFSWarehouse" and set the data source type to Microsoft SQL Server Analysis Services and Microsoft SQL Server for TfsOlapReportDS and TfsReportDS respectively. I also still have the role TfsWarehouseDataReader set up for both Microsoft SQL Server Analysis Services and Microsoft SQL Server. The securables section for TfsWarehouseDataReader in Microsoft SQL Server is blank if that makes any difference. After entering these details I am still getting the f ...Show All
Software Development for Windows Vista get ip of remote pc
Hello Everbody I have a problem in getting ip address of the remote pc i m connected with that pc through dial up connection that is throught the API RasDial() which is the part of ras32.ll As u know in dial up connection there is a phone line so i dial a phone number and through PPP we are able to get the ip address Now the thing is i want to know the ip address to which i am connected with. I hope u got my problem 1) Connect to remote pc throught dial up i.e. PPP come 2) i m getting my ip that happens through negotiation betn 2 pc 3) i want to know the ip of remote pc Where are you calling RasDial() from If you're calling this from a Windows CE device, please repost your question in the Smart ...Show All
