Topics
-
- 0 replies
- 984 views
Hi, I have already set the Culture globally in the web.config file but I would also like to set the ShortDateFormat because I want to have double digits in the dates but en-US doesn't format like that. Is this possible to set that globally and where? Web.Config or Global.aspx Thanks
Last reply by Polar Bear, -
- 4 replies
- 2.7k views
Hi, can somebody please help me? I'm a beginner in asp.net and currently, i'm trying the charting function using OWC (Office WEb components) to plot from graphs using data from database. However, the following error was received: -------------------------------------------------------------------------------------------------------- COM object with CLSID {0002E556-0000-0000-C000-000000000046} is either not valid or not registered. Exception Details: System.Runtime.InteropServices.COMException: COM object with CLSID {0002E556-0000-0000-C000-000000000046} is either not valid or not registered. Source Error: An unhandled exception was generated during the e…
Last reply by keyar, -
- 0 replies
- 561 views
I'm developing a phone application. Does anyone know how to record and play voicemail from modem in vb.net? Thank you in advance. Best Regards, whineygrace
Last reply by whineygrace, -
- 1 reply
- 1k views
Hi! i am going to use Table Web Server Control to fetch records from database it is working quite well but the problem is that i don't want to atatch that Web Server Table Control to any control like builtin Repeater, DataList, or DataGrid i want to use it independentally in .aspx file rather than using controls please tell me how is it possibe i will be really really thankful to you for your quick and helpful response Please also send me your reply on my email address malik_hafiz@hotmail.com Regards, AbuBakar Malik
Last reply by bri189a, -
-
- Leaders
- 3 replies
- 2.5k views
Hi I'm trying to create a file from a binary arrary. I can do this by saving it to disk but I need to pass the file as a reference to another class. Any ideas how I can do this without saving it to disk and then reloading it? Cheers Tim
Last reply by IngisKahn, -
-
- 2 replies
- 2.3k views
Hello, has anyone any experience in I/O-cards that work with VB? Any suggestions? I only need a some binary inputs and a couple binary outputs and analog inputs.
Last reply by realolman, -
-
- Administrators
- 2 replies
- 1.6k views
Can the following example be easily modified so that you can send bigger files like 1GB for example? I tried it with a 1GB file and it crashed. http://www.xtremedotnettalk.com/showthread.php?t=85665&highlight=file+transfer
Last reply by JumpyNET, -
-
- 0 replies
- 1.6k views
I used DirectSound to record voice from microphone and the variable is set up as: Dim voiceBuffer() As Byte As the voiceBuffer is in byte format, I cannot play the voice using DirectSound through speakers. Does anyone know how to create a stream and use it to play the DirectSound buffer? Thank you. Best Regards, whineygrace
Last reply by whineygrace, -
-
- Administrators
- 15 replies
- 3.2k views
Is there any way you can use Select Case for comparing objects on the basis of the "Is" operator? e.g to select from a range of possible types: Select Case X.GetType Case GetType(Class1) Case GetType(Class2) End Select This doesn't work because "=" is not defined for the Type Class.
Last reply by rbulph, -
-
- 0 replies
- 1k views
Hi All Is it possible? After I have deployed my software package I would like to be able to get my program to check the Internet to see if a new database file is available. I do not want to keep sending out a full installation setup everytime I change something in the database (This could be daily or weekly). I would like to be able to download the new database onto the clients machine and overwrite the existing database and then restart the program with the new database. Does anybody know how to do this or can you point me to a website that can? Regards
Last reply by Data Danger, -
- 0 replies
- 825 views
Hi I am copying records from one table to another using the ImportRow command, this works ok but when I tried to add the records to the database nothing happened, This I believe is due to the fact that ImportRow copies all the state information into the new table so Insert does not think it has anything to do. I can live with that as I have to set a flag on each record to say where it came from. The problem is when I call my insert records routine it thinks that it has to run an UPDATE command and not an INSERT command so I get the error Update requires a valid update command. Does anyone know how to get over this apart from doing it the long way by adding a n…
Last reply by pendragon, -
-
- Administrators
- 2 replies
- 1.3k views
Hi, I am trying to transfer a xml file generated by vb6 recordset from a server side application to a compact framework application(which is written in vb.net) and fill the dataset with this xml file. However, I got nothing in return. Is there anyway to change the recordset xml format to dataset xml format? Any idea? :confused:
Last reply by Worrow, -
-
- 0 replies
- 1.4k views
I am facing a big trouble here. I wanna develop a Windows Mobile Application where the application will read data from the sql server. In windows forms, I am using Mysql.Data.dll in order to connect to the server. And now I am in Mobile Application, what component should I use in order to achieve this? Thanks in advance. Kindly give me a guide. I am hunger for helps. George Low
Last reply by georgepatotk, -
-
- *Experts*
- 2 replies
- 792 views
Hello, This is a bit of a long read, but heres to hoping you read to the end. Perhaps this is an age old discussion, perhaps not. I am a long standing advocate of using stored procs when accessing SQL server. For me, its stored procs for everything, basic CRUD operations, complex data management or manipulation for DTS packages etc. I have a new found friend that disagrees. He is not of the school of thought that stored procs are evil, he just doesn't see the added benefit. Its his opinion that the use of stored procs has the potential to increase information retrieval time and error reporting time. He feels that if you recreate the table st…
Last reply by Sazlo, -
-
- 10 replies
- 5.1k views
I'm trying to read a dbase file using the following code: Dim dbstr as String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Temp;Extended Properties=dBase III" Try myConn = New OleDbConnection(dbstr) myCmd = New OleDbCommand("Select [DB1Last] From [ACC.DBF]", myConn) myConn.Open() myReader = myCmd.ExecuteReader() <-- error occurs here MsgBox(CStr(myReader(0))) myReader.Close() Finally myConn.Close() End Try When I try to read the database I get the error: "Unable to locate the requested xbase memo file." Can anyone please help me with this?? And yes, the dbf file does reside in the C:\Temp folder. I've also tried changing the string to include br…
Last reply by FZelle, -
- 1 reply
- 984 views
When I got into .Net everyone was saying how you had to make your datatier. I took that to mean a set of classes to handle getting and putting data from/to the database(s). In 2005, it seems Microsoft takes care of that for you. You create a datasource of your database and Visual Studio creates a perfect replica of the database as a dataset and creates a tableadaptor (custom class) for each table. Sounds great and seems to work well. This weekend I was stumbling around online for development tools and came across http://www.mygenerationsoftware.com. Software that people make up templates for that do whatever (take in information) and give you code. Mostly I've…
Last reply by FZelle, -
-
- Administrators
- 3 replies
- 5k views
I've made a module with some functions to show/handle messageboxes and their results. I've been using this module since I started Vb.Net, in all my projects. Now I created a nes dll project and add this module, but every messagebox, messageboxbuttos or items says that they are not declared... Am I missing something?
Last reply by Cags, -
-
-
- *Experts*
- Administrators
- 3 replies
- 629 views
Okay, I've read several articles about this. I don't see what the big deal is. Maybe it's the examples - don't seem to be accomplishing anything magic that you couldn't do with delegates as they are in 1.1 - can anyone expand on what's the big deal is in a real world example?
Last reply by Nerseus, -
-
- 1 reply
- 816 views
Hi, I wanto put all the available paper types in a combo box. How can I iterate though types in System.Drawing.Printing.PaperKind and add them to a combo box? cheers tim
Last reply by Cags, -
- 1 reply
- 742 views
Hi guys i have an application that reads from a text file (x.sen) this text file contains data (like properties, colors...) is there a way to let the program oppen when the user double click on text file? thanks Omar
Last reply by Cags,
-
Who's Online 0 Members, 0 Anonymous, 55 Guests (See full list)
- There are no registered users currently online