hello, 1. im trying to use analysis service 2. i hit the server connect button 3. i get error message : "connection cannot be made to redirector", check sql server browser 4. i checked, and it was running 5. what to do? :( thx
Haoman17
Posts
-
connection cannot be made? -
ado? sql?thank you all!
-
ado? sql?Thank you, but i dont understand, should i use sql or ado?
-
ado? sql?Hello im confused. i do not understand the difference between ADO, SQL, ACCESS, MICROSOFT SQL SERVER, VBA i need to develop data-base project and do not know where to start and what is the newest methoods thank you
-
how to make a faster algorithmIm sorry, but you are wrong. in many of my programs, i really saw a different. btw, you can use the optimization switch in VS2005, it also does a great job.
-
how to make a faster algorithmyou need to: 1. use loop unroling 2. use openmp if you have dual core processor (write openmp in google) 3. use intell tbb - on intel site 4. use lookup tables
-
can't registerThankyou very much it helped
-
can you fix regsvr32 problem?hello, i have dll which i can register in one computer, using regsvr32 c:\name.dll but at the other computer (with fresh installation of xp) i cant register the same dll. the name.dll depends on various dll files, and is built in vs6. i used the depndency viewer of vs6 to check what files name.dll depends on,and all the files do exist on the target computer... this problem cause my program to work on the development computer, but not on the target computer. if i use the install kit wizard which comes in vs2005,i try to check the property - selfreg for that dll, but when i execute the installation on the target computer, i get an error - the dll was unable to register.. and also manually with regsvr32 i cant register, and all the files name.dll depends on do exist on the target computer.. solution? anyone? please?
-
regsvr32the name.dll depends on various dll files - i used the depndenct viewer of vs6 to check it. all the files exist on the target computer... so what else can i do? also i tried to use the property - selfreg in the install kit wizard which comes in vs2005, but when i execute the installation on the target computer, i get an error - the dll was unable to register..
-
regsvr32hello, i have dll which i can register in one computer, using regsvr32 c:\name.dll but at the other computer (with fresh installation of xp) i cant register the same dll i get the folowing error - module not found... eventhough it's there! wh is that? thnx
-
can't registerhello, i have dll which i can register in one computer, using regsvr32 c:\name.dll but at the other computer (with fresh installation of xp) i cant register the same dll i get the folowing error - module not found... eventhough it's there! wh is that? thnx
-
a graph componenethello, I am working in form application and I want to draw a Graph is there a componenet which can help me?
-
polyfit in matlab building for .nethello I have bought the matlab building for .net. in Matlab there is a Polyfit function who does linear fitiing how can I do a polyfit function in Cs?
-
linear fittinghello does anyone know how to do a linear fitting in C#? thank you
-
64 bit?Hello, in visual studio 2005, is is possible to build the program to x64 target insted of x86. 1.will i see any imporivement with my programs? 2.should i need to use special instructions? 3. why the program wion't let me build with x64? i have 64 bit proccesor (intel pentum d) Thank you.
-
matlab to C#* 2hello I tryed to convert one of my matlab function into a C# Dll that I can use. I saw in an example of Matlab that they use a dll that called mclmcrrt71.dll but I don't know which method does mclmcrrt71 has to add mclmcrrt71 I need to make a signture. my questions are: 1) how can I know what function does mclmcrrt71. 2) is there any other way to make a Matlab a C# file 3) can I get an information about the IntPtr please help :cool: help me!!!!
-
matlab file (m-file) to c++how can I convert a matlab file to c++?????? please help me!!!!!!!!;)
-
ggea matlab file (m file) to a C# file(dll)hello, I try to convert a matlab file into dll but I can't installize the dll; my questions are: 1) how can I convert a matlab file to dll that can be installize? 2) can I convert a matlab file into C# file?
-
strange behaviorI see a BIG DIFFERENT in performance, between the following 2 methoods, WHY IS THAT?: ---------------Method 1----------------------------- Class { Member x Function() { Write to x; } } Main() { Call function() } --------------Method 2:-------------------------------- Class { Function(member x) { Write to the member x; } } Main() { Member x ; Call function (x) }