crazylady's Q&A profile
Visual Studio LogonInfo, linked parameters, different databases, subreports, Oh My
I'm having a bear of a time getting reports with subreports to function correctly. I have followed all of the directions for logonInfo updates. The original report running under v9 only has to have the first four parameters filled, from there 9 other linked parameters are supposed to be filled. I started with code that we have in production (v9). This code ran fine when running against the server that the report was designed against. But when co ...Show All
Visual C# tlbimp.exe problems
Hello I'm working with Visual Studio Net 2.0. I have a C# with ASP-NET and a MFC-Com interface. Now, i have a problem with my assembly file. Microsoft has a workaround in http://support.microsoft.com/kb/814721/en-us . If i use this workaround, he can't compile my webside net 2.0 anymore, because he doesn't know the namespace. If i use Visual Studio Net 2005 to load the dll, he can compile the project, but i get the 'System.Reflection.Targ ...Show All
.NET Development DisallowCodeDownload = false; => does not work...
Dear sirs, I’m trying to load an assembly using the following code: Assembly.LoadFrom(" http://MySite/bin/MyAssembly.dll "); But it’s raising the following exception: [System.IO.FileLoadException] = {"Could not load file or assembly 'http://127.0.0.1/rm.net/bin/RM.Global.Cadastros.dll' or one of its dependencies. HTTP download of assemblies has been disabled for this appdomain. (Exception from HRESULT: 0x80131048) I think that I need to set th ...Show All
Architecture Databinding vs Multi-tier
I'm a bit confused - see if you can help me out. It seems like microsoft is really big on the multi-tiered approach to development(presentation, business, data), but now, with visual studio 2005, they're also really pushing the new and improved typed dataset for databinding. Am I wrong, or is it virtually impossible to take full advantage of the new typed dataset and still separate your system into presentation and data layers You create a data ...Show All
Visual Basic Second time I run a process I can't capture output, even though process runs
I am trying to run an external program via a process. I need to start the process several times and capture the output each time. However, VB.NET will only capture the output of the first run even though the process does actually run the second time. The process is started by the button handler Button1_click() which calls the process initialization function InitComp() then runFemtoI2C() which starts the process. I am capturing the output asynch ...Show All
Windows Forms Please post here if you are running a Terrarium server.
I want to get a feel for how many are out there, if any. Thanks! It's up! I had a little time last night and things went well. Since it's not running on a dedicated server I may need to limit the number of&nbs ...Show All
SQL Server Will a SQL Server embedded be developed?
Replace Access Jet. by embedded, I meant a sql engine that runs in the client program's memory space. Jet is an example. Has nothing to do with embedded OS. MSDE is not an embedded sql engine as it runs in its own process. ...Show All
Visual Studio Express Editions Catching multiple buttons in one function
I'm creating a windows form application with an awfull lot of buttons. 81 to be precise. I have set an event on all these buttons to one function: changeButtonToTextbox(object sender, MouseEventArgs e) This works fine, but the program needs to know which button really is clicked. I can do this with a simple if(sender == button1). But I don't feel like making a switch statement with 81 possibilities. It wouldn't be efficient too. Suppose I want ...Show All
SQL Server HELP.... Images and Pointers
Hello everyone, I'm in need of help. I'm using microsoft sql server 2005 along with the microsoft visual studio 2005. I have 2 questions: 1) In the database server, there is an "image" datatype. I need to know how to use that because I need to display images on my webform. 2) I read somewhere that pointers can be used to point the file path. So, is it possible for me to store images / audios in a file and use the database ...Show All
Visual Studio Express Editions code prob
ok i've got this code Dim sText As String = InputBox("Enter some text") If String.Empty.Equals(sText) then return If sText.length <= 0 Then Return Dim oTW As IO.TextWriter Try oTW = New IO.StreamWriter("c:\text.txt") oTW.WriteLine(s) Catch ex As Exception MessageBox.Show(ex.Message) Finally If oTW isnot Nothing then oTW.Flush() oTW.Close() End If ...Show All
Visual C# Unicode flood for C# NUnit?
I'm new to C# and NUnits. Can anyone point me in the right direction as to how I can create a loop that passes each and every unicode character of each set one at a time to an api that I'm testing It seems like the Unicode set are enumorated. Is it possible to use a for each character set for each character kind of thing Thanks for any help/advice, Mart Try this: string foo = "FooBar"; foreach ( char c ...Show All
Windows Forms Hide certain standard control's properties from designer
Hi, I created a custom control which inherited from Forms.Button. There's no problems to create & expose custom properties but... I cant find anyway to hide the standard Button's properties... Note that I'm using J# Thanks override the property, apply the Browsable(false) attribute. . . call the base property to access it. this is c#, but the approach should be the same: public partial class ...Show All
Visual C# PInvokeStackImbalance was detected
Hi, I keep getting this error when I try to run my project from the IDE.This does not happen when running the exe. The details specify that the Stack Imbalance was detected in a third party dll which I am using. How can I fix this. Thanks, tribal A call to PInvoke function ThirdPartyDll!Namespace.ClassName.NativeMethods::ImageList_DrawEx' has unbalanced the stack. This is likely because the managed PInvoke signature does not match th ...Show All
Visual Basic Adding Timestamp to RichTextBox
how do i go about doing so all im looking for is the time "HH:MM AM/PM" ahh ok that seems to work, sorry about before i was running late to work and didnt have a real good chance to read. but i re-read it and found out Dim Time As Date = System.DateTime.Now Time = Format(Time, "Medium Time" ) gave me " 5:49:30 PM " ...Show All
Game Technologies: DirectX, XNA, XACT, etc. oh, where to start...
I've been doing some small time game programming with a few open source rendering engines with c++. It's been a great learning experience but i want to see what I can do with DirectX. What would be a good starting point Are there tutorials out there for common functions, such as fps camera, collision detection, dynamic lighting, seamless worlds, etc. Or code samples and snippets that happen to be lying about I've looked through the SDk, ...Show All
