|
Hi guys.I need help coding for a class project on power(load) flow analysis.Anyone willing to help?will greatly appreciate.Thanks
julez123
|
|
|
|
|
So what code have you written so far?
Kevin
|
|
|
|
|
I've been working on MatLab,but turns out Im required to write using VB or C++.The huge matrices are kind of a challenge for me.Any suggestions?
|
|
|
|
|
Generally, people here won't answer such general questions. What you need to do is write some code and then post a snippet explaining what specifically you're stuck on.
Kevin
|
|
|
|
|
Thanks,Kevin.Will do that.
|
|
|
|
|
If i have multiple version of the same assembly how can i provide choice to client to choose one assembly at run time, suppose analyze i have drop down of two versions , when client select one option that assembly need to be load at run time , is it possible one interviewer ask question tome can any body answer this
|
|
|
|
|
Yes. Now choose which question you want to fit that answer to.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
So I can choose a question and your answer will be "yes"? Let me think of a good one then.
|
|
|
|
|
How would the client know which one to choose? In other words, if you (as developer) don't know what the correct version is, then how should a user, unaware of the code and it's dependencies, make that choice?
Shaik Haneef wrote: is it possible one interviewer ask question tome
It's technically possible, yes
But again, why would you punish the end-user like that?
I are troll
|
|
|
|
|
Eddy Vluggen wrote: How would the client know which one to choose?
A client might not necessarily be a user. It could be something that uses IoC or a plugin based system with very tight rules about selection. Alternatively, it could be a clueless randomly selecting DLLs in the hope they'll do something useful.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
My blog | My articles | MoXAML PowerToys | Onyx
|
|
|
|
|
Pete O'Hanlon wrote: Alternatively, it could be a clueless randomly selecting DLLs in the hope they'll do something useful.
I was visualizing Windows asking an end-user what version of HAL.dll to use
I are troll
|
|
|
|
|
Eddy Vluggen wrote: I was visualizing Windows asking an end-user what version of HAL.dll to use
I am still thinking where would this prompt come at? Immediately after Bios checks? But then how would that 'Select File Dialog' crop up? A variant of chicken-and-the-egg problem!
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
The woods are lovely, dark and deep,
But I have promises to keep,
And miles to go before I sleep,
And miles to go before I sleep!
|
|
|
|
|
Pete O'Hanlon wrote: Alternatively, it could be a clueless randomly selecting DLLs in the hope they'll do something useful.
Such a system is guaranteed to be a catastrophic failure.
Vasudevan Deepak Kumar
Personal Homepage Tech Gossips
The woods are lovely, dark and deep,
But I have promises to keep,
And miles to go before I sleep,
And miles to go before I sleep!
|
|
|
|
|
<b>
I need to make an application which uses generalized database access...so i want to use db provider factory class.i would like to ask how to make connection string at run time. means user will provide the Provider weather sqlclient,my sql,oracle or oledb and the data source for them and i want to make connection string run time.i know the method newConnectionStringBuilder but i dont know how to use it...please help me!!!
</b>
|
|
|
|
|
Becoming database-independant takes more than 'just' changing the connectionstring. In some cases you'll have to use a different Connection object. Once you passed that hurdle, there will be another one where you find that Oracle speaks a different kind of SQL than, for example, MS Access.
I wrote a small example that imports data some time ago, that can be used as a starting point[^]. Good luck
I are troll
|
|
|
|
|
|
hi friends i need to deploy Vb project desktop application
j somasekhar
|
|
|
|
|
VB.NET?
If so, the documentation is a good place to start:
Deploying an Application[^]
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
hi,
does anybody know that .net version can cause a problem in remote debugging ?
i have .net 3.5 in my client and in other machine i have .net 2.0 without development tools like visual studio or other
i want to debug a large scale windows application developed in C# and .net 2.0 .
i used msvsmon in target machine and i want to attach the process (win service in my project). i can see it in my 'attach to process' window's process list and i attach it . but it does not work.
does .net framework versions cause this problem ?
tanks.
---------------------
Areff Bahrami(KAVEH)
Areff.HB@Gmail.com
---------------------
|
|
|
|
|
Areff wrote: but it does not work.
Be more specific. Do you get any error messages? if so what?
|
|
|
|
|
Make sure you have the .pdb files available for the assembly you're trying to debug. If for some reason it doesn't automatically load the symbols, open the Modules window, right-click your assembly name and select "Load Symbols" and select the pdb file. Make sure the source code you have open, the pdb file, and the assembly versions all match up, otherwise you won't be able to load the symbols or hit any breakpoints.
Dybs
|
|
|
|
|
tnx Dybs
after attaching i see this message on every breakpoint.
The breakpoint will not currently be hit. no symbols have been loaded for this document
does this is for .pdb files ?
---------------------
Areff
Areff.HB@Gmail.com
---------------------
|
|
|
|
|
hi,
and tanx Dybs
i done this job with copying the pdb files to the target machine and it's ok now.
---------------------
Areff Bahrami(KAVEH)
Areff.HB@Gmail.com
---------------------
|
|
|
|
|
Iam using the following code in a dll -- encrypting a file using gpg exe.
Dim objEncrypt As New System.Diagnnostics.Process
With objEncrypt
.StartInfo.FileName = "C:/program files/gpg.exe"
.StartInfo.Arguments = sArguments
.StartInfo.UseShellExecute = False
.StartInfo.RedirectStandardOutput = True
.StartInfo.CreateNoWindow = True
.Start()
.WaitForExit()
End With
this code works when calling from an application...but doesnt work when callingfrom windows service.
Please help
thank u
|
|
|
|
|
mansh143 wrote: but doesnt work when callingfrom windows service.
Try running the Service under a different account.
|
|
|
|