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

Software Development Network >> lnkaye's Q&A profile

lnkaye

Member List

juergen.b
Stefan L.
teplitsa
rekoms
langalaxy
TA123
SamProsser
eptalofos75
nazdrug06
rmgjohnes
pradeep.vutukuri
hommer
Depick
GOsborn
domochan
cgraus
The Cullenator
TeresaDawn
Werner Clausen
cfaulk
Only Title

lnkaye's Q&A profile

  • Audio and Video Development Markup Performance

    I wrote a complete menu (including scrolling chapter menu with rotating images) in pure markup. The XMU file has in total about 1500 lines. Unfortunately I notice that it runs quite slow on HDiSim and in Players. Are 1500 lines too much for xmu Hi DrumAllDay Can you please elaborate why the above improves performance. In my understanding , both options as presented should have same performance. thanks ...Show All

  • SQL Server Restore process is hung up

    I really could use help ASAP - I started a restore process about 20 hours ago of a very SMALL database. It apparently is hung up because it is still in the "restoring" state. How can I stop the restore process I need to get this database back up, even if it is to the state prior to attempting a restore. I can't do anything with it now because it keeps saying the database is in the middle of a restore. ANYONE I can't find any way to kill the process or anything. Any help would be GREATLY appreciated! Thanks. What I ended up doing was creating a new database and doing a restore to it and it worked fine. Then just deleted the one that was hung up. ...Show All

  • .NET Development Microsoft.Web.Services2.WebServicesClientProtocol casting error: 'System.InvalidCastException'

    Hi, I am having this problem with adding a token into a soapcontext. my code is the following: string user = user1.Ticket + "\\" + user1.Name; string password = data.Tables[0].Rows[0][2].ToString(); //data.Tables["Iutput"].Rows[1]["Parameter2"].ToString(); UsernameToken token = User.UsernameToken == null new UsernameToken( user, password, PasswordOption.SendPlainText ) : User.UsernameToken; ((Microsoft.Web.Services2.WebServicesClientProtocol)Service).RequestSoapContext.Security.Tokens.Add( token ); here my proxy is service wich is nothing but a regular object. the error msg is: A first chance exception of type 'System.InvalidCastException' occurred in tmf applicati ...Show All

  • SQL Server Calling Reporting Services from SSIS

    Hi I have created a packages which pull and push the data to SAP server. I want to create a report every day and send that report to the manager. For the same i want to call reporting services in my SSIS package. I know i can write a SQL script and export the report in excel but i want to use Reporting services. Have any one call reporting services from ssis. bhalchandra.kunte wrote: Hi I have created a packages which pull and push the data to SAP server. I want to create a report every day and send that report to the manager. For the same i want to call reporting services in my SSIS package. I know i can write a SQL script and export the report in excel but i want to use Repor ...Show All

  • SQL Server DataGridView/SQL Express - Updating record using seperate form

    Hi, I am currently using VC++/Cli 2005. In a project, I'm using a DataGridView control to show records from a SQL Express 2005 table. Instead of updating a specific item directly within DataGridView control, I would like to open a new form and allow user to update selected record/item within that form. The reason to update this way is conditionned by the fact that I have 3 levels of detail as following: Level 0 Level 1 Level 2 1:N 1:N Furniture --> Component --> Component You all understand that update form of Level1 will/must include, as Level0 do, another DataGridView control to display/detail all related items issued from next level. This explains why I can't ...Show All

  • Visual Studio 2008 (Pre-release) WPF Bug: Fatal Exception 0x80131623 and ReturnEventHandler

    I just ran into what appears to be a bug in WPF, or at least an undocumented requirement. Essentially, it appears the method implementing the ReturnEventHandler for a PageFunction.Return event must belong to a PageFunction or the entire application just faults and terminates immediately with 0x80131623. There are no prior first chance exceptions appearing in the debug console that I can find which might be contributing. The following is further elaboration of the scenario. PageFunction1 has a button that triggers a RoutedUICommand. Command1, among other things, implements OnExecute and OnCanExecute as RoutedUICommand event handlers. RoutedUICommand1, Command1.OnExecute, and Command1.OnCanExecute are bound to PageFunction1 u ...Show All

  • SQL Server No of users

    Hi, I am using sql server express edition. I have centralised database running in windows XP home edtion version. I can connect only 5 clinet computers at a time to the main database. I need to connect 8 clients to the main database. Each client is running with windows xp home edition. Thanks in advance Anil There is a limit of 5 remote connections allowed for Windows XP Home. If you move the database to a Windows XP Pro computer then you have a limit of 10 remote connections allowed. The followin link explains it. http://support.microsoft.com/default.aspx scid=kb;en-us;314882 . Good luck ...Show All

  • Windows Forms Controls at the runtime????

    hi, if i have a form and it have a textBox control... how can i write something in that textBox when this form already running. Not using a keyboard but a c# program. what is that class which i can use is it possible how i mean something like "On-Screen keyboard" which provided in winXP... please reply with thanks Richard Guion wrote: I have to admit I am bit confused by your question. Are you asking how to change the text on a text control in C# It's done like this (my text control is named textBox1). textBox1.Text = "Attilan"; Set the Text property and you are all set. If you're asking about a graphical keyboard to appear, someone else had better answer ...Show All

  • Windows Forms DataGridView problem: Painting takes 1/4 of a second.

    Hello I have some problems with DataGridView . I have one TabControl with two tabs. The first one contains a DataGridView and the second one contains other controls. The DataGridView has its DataSource property connected to a DataTable . This table is set up with 20 columns and has 100 rows. The problem is, when I select tab 1, the DataGridView needs 1/4 of a second to finish its painting. This is really annoying. (Reducing the number of rows does not solve the problem) Is it possible to come around this delay somehow Kind Regards You have 0.0 seconds delay then When I switch to the tab containing the DataGridView, it seems that it updates the drawing several times or something. I can see the "dr ...Show All

  • .NET Development How can you catch this Exception, when declared outside of TRY block.

    Hi all, I have the following method that opens a file stream and loads the data into a Byte[] array. But if I use the following code I get an error ( Use of unassigned local variable 'fs' ) when I try to compile it. I am finding this confusing, as how am I meant to put a try around the following statement... fs = new FileStream(m_strImagePath, FileMode.Open); ... ...if I need to assign it outside of the try block (assigning it within the TRY block means it loses scope and cant be handled in the CATCH and FINALLY blocks. Am I missing some important concept here, or something :-s public byte[] LoadImageData() { FileStream fs; int photoLength; byte[] photoBytes; try { fs = new FileStream(m_strImagePath, FileMode.Open); ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creator's Club Licensing Query

    If I get a Creator's Club subscription on a 360 under my gamertag, and then log it onto a different 360, will I still be able to use it on the second 360 I know that this would work for arcade games and whatever (you get a license for the 360 you bought it on, and for the gamertag that purchased it), but I can't find any proper confirmation either way about CC subscriptions in the FAQs, and only conflicting stuff in the forums, so any help would be nice. Thanks, David. That would be great it would allow you to demo your product anywhere or play your creations at a friends house! ...Show All

  • .NET Development How to get all the cookies

    Hello, I have a problem with getting all the cookies. I use HttpWebRequest and Ethereal shows the following HTTP/1.1 302 Found : Hy There, Well if the path of the URL changes you also have to change the path of the cookies. For example if you logged using this url: www.site.com/login.php and you want then to access another location with different path www.site.com/subdirectory/file.php then you have to modify the cookies got from the first request: wresponse = (HttpWebResponse)wr.GetResponse(); if (wresponse.Cookies != null && wresponse.Cookies.Count > 0) { foreach (Cookie c in wresponse.Cookies) { c.Path = "/subdirect ...Show All

  • Visual Studio Team System Viewing Dependencies?

    It seems pretty clear that internally Db Pro keeps track of dependencies generate warnings and things. Is it possible to "View Dependencies" or "Find All References" somewhere that I missed It would be tremendously helpful. Gert, This is exciting. Red-Gate has such a tool but I never thought it was well implemented and didn't find it extremely useful. Amos. ...Show All

  • Visual Basic help in debugging macro

    HELLO, i am trying to debug an excel macro which is a web grabber.when i run it i get a sql syntax error when i try to debug it it goes to Refresh BackgroundQuery:=False on the the last line just above end with can someone help me fix this bug,this macro was working fine before now it gives only syntax error the code is below Sub grab(url1 As String, wt As Integer) With ActiveSheet.QueryTables.Add(Connection:="URL;" & url1, Destination:=Range("A1")) .Name = "refbills" .FieldNames = True .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .BackgroundQuery = True .RefreshStyle = xlInsertDeleteCells .SavePassword = False .SaveData = True .AdjustColumnWidt ...Show All

  • Visual Studio Deployment of runtime dsl

    Hi, How can i deploy the runtime DSL (i.e. the one that currently gets launched into an experimental instance of VS2005) into VS2005 Obrigado. Hi Carlos, You can add a Domain Specific Language Setup project to your DSL solution. File / New / Project... / Other Project Types / Extensibility Update: Forgot to tell one thing. You will need a Package Load Key (PLK) to deploy your model on a VS instance without the SDK installed. You can have more info here . Affilliate membership is free. Once you got your PLK, add a key for it in VSPackage.resx and provide ProvideLoadKey attribute for your package, pointing to the key. Check Package.tt in DslPackage project. Gokhan ...Show All

©2008 Software Development Network