Search:
Type: Posts; User: BSWhipp
Search:
Search took 0.01 seconds.
-
I have a need for different users to start a service when it stops (Remote Registry). I do not want to give access to the server for this so I want to have them use this program. I can connect to the...
-
I can query the printer and tell it what default page to use but the page setting dialog box does not update when you tell it what you want. I guess this is my problem. I tell the report to set a...
-
They will change depending on what label they change to. Its weird. On label that has 3 across where each label is .5 x 1 prints fine without needing to set the printer settings but the smaller one...
-
I have and app that I am trying to duplicate from old VFP to new VB. Print settings are not as flexible in VB and I am having issues creating small labels. I have a label printer that prints labels 4...
-
Got it Thanks
Dim filepath As String = My.Computer.FileSystem.SpecialDirectories.Temp + "\Item_Master_Import_Template.xlsx"
IO.File.WriteAllBytes(filepath,...
-
OK, to start over, I add en existing reference to the file and make it embedded? Then Add a picture box to launch the excel file. Sounds good. How would I do the code to the resource?
-
I have it added as an embedded resource but when I try to drag it to the form it doesn't allow.
-
OK, Can you guide me thorugh that? I added it to the solution but from there on I am lost. Thanks
-
I don't really want to have the file on disk. I would like it embedded in the program since it will not change unless I need to update it then I would recompile. For users, they will never change it.
-
The file will not change. It is a template.
-
I gues I would like it to display an icon for people to click on and open the file or save it to a location only. Hence any file. It is an open or save process only.
-
I have an Excel file or it could be any file that I want to display on a for for people to launch. What is the best way to embed that file in the project? I don't want to have it on a disk and link...
-
Weird issue
Report Viewer Cuts off top of report in viewer on the second run of the report.
It only happens when scrolling to the bottom of the first report then closing the report window then...
-
I got it
Had to change this:
ARISQL.ARISQL oSql;
to this:
ARISQL.ARISQL oSql = new ARISQL.ARISQL();
-
OK, I have moved to the Third error
I added
Object res
I changed the offending line to res = oSql.runQuery(ref SVR, ref DB, ref SQuery, ref result);
The error now is "Use of unassigned...
-
OK, I have moved to the second error
I changed the offending line to checkdate = oSql.runQuery(ref SVR, ref DB, ref SQuery, ref result);
The error now is "Cannot implicitly convert type...
-
I have a dll I created in vb. I referenced it in my c# project and added the Using statement.
I can get it working up to the point I call the function.
Here is the subset of the code.
using...
-
What I ended up doing is manually creating a parser. It took about 20 lines of code but it works great.
-
I can believe I can't find anything on the internet that can help me. It looks like I will have to parse this out manually which I can do but JSon should (and probably does) do it or at least there...
-
Having an issue converting to the datatable.
This is the code:
var json = new JavaScriptSerializer().Serialize(selectQuery);
// Converting a JSON object string to a...
-
OK, I have newtonsoft already referenced but don't know how to use it. I will try to google it. But as I am know to this, the result are in JSON? I will google JSON parser to datatable?
I really...
-
Like this?
string results = reader.ReadLine();
using (StreamWriter outputfile = new StreamWriter(path))
{
outputfile.Write(results);
Ultimately I...
-
I think you are correct. Here is the part of the code I am having a problem with
using (var requestStream = selectRequest.GetRequestStream())
{
...
-
I finally have data from an HttpWebResponse into a streamreader. I can write it to the console and it shows data so I know I have data. I have been searching on how to get that data into a datatable...
-
I did that with the same result. Finally after a week, the company I am working with sent me the dll. I references that and it is working. Thanks for your time though.
-
I installed it through Package Manager. Also I installed 3.9.71 with same result and version 5.04 did not have the ServiceStack.ServiceHost in the ServiceStack.Interface. You had stated you did it...
-
I installed ServiceStack.common and .text. UIn the references I do see ServiceStack.Interface but when building the code I get 2 errors.
1.Error 1 The type 'ServiceStack.ServiceHost.IReturn' is...
-
I have code from the web to do what I need to but I need assistance. I have created the dll to use but now need to create the program to get the information from the web site. The link they provided...
-
The above code is erroring out with the status = (New System.Web.Script.Serialization.JavaScriptSerializer()).Deserialize(Of ResponseStatus)(responseText) line.
-
Option Infer On
Imports System
Imports System.IO
Imports System.Net
Imports System.Web
Namespace RequestAuthentification
' Auxiliary class for de-serialization of the JSON object from...
-
Thank you!!! Just got to this today. This is pretty new to me. I will have to bone up on this xdocument stuff.
-
I am working with a company called BPM Online. They are a CRM provider in the cloud. They have some information (data of ours) that I want to get and put into SQL. They are not being very good with...
-
I called Honeywell earlier and they told me I needed the SDK but they are having a problem with the link too so I am stuck until they fix the link to download it. Thank you for your help!
-
I have looked all over the internet to find the code to change the print darkness on a printer (Datamax).
For the life of me I cant find anything.
Any help would be much appreciated.
...
-
-
I just go it this is what I did.
Dim r As DataRow
For i = 0 To OnHandAll.Rows.Count
r = OnHandAll.Rows(i)
part = r.Item("fpartno")
...
-
-
I have a datatable I need to be sure I have no duplicates in and update fields accordingly. It there is a duplicate, I need to make sure a field is updated.
The scenario is I have parts with an...
-
OK, Thanks everyone. I will play around with it some more to see what I can do.
-
It just seems it take much longer in VB than it does in another program. I am converting old programs that are in Foxpro to VB. The same Do while loop in Foxpro takes seconds where the vb code may...
|
Click Here to Expand Forum to Full Width
|